Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
coco
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
coco
Commits
7864f237
Commit
7864f237
authored
Jan 23, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix] websocket remote addr
parent
16d05a3c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
httpd.py
coco/httpd.py
+1
-1
models.py
coco/models.py
+1
-1
No files found.
coco/httpd.py
View file @
7864f237
...
...
@@ -26,7 +26,7 @@ class BaseWebSocketHandler:
def
prepare
(
self
,
request
):
# self.app = self.settings["app"]
x_forwarded_for
=
request
.
headers
.
get
list
(
"X-Forwarded-For"
)
.
split
(
','
)
x_forwarded_for
=
request
.
headers
.
get
(
"X-Forwarded-For"
,
''
)
.
split
(
','
)
if
x_forwarded_for
and
x_forwarded_for
[
0
]:
remote_ip
=
x_forwarded_for
[
0
]
else
:
...
...
coco/models.py
View file @
7864f237
...
...
@@ -138,7 +138,7 @@ class Server:
logger
.
info
(
"Closed server {}"
.
format
(
self
))
self
.
chan
.
close
()
self
.
stop_evt
.
set
()
self
.
chan
.
transport
.
close
()
self
.
chan
.
close
()
@staticmethod
def
_have_enter_char
(
s
):
...
...
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