Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
node-http-proxy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
node-http-proxy
Commits
45ef87e7
Commit
45ef87e7
authored
Sep 30, 2011
by
Fedor Indutny
Committed by
indexzero
Sep 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[websockets] add latest websockets support
parent
6c6fec09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
lib/node-http-proxy/http-proxy.js
lib/node-http-proxy/http-proxy.js
+6
-1
No files found.
lib/node-http-proxy/http-proxy.js
View file @
45ef87e7
...
...
@@ -393,7 +393,7 @@ HttpProxy.prototype.proxyWebSocketRequest = function (req, socket, head, buffer)
//
// Setup the incoming client socket.
//
_socket
(
socket
);
_socket
(
socket
,
true
);
//
// On `upgrade` from the Agent socket, listen to
...
...
@@ -663,7 +663,12 @@ HttpProxy.prototype.proxyWebSocketRequest = function (req, socket, head, buffer)
// request. This is small, and there's only ever one of
// it; no need for pause/resume.
//
// XXX This is very wrong and should be fixed in node's core
//
reverseProxy
.
write
(
head
);
if
(
head
&&
head
.
length
===
0
)
{
reverseProxy
.
_send
(
''
);
}
}
catch
(
ex
)
{
return
proxyError
(
ex
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment