aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tls-utils.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2019-09-13 08:23:44 +0200
committerPeter Wu <peter@lekensteyn.nl>2019-09-16 01:55:44 +0000
commitf95d3a69f0db5475708c779189eeea4b1d573666 (patch)
tree1b7dfd2dbbc77e5a6056723d172548a587d269d2 /epan/dissectors/packet-tls-utils.c
parent93a9de717d3758fe9d4ab31c47336f9b1f365028 (diff)
QUIC: Update to draft-23
- Update initial salt (kept support of draft-22 and 21) - update URL - Remove INVALID_MIGRATION error code - Rename TP (disable_migration -> disable_active_migration) Bug: 13881 Change-Id: If3d3dc1930a9e16f13a931518efad38773e5ace3 Reviewed-on: https://code.wireshark.org/review/34517 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'epan/dissectors/packet-tls-utils.c')
-rw-r--r--epan/dissectors/packet-tls-utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-tls-utils.c b/epan/dissectors/packet-tls-utils.c
index eb23c6c1f6..7253724e4e 100644
--- a/epan/dissectors/packet-tls-utils.c
+++ b/epan/dissectors/packet-tls-utils.c
@@ -1385,7 +1385,7 @@ const value_string quic_transport_parameter_id[] = {
{ SSL_HND_QUIC_TP_INITIAL_MAX_STREAMS_BIDI, "initial_max_streams_bidi" },
{ SSL_HND_QUIC_TP_ACK_DELAY_EXPONENT, "ack_delay_exponent" },
{ SSL_HND_QUIC_TP_MAX_ACK_DELAY, "max_ack_delay" },
- { SSL_HND_QUIC_TP_DISABLE_MIGRATION, "disable_migration" },
+ { SSL_HND_QUIC_TP_DISABLE_ACTIVE_MIGRATION, "disable_active_migration" },
{ SSL_HND_QUIC_TP_PREFERRED_ADDRESS, "preferred_address" },
{ SSL_HND_QUIC_TP_ACTIVE_CONNECTION_ID_LIMIT, "active_connection_id_limit" },
{ 0, NULL }
@@ -6756,7 +6756,7 @@ ssl_dissect_hnd_hello_ext_quic_transport_parameters(ssl_common_dissect_t *hf, tv
proto_item_append_text(parameter_tree, " %" G_GINT64_MODIFIER "u", value);
offset += len;
break;
- case SSL_HND_QUIC_TP_DISABLE_MIGRATION:
+ case SSL_HND_QUIC_TP_DISABLE_ACTIVE_MIGRATION:
/* No Payload */
break;
case SSL_HND_QUIC_TP_PREFERRED_ADDRESS: {
@@ -6777,7 +6777,7 @@ ssl_dissect_hnd_hello_ext_quic_transport_parameters(ssl_common_dissect_t *hf, tv
offset += 2;
if (!ssl_add_vector(hf, tvb, pinfo, tree, offset, offset_end, &connectionid_length,
- hf->hf.hs_ext_quictp_parameter_pa_connectionid_length, 0, 18)) {
+ hf->hf.hs_ext_quictp_parameter_pa_connectionid_length, 0, 20)) {
break;
}
offset += 1;