27 lines
707 B
C
27 lines
707 B
C
|
|
// enum these ?
|
|
|
|
#define MAX_LCP_TYPE 8
|
|
extern const char *lcp_types[MAX_LCP_TYPE+1];
|
|
|
|
#define MAX_AVPNAME 40
|
|
extern const char *avpnames[MAX_AVPNAME+1];
|
|
|
|
#define MAX_STOPCCN_RESULT_CODE 7
|
|
extern const char *stopccn_result_codes[MAX_STOPCCN_RESULT_CODE+1];
|
|
|
|
#define MAX_CDN_RESULT_CODE 11
|
|
extern const char *cdn_result_codes[MAX_CDN_RESULT_CODE+1];
|
|
|
|
#define MAX_ERROR_CODE 8
|
|
extern const char *error_codes[MAX_ERROR_CODE+1];
|
|
|
|
#define MAX_AUTHTYPE 5
|
|
extern const char *authtypes[MAX_AUTHTYPE+1];
|
|
|
|
// Can remove the NULL end now
|
|
#define MAX_RADIUS_STATE 8
|
|
extern const char *radius_states[MAX_RADIUS_STATE+1];
|
|
|
|
#define MAX_L2TP_MESSAGE_TYPE 16
|
|
extern const char *l2tp_message_types[MAX_L2TP_MESSAGE_TYPE+1];
|