Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
69074960
Commit
69074960
authored
8 years ago
by
Paul Sokolovsky
Browse files
Options
Downloads
Patches
Plain Diff
esp8266/websocket_helper.py: Avoid extra string allocations.
parent
f3636a7b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
esp8266/scripts/websocket_helper.py
+9
-10
9 additions, 10 deletions
esp8266/scripts/websocket_helper.py
with
9 additions
and
10 deletions
esp8266/scripts/websocket_helper.py
+
9
−
10
View file @
69074960
...
...
@@ -36,21 +36,20 @@ def server_handshake(sock):
if
DEBUG
:
print
(
"
Sec-WebSocket-Key:
"
,
webkey
,
len
(
webkey
))
respkey
=
webkey
+
b
"
258EAFA5-E914-47DA-95CA-C5AB0DC85B11
"
respkey
=
hashlib
.
sha1
(
respkey
).
digest
()
d
=
hashlib
.
sha1
(
webkey
)
d
.
update
(
b
"
258EAFA5-E914-47DA-95CA-C5AB0DC85B11
"
)
respkey
=
d
.
digest
()
respkey
=
binascii
.
b2a_base64
(
respkey
)[:
-
1
]
if
DEBUG
:
print
(
"
respkey:
"
,
resp
)
resp
=
b
"""
\
sock
.
send
(
b
"""
\
HTTP/1.1 101 Switching Protocols
\r
Upgrade: websocket
\r
Connection: Upgrade
\r
Sec-WebSocket-Accept: %s
\r
\r
"""
%
respkey
if
DEBUG
:
print
(
resp
)
sock
.
send
(
resp
)
Sec-WebSocket-Accept:
"""
)
sock
.
send
(
respkey
)
sock
.
send
(
"
\r\n\r\n
"
)
# Very simplified client handshake, works for MicroPython's
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment