Initial revision
This commit is contained in:
commit
c5e4c2cfc0
42 changed files with 16139 additions and 0 deletions
27
constants.h
Normal file
27
constants.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
|
||||
// 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];
|
||||
Loading…
Add table
Add a link
Reference in a new issue