Home | History | Annotate | Download | only in quic

Lines Matching refs:GOAWAY_FRAME

365     : type(GOAWAY_FRAME),
366 goaway_frame(frame) {
424 case GOAWAY_FRAME: {
425 os << "type { GOAWAY_FRAME } " << *(frame.goaway_frame);
475 ostream& operator<<(ostream& os, const QuicGoAwayFrame& goaway_frame) {
476 os << "error_code { " << goaway_frame.error_code << " } "
477 << "last_good_stream_id { " << goaway_frame.last_good_stream_id << " } "
478 << "reason_phrase { " << goaway_frame.reason_phrase << " }\n";
676 case GOAWAY_FRAME:
677 delete it->goaway_frame;