aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tcp.h
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2015-11-01 21:25:28 +0000
committerMichael Mann <mmann78@netscape.net>2015-11-06 18:43:02 +0000
commitee0dbdc7edfac2db8d4c20cd9b351cdb6130a3fe (patch)
tree76e7b45c934350b6956c57f5be44cadc090e2941 /epan/dissectors/packet-tcp.h
parent2cd80a7d36928d2362062dcaf252c791a32e61af (diff)
MPTCP: Use wmem_list instead of GSList
Change-Id: Idb4e4d6d19169d6cacd98664232fd1fbd2cc2dca Reviewed-on: https://code.wireshark.org/review/11534 Reviewed-by: Evan Huus <eapache@gmail.com> Petri-Dish: Evan Huus <eapache@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-tcp.h')
-rw-r--r--epan/dissectors/packet-tcp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tcp.h b/epan/dissectors/packet-tcp.h
index a2a9af99d5..4186996a2f 100644
--- a/epan/dissectors/packet-tcp.h
+++ b/epan/dissectors/packet-tcp.h
@@ -296,7 +296,7 @@ struct mptcp_analysis {
guint32 stream; /* Keep track of unique mptcp stream (per MP_CAPABLE handshake) */
guint8 hmac_algo; /* hmac decided after negociation */
- GSList* subflows; /* List of subflows, (tcp_analysis)*/
+ wmem_list_t* subflows; /* List of subflows, (tcp_analysis)*/
/* identifier of the tcp stream that saw the initial 3WHS with MP_CAPABLE option */
struct tcp_analysis *master;