From 5667b77b23513445155a299454c04e2d89671ddc Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Wed, 9 Mar 2011 11:53:19 +1100 Subject: [PATCH] add some comments --- util.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/util.h b/util.h index 8afc97c..ec80a20 100644 --- a/util.h +++ b/util.h @@ -159,17 +159,17 @@ enum gss_eap_token_type { /* inner token types and flags */ #define ITOK_TYPE_NONE 0x00000000 -#define ITOK_TYPE_CONTEXT_ERR 0x00000001 -#define ITOK_TYPE_ACCEPTOR_NAME_REQ 0x00000002 -#define ITOK_TYPE_ACCEPTOR_NAME_RESP 0x00000003 -#define ITOK_TYPE_EAP_RESP 0x00000004 -#define ITOK_TYPE_EAP_REQ 0x00000005 -#define ITOK_TYPE_GSS_CHANNEL_BINDINGS 0x00000006 -#define ITOK_TYPE_REAUTH_CREDS 0x00000007 -#define ITOK_TYPE_REAUTH_REQ 0x00000008 -#define ITOK_TYPE_REAUTH_RESP 0x00000009 -#define ITOK_TYPE_VERSION_INFO 0x0000000A -#define ITOK_TYPE_VENDOR_INFO 0x0000000B +#define ITOK_TYPE_CONTEXT_ERR 0x00000001 /* critical */ +#define ITOK_TYPE_ACCEPTOR_NAME_REQ 0x00000002 /* TBD */ +#define ITOK_TYPE_ACCEPTOR_NAME_RESP 0x00000003 /* TBD */ +#define ITOK_TYPE_EAP_RESP 0x00000004 /* critical, required, if not reauth */ +#define ITOK_TYPE_EAP_REQ 0x00000005 /* critical, required, if not reauth */ +#define ITOK_TYPE_GSS_CHANNEL_BINDINGS 0x00000006 /* critical, required, if not reauth */ +#define ITOK_TYPE_REAUTH_CREDS 0x00000007 /* optional */ +#define ITOK_TYPE_REAUTH_REQ 0x00000008 /* optional */ +#define ITOK_TYPE_REAUTH_RESP 0x00000009 /* optional */ +#define ITOK_TYPE_VERSION_INFO 0x0000000A /* optional */ +#define ITOK_TYPE_VENDOR_INFO 0x0000000B /* optional */ #define ITOK_FLAG_CRITICAL 0x80000000 /* critical, wire flag */ #define ITOK_FLAG_VERIFIED 0x40000000 /* verified, API flag */ -- 2.1.4