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
f7452bc4
Commit
f7452bc4
authored
Jul 29, 2011
by
indexzero
Committed by
Dominic Tarr
Aug 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[fix] Dont use res.* in proxyWebSocketRequest
parent
f0917a3f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/node-http-proxy.js
lib/node-http-proxy.js
+2
-2
No files found.
lib/node-http-proxy.js
View file @
f7452bc4
...
@@ -636,8 +636,7 @@ HttpProxy.prototype.proxyWebSocketRequest = function (req, socket, head, options
...
@@ -636,8 +636,7 @@ HttpProxy.prototype.proxyWebSocketRequest = function (req, socket, head, options
location
=
this
.
proxyTable
.
getProxyLocation
(
req
);
location
=
this
.
proxyTable
.
getProxyLocation
(
req
);
if
(
!
location
)
{
if
(
!
location
)
{
res
.
writeHead
(
404
);
return
socket
.
destroy
();
return
res
.
end
();
}
}
options
.
port
=
location
.
port
;
options
.
port
=
location
.
port
;
...
@@ -786,6 +785,7 @@ HttpProxy.prototype.proxyWebSocketRequest = function (req, socket, head, options
...
@@ -786,6 +785,7 @@ HttpProxy.prototype.proxyWebSocketRequest = function (req, socket, head, options
path
:
req
.
url
,
path
:
req
.
url
,
headers
:
req
.
headers
,
headers
:
req
.
headers
,
};
};
var
reverseProxy
=
agent
.
appendMessage
(
outgoing
);
var
reverseProxy
=
agent
.
appendMessage
(
outgoing
);
//
//
...
...
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