aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorChuck Craft <bubbasnmp@gmail.com>2022-08-03 11:00:45 -0500
committerA Wireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2022-08-05 00:52:56 +0000
commit077547d0338e1aa010e81e2ae2151d484400fc9e (patch)
treef28d454fa9206cbebbe74b2d34fe4956f0be80c0 /epan
parent5f05a705a6181b826c4f30da1b602d9ba003bc53 (diff)
dccp: allow port resolution in conversation table
Diffstat (limited to 'epan')
-rw-r--r--epan/conversation_table.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/conversation_table.c b/epan/conversation_table.c
index dc1c58f975..d1f8713d1b 100644
--- a/epan/conversation_table.c
+++ b/epan/conversation_table.c
@@ -315,6 +315,8 @@ char *get_conversation_port(wmem_allocator_t *allocator, guint32 port, endpoint_
return udp_port_to_display(allocator, port);
case(ENDPOINT_SCTP):
return sctp_port_to_display(allocator, port);
+ case(ENDPOINT_DCCP):
+ return dccp_port_to_display(allocator, port);
default:
return wmem_strdup_printf(allocator, "%d", port);
}