Home
last modified time | relevance | path

Searched refs:FLAG_FIN (Results 1 – 2 of 2) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
DSpdy3.java52 static final int FLAG_FIN = 0x1; field in Spdy3
186 boolean inFinished = (flags & FLAG_FIN) != 0; in nextFrame()
200 boolean inFinished = (flags & FLAG_FIN) != 0; in readSynStream()
210 boolean inFinished = (flags & FLAG_FIN) != 0; in readSynReply()
330 int flags = (outFinished ? FLAG_FIN : 0) | (inFinished ? FLAG_UNIDIRECTIONAL : 0); in synStream()
347 int flags = (outFinished ? FLAG_FIN : 0); in synReply()
391 int flags = (outFinished ? FLAG_FIN : 0); in data()
/external/libmicrohttpd/src/datadir/
Dspdy-draft.txt379 0x01 = FLAG_FIN - signifies that this frame represents the last
538 on the stream until a frame containing the FLAG_FIN flag is set. The
539 FLAG_FIN can be set on a SYN_STREAM (Section 2.6.1), SYN_REPLY
541 frame. Once the FLAG_FIN has been sent, the stream is considered to
546 When one side of the stream sends a frame with the FLAG_FIN flag set,
548 FLAG_FIN MUST NOT send further frames on that stream. When both
570 FLAG_FIN.
701 0x01 = FLAG_FIN - marks this frame as the last frame to be
770 0x01 = FLAG_FIN - marks this frame as the last frame to be
1201 0x01 = FLAG_FIN - marks this frame as the last frame to be
[all …]