File: routing.h

package info (click to toggle)
opensips 2.2.2-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 31,060 kB
  • ctags: 37,342
  • sloc: ansic: 334,318; xml: 91,231; perl: 6,659; sh: 5,148; sql: 4,175; makefile: 3,152; yacc: 2,499; python: 1,197; cpp: 611; php: 573
file content (151 lines) | stat: -rw-r--r-- 2,868 bytes parent folder | download
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
/*
 * Copyright (C) 2005-2008 Voice Sistem SRL
 *
 * This file is part of Open SIP Server (OpenSIPS).
 *
 * DROUTING OpenSIPS-module 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.
 *
 * DROUTING OpenSIPS-module 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.
 *
 * For any questions about this software and its license, please contact
 * Voice Sistem at following e-mail address:
 *         office@voice-system.ro
 *
 * History:
 * ---------
 *  2005-02-20  first version (cristian)
 *  2005-02-27  ported to 0.9.0 (bogdan)
 */


#ifndef routing_h
#define routing_h

#include "../../str.h"
#include "../../usr_avp.h"
#include "../../time_rec.h"
#include "prefix_tree.h"
#include "../../map.h"

#define RG_HASH_SIZE
#define RG_INIT_LEN 4

/* the buckets for the rt_data rg_hash */
typedef struct hb_ {
	int rgid;
	ptree_t *pt;
	struct hb_*next;
} hb_t;

/* routing data is comprised of:
	- a list of PSTN gw
	- a hash over routing groups containing
	pointers to the coresponding prefix trees
*/
typedef struct rt_data_ {
	/* avl of PSTN gw */
	map_t pgw_tree;

	/* avl of carriers */
	map_t carriers_tree;

	/* default routing list for prefixless rules */
	ptree_node_t noprefix;
	/* tree with routing prefixes */
	ptree_t *pt;
}rt_data_t;

typedef struct _dr_group {
	/* 0 - use grp ; 1 - use AVP */
	int type;
	union {
		unsigned int grp_id;
		int avp_name;
	}u;
} dr_group_t;

/* init new rt_data structure */
rt_data_t*
build_rt_data( void );


int
add_carrier(
	char *id,
	int flags,
	char *gwlist,
	char *attrs,
	int state,
	rt_data_t *rd
	);

/* add a PSTN gw in the list */
int
add_dst(
	rt_data_t*,
	/* id */
	char *,
	/* ip address */
	char*,
	/* strip len */
	int,
	/* pri prefix */
	char*,
	/* dst type*/
	int,
	/* dst attrs*/
	char*,
	/* probe_mode */
	int,
	/* socket */
	struct socket_info*,
	/* state */
	int
	);

/* build a routing info list element */
rt_info_t*
build_rt_info(
	int id,
	int priority,
	tmrec_t* time,
	/* ser routing table id */
	int route_id,
	/* list of destinations indexes */
	char* dstlst,
	char* attr,
	rt_data_t* rd
	);

int
parse_destination_list(
	rt_data_t* rd,
	char *dstlist,
	pgw_list_t** pgwl_ret,
	unsigned short *len,
	int no_resize
	);

void
del_pgw_list(
		map_t pgw_tree
		);



void
free_rt_data(
	rt_data_t*,
	int
	);
#endif