forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaaa_avp.h
76 lines (71 loc) · 2.26 KB
/
aaa_avp.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* $Id$
*
* Copyright (C) 2009 Irina Stanescu
* Copyright (C) 2009 Voice System
*
* This file is part of opensips, a free SIP server.
*
* opensips is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* opensips is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* WARNING: Don't forget to update the dictionary if you update this file !!!
*
*/
#ifndef _AAA_AVP_H
#define _AAA_AVP_H
#define A_USER_NAME 0
#define A_SERVICE_TYPE 1
#define A_CALLED_STATION_ID 2
#define A_CALLING_STATION_ID 3
#define A_ACCT_STATUS_TYPE 4
#define A_ACCT_SESSION_ID 5
#define A_SIP_METHOD 6
#define A_SIP_RESPONSE_CODE 7
#define A_SIP_CSEQ 8
#define A_SIP_TO_TAG 9
#define A_SIP_FROM_TAG 10
#define A_DIGEST_RESPONSE 11
#define A_DIGEST_ATTRIBUTES 12
#define A_SIP_URI_USER 13
#define A_SIP_URI_HOST 14
#define A_DIGEST_REALM 15
#define A_DIGEST_NONCE 16
#define A_DIGEST_METHOD 17
#define A_DIGEST_URI 18
#define A_DIGEST_QOP 19
#define A_DIGEST_ALGORITHM 20
#define A_DIGEST_BODY_DIGEST 21
#define A_DIGEST_CNONCE 22
#define A_DIGEST_NONCE_COUNT 23
#define A_DIGEST_USER_NAME 24
#define A_SIP_GROUP 25
#define A_CISCO_AVPAIR 26
#define A_SIP_AVP 27
#define A_TIME_STAMP 28
#define A_SIP_CALL_ID 29
#define A_SIP_REQUEST_HASH 30
#define A_MAX 31
#define V_STATUS_START 0
#define V_STATUS_STOP 1
#define V_STATUS_FAILED 2
#define V_CALL_CHECK 3
#define V_SIP_SESSION 4
#define V_GROUP_CHECK 5
#define V_SIP_CALLER_AVPS 6
#define V_SIP_CALLEE_AVPS 7
#define V_SIP_VERIFY_DESTINATION 8
#define V_SIP_VERIFY_SOURCE 9
#define V_MAX 10
#endif