File: mod_export.h

package info (click to toggle)
kamailio 4.2.0-2%2Bdeb8u3
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 56,276 kB
  • sloc: ansic: 552,836; xml: 166,484; sh: 8,659; makefile: 7,676; sql: 6,235; perl: 3,487; yacc: 3,428; python: 1,457; cpp: 1,219; php: 1,047; java: 449; pascal: 194; cs: 40; awk: 27
file content (200 lines) | stat: -rw-r--r-- 5,483 bytes parent folder | download | duplicates (4)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
 * $Id$
 *
 * The initial version of this code was written by Dragos Vingarzan
 * (dragos(dot)vingarzan(at)fokus(dot)fraunhofer(dot)de and the
 * Fruanhofer Institute. It was and still is maintained in a separate
 * branch of the original SER. We are therefore migrating it to
 * Kamailio/SR and look forward to maintaining it from here on out.
 * 2011/2012 Smile Communications, Pty. Ltd.
 * ported/maintained/improved by 
 * Jason Penton (jason(dot)penton(at)smilecoms.com and
 * Richard Good (richard(dot)good(at)smilecoms.com) as part of an 
 * effort to add full IMS support to Kamailio/SR using a new and
 * improved architecture
 * 
 * NB: Alot of this code was originally part of OpenIMSCore,
 * FhG Focus. Thanks for great work! This is an effort to 
 * break apart the various CSCF functions into logically separate
 * components. We hope this will drive wider use. We also feel
 * that in this way the architecture is more complete and thereby easier
 * to manage in the Kamailio/SR environment
 *
 * This file is part of Kamailio, a free SIP server.
 *
 * Kamailio 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
 *
 * Kamailio 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * 
 */

#ifndef __CDP_AVP_EXPORT_H
#define __CDP_AVP_EXPORT_H

#ifndef M_NAME
	#define M_NAME "cdp_avp"
#endif

#include "../cdp/cdp_load.h"


#include "avp_new.h"
#include "avp_new_base_data_format.h"

#include "avp_add.h"

#include "avp_get.h"
#include "avp_get_base_data_format.h"

#include "base.h"
#include "nasapp.h"
#include "ccapp.h"
#include "imsapp.h"
#include "epcapp.h"

#include "../../sr_module.h"



typedef struct {
	
	cdp_avp_new_f 					new;
	
	cdp_avp_add_new_to_list_f		add_new_to_list;
	cdp_avp_add_new_to_msg_f 		add_new_to_msg;
	cdp_avp_add_to_list_f			add_to_list;
	cdp_avp_add_to_msg_f			add_to_msg;
	
	cdp_avp_get_next_from_list_f	get_next_from_list;
	cdp_avp_get_next_from_msg_f		get_next_from_msg;
	cdp_avp_get_from_list_f			get_from_list;
	cdp_avp_get_from_msg_f			get_from_msg;

} cdp_avp_bind_basic_t ;

typedef struct {

	cdp_avp_new_OctetString_f 		new_OctetString;
	cdp_avp_new_Integer32_f			new_Integer32;
	cdp_avp_new_Integer64_f			new_Integer64;
	cdp_avp_new_Unsigned32_f		new_Unsigned32;
	cdp_avp_new_Unsigned64_f		new_Unsigned64;
	cdp_avp_new_Float32_f			new_Float32;
	cdp_avp_new_Float64_f			new_Float64;
	cdp_avp_new_Grouped_f			new_Grouped;
	
	cdp_avp_new_Address_f			new_Address;
	cdp_avp_new_Time_f				new_Time;
	cdp_avp_new_UTF8String_f		new_UTF8String;
	cdp_avp_new_DiameterIdentity_f	new_DiameterIdentity;
	cdp_avp_new_DiameterURI_f		new_DiameterURI;
	cdp_avp_new_Enumerated_f		new_Enumerated;
	cdp_avp_new_IPFilterRule_f		new_IPFilterRule;
	cdp_avp_new_QoSFilterRule_f		new_QoSFilterRule;
	
	
	cdp_avp_get_OctetString_f		get_OctetString;
	cdp_avp_get_Integer32_f			get_Integer32;
	cdp_avp_get_Integer64_f			get_Integer64;
	cdp_avp_get_Unsigned32_f		get_Unsigned32;
	cdp_avp_get_Unsigned64_f		get_Unsigned64;
	cdp_avp_get_Float32_f			get_Float32;
	cdp_avp_get_Float64_f			get_Float64;
	cdp_avp_get_Grouped_f			get_Grouped;
	cdp_avp_free_Grouped_f			free_Grouped;
	
	cdp_avp_get_Address_f			get_Address;
	cdp_avp_get_Time_f				get_Time;
	cdp_avp_get_UTF8String_f		get_UTF8String;
	cdp_avp_get_DiameterIdentity_f	get_DiameterIndentity;
	cdp_avp_get_DiameterURI_f		get_DiameterURI;
	cdp_avp_get_Enumerated_f		get_Enumerated;	
	cdp_avp_get_IPFilterRule_f		get_IPFilterRule;
	cdp_avp_get_QoSFilterRule_f		get_QoSFilterRule;
	
} cdp_avp_bind_base_data_format_t;


typedef struct {
	
	#define CDP_AVP_EXPORT			
		#include "base.h"		
	#undef	CDP_AVP_EXPORT
	
} cdp_avp_bind_base_avp_t;

typedef struct {
		
	#define CDP_AVP_EXPORT			
		#include "ccapp.h"		
	#undef	CDP_AVP_EXPORT

} cdp_avp_bind_ccapp_avp_t;


typedef struct {

	
	#define CDP_AVP_EXPORT			
		#include "nasapp.h"		
	#undef	CDP_AVP_EXPORT
	
} cdp_avp_bind_nasapp_avp_t;

typedef struct {
	
	#define CDP_AVP_EXPORT			
		#include "imsapp.h"		
	#undef	CDP_AVP_EXPORT

} cdp_avp_bind_imsapp_avp_t;

typedef struct {
		
	#define CDP_AVP_EXPORT			
		#include "epcapp.h"		
	#undef	CDP_AVP_EXPORT
	
} cdp_avp_bind_epcapp_avp_t;

typedef struct {
	struct cdp_binds				*cdp;
	cdp_avp_bind_basic_t 			basic;
	cdp_avp_bind_base_data_format_t data;
	cdp_avp_bind_base_avp_t			base;
	cdp_avp_bind_ccapp_avp_t		ccapp;
	cdp_avp_bind_nasapp_avp_t 		nasapp;
	cdp_avp_bind_imsapp_avp_t 		imsapp;
	cdp_avp_bind_epcapp_avp_t 		epcapp;
} cdp_avp_bind_t;


typedef cdp_avp_bind_t* (*cdp_avp_get_bind_f)(void);

static inline cdp_avp_bind_t * load_cdp_avp()
{
        cdp_avp_get_bind_f load_cdp_avp;
	
	/* import the TM auto-loading function */
	load_cdp_avp = (cdp_avp_get_bind_f)find_export("cdp_avp_get_bind", NO_SCRIPT, 0);
	
	if (load_cdp_avp == NULL) {
		LOG(L_WARN, "Cannot import load_cdp function from CDP module\n");
		return 0;
	}
	
	return (cdp_avp_bind_t *)load_cdp_avp();
}


#endif /* __CDP_AVP_EXPORT_H */