Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
shrapnel
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
Kirill Smelkov
shrapnel
Commits
6c2e3e06
Commit
6c2e3e06
authored
Mar 20, 2015
by
Mark Peek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pep8
parent
2d2b0319
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
coro/http/spdy.py
coro/http/spdy.py
+3
-3
coro/log/asn1.py
coro/log/asn1.py
+0
-1
No files found.
coro/http/spdy.py
View file @
6c2e3e06
...
...
@@ -326,15 +326,15 @@ class spdy_connection (spdy_protocol, connection):
self
.
send_frame
(
self
.
pack_control_frame
(
6
,
0
,
data
))
def
frame_settings
(
self
,
flags
,
data
):
#self.log ('SPDY settings frame received [ignored]')
#
self.log ('SPDY settings frame received [ignored]')
pass
def
frame_headers
(
self
,
flags
,
data
):
#self.log ('SPDY headers frame received [ignored]')
#
self.log ('SPDY headers frame received [ignored]')
pass
def
frame_window_update
(
self
,
flags
,
data
):
#self.log ('SPDY window_update frame received [ignored]')
#
self.log ('SPDY window_update frame received [ignored]')
stream_id
,
delta_window_size
=
struct
.
unpack
(
'>LL'
,
data
)
self
.
log
(
'spdy window update'
,
stream_id
,
delta_window_size
)
...
...
coro/log/asn1.py
View file @
6c2e3e06
...
...
@@ -78,4 +78,3 @@ def gen_log (f, limit=10000):
break
elif
magic
!=
Sync
.
magic
:
s
.
resync
(
f
,
limit
)
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