mirror of
https://github.com/moparisthebest/spdylay
synced 2024-11-05 17:15:05 -05:00
Fixed GOAWAY length in SPDY/3
This commit is contained in:
parent
c6c3cbce46
commit
88cd97843f
@ -454,7 +454,13 @@ void spdylay_frame_goaway_init(spdylay_goaway *frame,
|
||||
memset(frame, 0, sizeof(spdylay_goaway));
|
||||
frame->hd.version = version;
|
||||
frame->hd.type = SPDYLAY_GOAWAY;
|
||||
frame->hd.length = 4;
|
||||
if(version == SPDYLAY_PROTO_SPDY2) {
|
||||
frame->hd.length = 4;
|
||||
} else if(version == SPDYLAY_PROTO_SPDY3) {
|
||||
frame->hd.length = 8;
|
||||
} else {
|
||||
frame->hd.length = 0;
|
||||
}
|
||||
frame->last_good_stream_id = last_good_stream_id;
|
||||
frame->status_code = 0; /* TODO Add status_code arg for spdy/3 */
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user