QUIC: rename Stream ID Needed by Stream ID Blocked (draft-06)

Change-Id: I9aba424fc9df5030befac31373dc759249d936c5
Reviewed-on: https://code.wireshark.org/review/23810
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2017-10-02 08:10:29 +02:00 committed by Anders Broman
parent 06548c905e
commit ab01a1eab1
1 changed files with 4 additions and 4 deletions

View File

@ -153,7 +153,7 @@ static const value_string quic_long_packet_type_vals[] = {
#define FT_PING 0x07
#define FT_BLOCKED 0x08
#define FT_STREAM_BLOCKED 0x09
#define FT_STREAM_ID_NEEDED 0x0a
#define FT_STREAM_ID_BLOCKED 0x0a
#define FT_NEW_CONNECTION_ID 0x0b
#define FT_STOP_SENDING 0x0c
#define FT_ACK_MIN 0xa0
@ -171,7 +171,7 @@ static const range_string quic_frame_type_vals[] = {
{ 0x07, 0x07, "PING" },
{ 0x08, 0x08, "BLOCKED" },
{ 0x09, 0x09, "STREAM_BLOCKED" },
{ 0x0a, 0x0a, "STREAM_ID_NEEDED" },
{ 0x0a, 0x0a, "STREAM_ID_BLOCKED" },
{ 0x0b, 0x0b, "NEW_CONNECTION_ID" },
{ 0x0c, 0x0c, "STOP_SENDING" },
{ 0xa0, 0xbf, "ACK" },
@ -611,13 +611,13 @@ dissect_quic_frame_type(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *quic_
}
break;
case FT_STREAM_ID_NEEDED:{
case FT_STREAM_ID_BLOCKED:{
/* No Payload */
proto_item_set_len(ti_ft, 1);
col_prepend_fstr(pinfo->cinfo, COL_INFO, "Stream ID Needed");
col_prepend_fstr(pinfo->cinfo, COL_INFO, "Stream ID Blocked");
}
break;
case FT_NEW_CONNECTION_ID:{