RFC3576 states, that some messages will use port 3799 instead

of the "standard" radius ports. Register radius to that port
as well.

svn path=/trunk/; revision=28672
This commit is contained in:
Jörg Mayer 2009-06-09 10:52:28 +00:00
parent 7e46d83b67
commit 7856eef821
1 changed files with 2 additions and 0 deletions

View File

@ -90,6 +90,7 @@ typedef struct {
#define UDP_PORT_RADIUS_NEW 1812
#define UDP_PORT_RADACCT 1646
#define UDP_PORT_RADACCT_NEW 1813
#define UDP_PORT_DAE 3799 /* DAE: rfc3576 */
static radius_dictionary_t* dict = NULL;
@ -2013,6 +2014,7 @@ proto_reg_handoff_radius(void)
dissector_add("udp.port", UDP_PORT_RADIUS_NEW, radius_handle);
dissector_add("udp.port", UDP_PORT_RADACCT, radius_handle);
dissector_add("udp.port", UDP_PORT_RADACCT_NEW, radius_handle);
dissector_add("udp.port", UDP_PORT_DAE, radius_handle);
eap_handle = find_dissector("eap");