[PFCP] add port 8805

Port assigned by IANA

Change-Id: Ic04bc41878561239c83025ff2d5573daf7947b5b
Reviewed-on: https://code.wireshark.org/review/24451
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Joakim Karlsson 2017-11-16 17:31:07 +01:00 committed by Anders Broman
parent e2deb54414
commit d9f8ddd780
1 changed files with 3 additions and 2 deletions

View File

@ -39,6 +39,8 @@ void proto_reg_handoff_pfcp(void);
static dissector_handle_t pfcp_handle;
static dissector_handle_t pfcp_3gpp_ies_handle;
#define UDP_PORT_PFCP 8805
static int proto_pfcp = -1;
static int hf_pfcp_msg_type = -1;
@ -5207,8 +5209,7 @@ proto_register_pfcp(void)
void
proto_reg_handoff_pfcp(void)
{
dissector_add_for_decode_as_with_preference("udp.port", pfcp_handle);
dissector_add_uint_with_preference("udp.port", UDP_PORT_PFCP, pfcp_handle);
/* Register 3GPP in the table to give expert info and serve as an example how to add decoding of enterprise IEs*/
dissector_add_uint("pfcp.enterprise_ies", VENDOR_THE3GPP, pfcp_3gpp_ies_handle);