Home | History | Annotate | Download | only in microspdy

Lines Matching defs:stream_id

34 	uint32_t stream_id;
51 memcpy(&stream_id, session->read_buffer + session->read_buffer_beginning, 4);
52 stream_id = NTOH31(stream_id);
54 if(stream_id <= session->last_in_stream_id || 0==(stream_id % 2))
73 session->last_in_stream_id = stream_id;
99 stream->stream_id = stream_id;
159 SPDYF_stream_find(uint32_t stream_id, struct SPDY_Session * session)
163 while(NULL != stream && stream_id != stream->stream_id)