forked from radsecproxy/radsecproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
raddict.h
42 lines (38 loc) · 1013 Bytes
/
raddict.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef _RADDICT_H
#define _RADDICT_H
const char* RAD_Attr_Acct_Terminate_Cause_Dict[] = {
[1] = "User-Request",
"Lost-Carrier",
"Lost-Service",
"Idle-Timeout",
"Session-Timeout",
"Admin-Reset",
"Admin-Reboot",
"Port-Error",
"NAS-Error",
"NAS-Request",
"NAS-Reboot",
"Port-Unneeded",
"Port-Preempted",
"Port-Suspended",
"Service-Unavailable",
"Callback",
"User-Error",
"Host-Request",
};
const char* RAD_Attr_Acct_Status_Type_Dict[] = {
[1] = "Start",
[2] = "Stop",
[3] = "Interim-Update",
[7] = "Accounting-On",
[8] = "Accounting-Off",
[9] = "Tunnel-Start",
[10] = "Tunnel-Stop",
[11] = "Tunnel-Reject",
[12] = "Tunnel-Link-Start",
[13] = "Tunnel-Link-Stop",
[14] = "Tunnel-Link-Reject",
[15] = "Failed",
};
#define RAD_Attr_Dict_Undef "UNKNOWN"
#endif /*_RADDICT_H*/