diff options
author | Richard Sharpe <sharpe@ns.aus.com> | 2003-05-25 00:36:30 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@ns.aus.com> | 2003-05-25 00:36:30 +0000 |
commit | 52ea4be2f1698920cd3000b8af513894366a1623 (patch) | |
tree | 0c970b15700080afeba9dc7ae6db76eb1dea0106 /packet-spnego.c | |
parent | 577bb67174783c759a4a7a602968e45902e1f579 (diff) | |
download | wireshark-52ea4be2f1698920cd3000b8af513894366a1623.tar.gz wireshark-52ea4be2f1698920cd3000b8af513894366a1623.tar.bz2 wireshark-52ea4be2f1698920cd3000b8af513894366a1623.zip |
Adding more infrastructure so I can decode SPNEGO/GSSAPI request flags.
svn path=/trunk/; revision=7737
Diffstat (limited to 'packet-spnego.c')
-rw-r--r-- | packet-spnego.c | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/packet-spnego.c b/packet-spnego.c index 86e6c6f558..b53ed3f4fd 100644 --- a/packet-spnego.c +++ b/packet-spnego.c @@ -5,7 +5,7 @@ * Copyright 2002, Richard Sharpe <rsharpe@ns.aus.com> * Copyright 2003, Richard Sharpe <rsharpe@richardsharpe.com> * - * $Id: packet-spnego.c,v 1.46 2003/05/24 23:26:17 sharpe Exp $ + * $Id: packet-spnego.c,v 1.47 2003/05/25 00:36:30 sharpe Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1528,6 +1528,31 @@ proto_register_spnego(void) { &hf_spnego_reqflags, { "reqFlags", "spnego.negtokeninit.reqflags", FT_BYTES, BASE_HEX, NULL, 0, "reqFlags", HFILL }}, + { &hf_gssapi_reqflags_deleg, + { "Delegation", "gssapi.reqflags.deleg", FT_BOOLEAN, 8, + TFS(&tfs_reqflags_deleg), 0x01, "Delegation", HFILL }}, + { &hf_gssapi_reqflags_mutual, + { "Mutual Authentication", "gssapi.reqflags.mutual", FT_BOOLEAN, + 8, TFS(&tfs_reqflags_mutual), 0x02, "Mutual Authentication", HFILL}}, + { &hf_gssapi_reqflags_replay, + { "Replay Detection", "gssapi.reqflags.replay", FT_BOOLEAN, + 8, TFS(&tfs_reqflags_replay), 0x04, "Replay Detection", HFILL}}, + { &hf_gssapi_reqflags_sequence, + { "Out-of-sequence Detection", "gssapi.reqflags.sequence", + FT_BOOLEAN, 8, TFS(&tfs_reqflags_sequence), 0x08, + "Out-of-sequence Detection", HFILL}}, + { &hf_gssapi_reqflags_anon, + { "Anonymous Authentication", "gssapi.reqflags.anon", + FT_BOOLEAN, 8, TFS(&tfs_reqflags_anon), 0x10, + "Anonymous Authentication", HFILL}}, + { &hf_gssapi_reqflags_conf, + { "Per-message Confidentiality", "gssapi.reqflags.conf", + FT_BOOLEAN, 8, TFS(&tfs_reqflags_conf), 0x20, + "Per-message Confidentiality", HFILL}}, + { &hf_gssapi_reqflags_integ, + { "Per-message Integrity", "gssapi.reqflags.integ", + FT_BOOLEAN, 8, TFS(&tfs_reqflags_integ), 0x40, + "Per-message Integrity", HFILL}}, { &hf_spnego_wraptoken, { "wrapToken", "spnego.wraptoken", FT_NONE, BASE_NONE, NULL, 0x0, "SPNEGO wrapToken", |