Home | History | Annotate | Download | only in microspdy

Lines Matching defs:control_frame

304 	struct SPDYF_Control_Frame *control_frame;
404 if(NULL == (control_frame = malloc(sizeof(struct SPDYF_Control_Frame))))
409 memset(control_frame, 0, sizeof(struct SPDYF_Control_Frame));
410 control_frame->control_bit = 1;
411 control_frame->version = SPDY_VERSION;
412 control_frame->type = SPDY_CONTROL_FRAME_TYPES_SYN_REPLY;
414 control_frame->flags |= SPDY_SYN_REPLY_FLAG_FIN;
416 response_to_queue->control_frame = control_frame;
440 && (SPDY_CONTROL_FRAME_TYPES_RST_STREAM == response_queue->control_frame->type
441 || SPDY_CONTROL_FRAME_TYPES_GOAWAY == response_queue->control_frame->type))
448 free(response_queue->control_frame);