diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-06-14 08:23:50 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-06-14 08:23:50 +0000 |
commit | 899df7ef83162fded6163da6874b8627b025c50f (patch) | |
tree | 2de2be8a69638d6604cc9ac97f8841cdd101c08d /packet-radius.c | |
parent | 026db5a26f47ad881357442ec88a2e8c6e3d290d (diff) | |
download | wireshark-899df7ef83162fded6163da6874b8627b025c50f.tar.gz wireshark-899df7ef83162fded6163da6874b8627b025c50f.tar.bz2 wireshark-899df7ef83162fded6163da6874b8627b025c50f.zip |
An Acct-Status-Type value of 3 is Interim-Update; thanks and a tip of
the hat to Diana Eichert for pointing out that 3 was missing.
svn path=/trunk/; revision=3543
Diffstat (limited to 'packet-radius.c')
-rw-r--r-- | packet-radius.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-radius.c b/packet-radius.c index 08d3434a17..cf423bfaba 100644 --- a/packet-radius.c +++ b/packet-radius.c @@ -2,7 +2,7 @@ * Routines for RADIUS packet disassembly * Copyright 1999 Johan Feyaerts * - * $Id: packet-radius.c,v 1.29 2001/06/05 21:21:38 guy Exp $ + * $Id: packet-radius.c,v 1.30 2001/06/14 08:23:50 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -255,6 +255,7 @@ static value_string radius_terminating_action_vals[]= static value_string radius_accounting_status_type_vals[]= {{1, "Start"}, {2, "Stop"}, +{3, "Interim-Update"}, {7,"Accounting-On"}, {8,"Accounting-Off"}, {0,NULL}}; |