blob: 4f6240d3ce89de2689927393d549b4cb166a4990 [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001#ifndef _GSM_DATA_H
2#define _GSM_DATA_H
3
4#include <sys/types.h>
5
Harald Weltefcd24452009-06-20 18:15:19 +02006enum gsm_band {
7 GSM_BAND_400,
8 GSM_BAND_850,
9 GSM_BAND_900,
10 GSM_BAND_1800,
11 GSM_BAND_1900,
12};
13
Harald Welte4bfdfe72009-06-10 23:11:52 +080014enum gsm_phys_chan_config {
15 GSM_PCHAN_NONE,
16 GSM_PCHAN_CCCH,
17 GSM_PCHAN_CCCH_SDCCH4,
18 GSM_PCHAN_TCH_F,
19 GSM_PCHAN_TCH_H,
20 GSM_PCHAN_SDCCH8_SACCH8C,
21 GSM_PCHAN_UNKNOWN,
22};
23
24enum gsm_chan_t {
25 GSM_LCHAN_NONE,
26 GSM_LCHAN_SDCCH,
27 GSM_LCHAN_TCH_F,
28 GSM_LCHAN_TCH_H,
29 GSM_LCHAN_UNKNOWN,
30};
31
32
33/* Channel Request reason */
34enum gsm_chreq_reason_t {
35 GSM_CHREQ_REASON_EMERG,
36 GSM_CHREQ_REASON_PAG,
37 GSM_CHREQ_REASON_CALL,
38 GSM_CHREQ_REASON_LOCATION_UPD,
39 GSM_CHREQ_REASON_OTHER,
40};
41
Harald Welte255539c2008-12-28 02:26:27 +000042#include <openbsc/timer.h>
Holger Freyther1adb4ff2009-02-04 00:04:52 +000043#include <openbsc/gsm_04_08.h>
Harald Welte9943c5b2009-07-29 15:41:29 +020044#include <openbsc/abis_rsl.h>
Harald Welte4bfdfe72009-06-10 23:11:52 +080045#include <openbsc/mncc.h>
Harald Welte93e9d172009-06-20 19:04:31 +020046#include <openbsc/tlv.h>
Harald Welte255539c2008-12-28 02:26:27 +000047
Harald Welte8470bf22008-12-25 23:28:35 +000048#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
49
Harald Welte85770c72009-01-18 17:47:32 +000050#define TRX_NR_TS 8
Harald Welte8470bf22008-12-25 23:28:35 +000051#define TS_MAX_LCHAN 8
Harald Welte52b1f982008-12-23 20:25:15 +000052
53#define HARDCODED_ARFCN 123
Harald Welte02b0e092009-02-28 13:11:07 +000054#define HARDCODED_TSC 7
Harald Welte78f2f502009-05-23 16:56:52 +000055#define HARDCODED_BSIC 0x3f /* NCC = 7 / BCC = 7 */
Harald Welte52b1f982008-12-23 20:25:15 +000056
Harald Welte63589be2009-08-06 17:38:10 +020057/* for multi-drop config */
58#define HARDCODED_BTS0_TS 1
59#define HARDCODED_BTS1_TS 6
60#define HARDCODED_BTS2_TS 11
61
Harald Welte8e1e3ee2009-02-01 13:32:45 +000062enum gsm_hooks {
63 GSM_HOOK_NM_SWLOAD,
Harald Welte0932d1e2009-02-16 22:53:52 +000064 GSM_HOOK_RR_PAGING,
65};
66
67enum gsm_paging_event {
68 GSM_PAGING_SUCCEEDED,
69 GSM_PAGING_EXPIRED,
Holger Freyther85a7b362009-04-18 13:48:55 +020070 GSM_PAGING_OOM,
Harald Welte8e1e3ee2009-02-01 13:32:45 +000071};
72
73struct msgb;
74typedef int gsm_cbfn(unsigned int hooknum,
75 unsigned int event,
76 struct msgb *msg,
77 void *data, void *param);
78
Holger Freytherc6ea9db2008-12-30 19:18:21 +000079/*
80 * Use the channel. As side effect the lchannel recycle timer
81 * will be started.
82 */
Harald Welteb9c758b2009-07-05 14:02:46 +020083#define LCHAN_RELEASE_TIMEOUT 20, 0
Holger Freytherc6ea9db2008-12-30 19:18:21 +000084#define use_lchan(lchan) \
85 do { lchan->use_count++; \
Holger Freyther4f584c32009-06-02 02:55:07 +000086 DEBUGP(DCC, "lchan (bts=%d,trx=%d,ts=%d,ch=%d) increases usage to: %d\n", \
87 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr, \
88 lchan->nr, lchan->use_count); \
Harald Welteff117a82009-05-23 05:22:08 +000089 bsc_schedule_timer(&lchan->release_timer, LCHAN_RELEASE_TIMEOUT); } while(0);
Holger Freytherc6ea9db2008-12-30 19:18:21 +000090
91#define put_lchan(lchan) \
Holger Freyther4f584c32009-06-02 02:55:07 +000092 do { lchan->use_count--; \
93 DEBUGP(DCC, "lchan (bts=%d,trx=%d,ts=%d,ch=%d) decreases usage to: %d\n", \
94 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr, \
95 lchan->nr, lchan->use_count); \
96 } while(0);
97
Holger Freytherc6ea9db2008-12-30 19:18:21 +000098
Harald Welte52b1f982008-12-23 20:25:15 +000099/* communications link with a BTS */
100struct gsm_bts_link {
101 struct gsm_bts *bts;
102};
103
Harald Welte49f48b82009-02-17 15:29:33 +0000104struct gsm_lchan;
105struct gsm_subscriber;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800106struct gsm_mncc;
Harald Welte805f6442009-07-28 18:25:29 +0200107struct rtp_socket;
Harald Welte49f48b82009-02-17 15:29:33 +0000108
Harald Weltebbcc7a52009-02-14 19:45:44 +0000109/* Network Management State */
110struct gsm_nm_state {
111 u_int8_t operational;
112 u_int8_t administrative;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000113 u_int8_t availability;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000114};
Harald Weltebbcc7a52009-02-14 19:45:44 +0000115
Holger Freyther73487a22008-12-31 18:53:57 +0000116/*
117 * LOCATION UPDATING REQUEST state
118 *
119 * Our current operation is:
120 * - Get imei/tmsi
121 * - Accept/Reject according to global policy
122 */
123struct gsm_loc_updating_operation {
124 struct timer_list updating_timer;
125 int waiting_for_imsi : 1;
126 int waiting_for_imei : 1;
127};
128
Harald Welte8470bf22008-12-25 23:28:35 +0000129struct gsm_lchan {
130 /* The TS that we're part of */
131 struct gsm_bts_trx_ts *ts;
132 /* The logical subslot number in the TS */
133 u_int8_t nr;
Harald Welte45b407a2009-05-23 15:51:12 +0000134 /* The logical channel type */
Harald Welte8470bf22008-12-25 23:28:35 +0000135 enum gsm_chan_t type;
Harald Welte9943c5b2009-07-29 15:41:29 +0200136 /* RSL channel mode */
137 enum rsl_cmod_spd rsl_cmode;
Harald Welte45b407a2009-05-23 15:51:12 +0000138 /* If TCH, traffic channel mode */
Harald Welte9943c5b2009-07-29 15:41:29 +0200139 enum gsm48_chan_mode tch_mode;
Harald Welted4c9bf32009-02-15 16:56:18 +0000140 /* Power levels for MS and BTS */
141 u_int8_t bs_power;
142 u_int8_t ms_power;
143
Harald Welte8470bf22008-12-25 23:28:35 +0000144 /* To whom we are allocated at the moment */
145 struct gsm_subscriber *subscr;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000146
147 /* Timer started to release the channel */
148 struct timer_list release_timer;
Harald Weltea3d04382008-12-27 17:02:56 +0000149
Holger Freyther73487a22008-12-31 18:53:57 +0000150 /*
151 * Operations that have a state and might be pending
152 */
153 struct gsm_loc_updating_operation *loc_operation;
154
Holger Freytherb7193e42008-12-29 17:44:08 +0000155 /* use count. how many users use this channel */
156 unsigned int use_count;
Harald Welte8470bf22008-12-25 23:28:35 +0000157};
158
Harald Welte85770c72009-01-18 17:47:32 +0000159struct gsm_e1_subslot {
160 /* Number of E1 link */
161 u_int8_t e1_nr;
162 /* Number of E1 TS inside E1 link */
163 u_int8_t e1_ts;
164 /* Sub-slot within the E1 TS, 0xff if full TS */
165 u_int8_t e1_ts_ss;
166};
167
Harald Welte52b1f982008-12-23 20:25:15 +0000168#define BTS_TRX_F_ACTIVATED 0x0001
169/* One Timeslot in a TRX */
170struct gsm_bts_trx_ts {
171 struct gsm_bts_trx *trx;
172 /* number of this timeslot at the TRX */
173 u_int8_t nr;
174
Harald Welte8470bf22008-12-25 23:28:35 +0000175 enum gsm_phys_chan_config pchan;
176
Harald Welte52b1f982008-12-23 20:25:15 +0000177 unsigned int flags;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000178 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200179 struct tlv_parsed nm_attr;
Harald Welte39c7deb2009-08-09 21:49:48 +0200180 u_int8_t nm_chan_comb;
Harald Welte8470bf22008-12-25 23:28:35 +0000181
Harald Welte85770c72009-01-18 17:47:32 +0000182 /* To which E1 subslot are we connected */
183 struct gsm_e1_subslot e1_link;
Harald Welte75099262009-02-16 21:12:08 +0000184 struct {
185 u_int32_t bound_ip;
186 u_int16_t bound_port;
Harald Welte20855542009-07-12 09:50:35 +0200187 u_int8_t rtp_payload2;
188 u_int16_t conn_id;
Harald Welte805f6442009-07-28 18:25:29 +0200189 struct rtp_socket *rtp_socket;
Harald Welte75099262009-02-16 21:12:08 +0000190 } abis_ip;
Harald Welte85770c72009-01-18 17:47:32 +0000191
Harald Welte8470bf22008-12-25 23:28:35 +0000192 struct gsm_lchan lchan[TS_MAX_LCHAN];
Harald Welte52b1f982008-12-23 20:25:15 +0000193};
194
195/* One TRX in a BTS */
196struct gsm_bts_trx {
Harald Weltee441d9c2009-06-21 16:17:15 +0200197 /* list header in bts->trx_list */
198 struct llist_head list;
199
Harald Welte52b1f982008-12-23 20:25:15 +0000200 struct gsm_bts *bts;
201 /* number of this TRX in the BTS */
202 u_int8_t nr;
Harald Welte1fa60c82009-02-09 18:13:26 +0000203 /* how do we talk RSL with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200204 struct gsm_e1_subslot rsl_e1_link;
205 u_int8_t rsl_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000206 struct e1inp_sign_link *rsl_link;
Harald Welte42581822009-08-08 16:12:58 +0200207
Harald Weltebbcc7a52009-02-14 19:45:44 +0000208 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200209 struct tlv_parsed nm_attr;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000210 struct {
211 struct gsm_nm_state nm_state;
212 } bb_transc;
Harald Welte52b1f982008-12-23 20:25:15 +0000213
214 u_int16_t arfcn;
Harald Weltefcd24452009-06-20 18:15:19 +0200215 int nominal_power; /* in dBm */
216 unsigned int max_power_red; /* in actual dB */
Harald Welte8b697c72009-06-05 19:18:45 +0000217
218 union {
219 struct {
220 struct {
221 struct gsm_nm_state nm_state;
222 } bbsig;
223 struct {
224 struct gsm_nm_state nm_state;
225 } pa;
226 } bs11;
227 };
Harald Welte85770c72009-01-18 17:47:32 +0000228 struct gsm_bts_trx_ts ts[TRX_NR_TS];
Harald Welte52b1f982008-12-23 20:25:15 +0000229};
230
Harald Welte978cb422009-01-18 17:57:27 +0000231enum gsm_bts_type {
232 GSM_BTS_TYPE_UNKNOWN,
233 GSM_BTS_TYPE_BS11,
Harald Weltebbcc7a52009-02-14 19:45:44 +0000234 GSM_BTS_TYPE_NANOBTS_900,
235 GSM_BTS_TYPE_NANOBTS_1800,
Harald Welte978cb422009-01-18 17:57:27 +0000236};
237
Holger Freytherceb59b72009-02-06 18:54:00 +0000238/**
239 * A pending paging request
240 */
241struct gsm_paging_request {
Harald Welte0932d1e2009-02-16 22:53:52 +0000242 /* list_head for list of all paging requests */
Holger Freytherceb59b72009-02-06 18:54:00 +0000243 struct llist_head entry;
Harald Welte0932d1e2009-02-16 22:53:52 +0000244 /* the subscriber which we're paging. Later gsm_paging_request
245 * should probably become a part of the gsm_subscriber struct? */
Holger Freytherceb59b72009-02-06 18:54:00 +0000246 struct gsm_subscriber *subscr;
Harald Welte0932d1e2009-02-16 22:53:52 +0000247 /* back-pointer to the BTS on which we are paging */
Holger Freytherceb59b72009-02-06 18:54:00 +0000248 struct gsm_bts *bts;
Harald Welte0932d1e2009-02-16 22:53:52 +0000249 /* what kind of channel type do we ask the MS to establish */
Holger Freytherceb59b72009-02-06 18:54:00 +0000250 int chan_type;
Harald Weltecd06bfb2009-02-10 17:33:56 +0000251
252 /* Timer 3113: how long do we try to page? */
253 struct timer_list T3113;
Harald Welte0932d1e2009-02-16 22:53:52 +0000254
255 /* callback to be called in case paging completes */
256 gsm_cbfn *cbfn;
257 void *cbfn_param;
Holger Freytherceb59b72009-02-06 18:54:00 +0000258};
Harald Weltecd06bfb2009-02-10 17:33:56 +0000259#define T3113_VALUE 60, 0
Holger Freytherceb59b72009-02-06 18:54:00 +0000260
261/*
262 * This keeps track of the paging status of one BTS. It
263 * includes a number of pending requests, a back pointer
264 * to the gsm_bts, a timer and some more state.
265 */
266struct gsm_bts_paging_state {
Holger Freytherceb59b72009-02-06 18:54:00 +0000267 /* pending requests */
268 struct llist_head pending_requests;
269 struct gsm_paging_request *last_request;
270 struct gsm_bts *bts;
271
Harald Welte75a1fa82009-02-17 01:39:41 +0000272 struct timer_list work_timer;
273
Holger Freyther392209c2009-02-10 00:06:19 +0000274 /* load */
275 u_int16_t available_slots;
Holger Freytherceb59b72009-02-06 18:54:00 +0000276};
277
Harald Welte8b697c72009-06-05 19:18:45 +0000278struct gsm_envabtse {
279 struct gsm_nm_state nm_state;
280};
281
Harald Welte52b1f982008-12-23 20:25:15 +0000282/* One BTS */
283struct gsm_bts {
Harald Weltee441d9c2009-06-21 16:17:15 +0200284 /* list header in net->bts_list */
285 struct llist_head list;
286
Harald Welte52b1f982008-12-23 20:25:15 +0000287 struct gsm_network *network;
288 /* number of ths BTS in network */
289 u_int8_t nr;
290 /* location area code of this BTS */
291 u_int8_t location_area_code;
Harald Welte02b0e092009-02-28 13:11:07 +0000292 /* Training Sequence Code */
293 u_int8_t tsc;
Harald Welte78f2f502009-05-23 16:56:52 +0000294 /* Base Station Identification Code (BSIC) */
295 u_int8_t bsic;
Harald Welte978cb422009-01-18 17:57:27 +0000296 /* type of BTS */
297 enum gsm_bts_type type;
Harald Weltefcd24452009-06-20 18:15:19 +0200298 enum gsm_band band;
Harald Welte1fa60c82009-02-09 18:13:26 +0000299 /* how do we talk OML with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200300 struct gsm_e1_subslot oml_e1_link;
301 u_int8_t oml_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000302 struct e1inp_sign_link *oml_link;
Harald Welte52b1f982008-12-23 20:25:15 +0000303
304 /* Abis network management O&M handle */
305 struct abis_nm_h *nmh;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000306 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200307 struct tlv_parsed nm_attr;
Harald Welte978cb422009-01-18 17:57:27 +0000308
Harald Welte52b1f982008-12-23 20:25:15 +0000309 /* number of this BTS on given E1 link */
310 u_int8_t bts_nr;
311
Holger Freyther1adb4ff2009-02-04 00:04:52 +0000312 struct gsm48_control_channel_descr chan_desc;
313
Holger Freytherceb59b72009-02-06 18:54:00 +0000314 /* paging state and control */
315 struct gsm_bts_paging_state paging;
316
Harald Welte52b1f982008-12-23 20:25:15 +0000317 /* CCCH is on C0 */
318 struct gsm_bts_trx *c0;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000319
320 struct {
321 struct gsm_nm_state nm_state;
322 } site_mgr;
Harald Welteedb37782009-05-01 14:59:07 +0000323
324 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
Harald Welte7b26bcb2009-05-28 11:39:21 +0000325 union {
326 struct {
327 u_int16_t site_id;
328 u_int16_t bts_id;
329 } ip_access;
330 struct {
331 struct {
332 struct gsm_nm_state nm_state;
333 } cclk;
334 struct {
335 struct gsm_nm_state nm_state;
336 } rack;
Harald Welte8b697c72009-06-05 19:18:45 +0000337 struct gsm_envabtse envabtse[4];
Harald Welte7b26bcb2009-05-28 11:39:21 +0000338 } bs11;
339 };
Harald Weltebbcc7a52009-02-14 19:45:44 +0000340
Harald Welte52b1f982008-12-23 20:25:15 +0000341 /* transceivers */
342 int num_trx;
Harald Weltee441d9c2009-06-21 16:17:15 +0200343 struct llist_head trx_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000344};
345
Harald Welte52b1f982008-12-23 20:25:15 +0000346struct gsm_network {
347 /* global parameters */
Harald Welteb84e2f42008-12-28 23:42:04 +0000348 u_int16_t country_code;
349 u_int16_t network_code;
Harald Weltec6ba9c22008-12-30 18:01:02 +0000350 char *name_long;
351 char *name_short;
Harald Welte52b1f982008-12-23 20:25:15 +0000352
Harald Welte4bfdfe72009-06-10 23:11:52 +0800353 /* layer 4 */
354 int (*mncc_recv) (struct gsm_network *net, int msg_type, void *arg);
355 struct llist_head upqueue;
356 struct llist_head trans_list;
357
Harald Welte52b1f982008-12-23 20:25:15 +0000358 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +0200359 struct llist_head bts_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000360};
361
Harald Welte7e310b12009-03-30 20:56:32 +0000362#define SMS_HDR_SIZE 128
363#define SMS_TEXT_SIZE 256
364struct gsm_sms {
365 u_int64_t id;
366 struct gsm_subscriber *sender;
367 struct gsm_subscriber *receiver;
368
Harald Welteb9c758b2009-07-05 14:02:46 +0200369 unsigned long validity_minutes;
Harald Welte76042182009-08-08 16:03:15 +0200370 u_int8_t reply_path_req;
371 u_int8_t status_rep_req;
372 u_int8_t ud_hdr_ind;
373 u_int8_t protocol_id;
374 u_int8_t data_coding_scheme;
375 u_int8_t msg_ref;
376 char dest_addr[20+1]; /* DA LV is 12 bytes max, i.e. 10 bytes
377 * BCD == 20 bytes string */
378 u_int8_t user_data_len;
379 u_int8_t user_data[SMS_TEXT_SIZE];
Harald Weltef3efc592009-07-27 20:11:35 +0200380
Harald Welte7e310b12009-03-30 20:56:32 +0000381 char text[SMS_TEXT_SIZE];
382};
383
Harald Weltee441d9c2009-06-21 16:17:15 +0200384struct gsm_network *gsm_network_init(u_int16_t country_code, u_int16_t network_code,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800385 int (*mncc_recv)(struct gsm_network *, int, void *));
Harald Weltee441d9c2009-06-21 16:17:15 +0200386struct gsm_bts *gsm_bts_alloc(struct gsm_network *net, enum gsm_bts_type type,
387 u_int8_t tsc, u_int8_t bsic);
388struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
389
390struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num);
391struct gsm_bts_trx *gsm_bts_trx_num(struct gsm_bts *bts, int num);
Harald Welte8470bf22008-12-25 23:28:35 +0000392
Harald Weltea72c98e2009-01-04 16:10:38 +0000393const char *gsm_pchan_name(enum gsm_phys_chan_config c);
Harald Welte65da9122009-08-07 00:32:22 +0200394enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
Harald Weltea72c98e2009-01-04 16:10:38 +0000395const char *gsm_lchan_name(enum gsm_chan_t c);
396const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte23a68632009-02-19 17:06:42 +0000397char *gsm_ts_name(struct gsm_bts_trx_ts *ts);
Harald Weltea72c98e2009-01-04 16:10:38 +0000398
Harald Weltead384642008-12-26 10:20:07 +0000399enum gsm_e1_event {
400 EVT_E1_NONE,
Harald Welte1fa60c82009-02-09 18:13:26 +0000401 EVT_E1_TEI_UP,
402 EVT_E1_TEI_DN,
Harald Weltead384642008-12-26 10:20:07 +0000403};
404
Harald Weltecd06bfb2009-02-10 17:33:56 +0000405void set_ts_e1link(struct gsm_bts_trx_ts *ts, u_int8_t e1_nr,
406 u_int8_t e1_ts, u_int8_t e1_ts_ss);
Harald Welte1d014a52009-08-08 15:38:29 +0200407enum gsm_bts_type parse_btstype(const char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200408const char *btstype2str(enum gsm_bts_type type);
Harald Weltebe991492009-05-23 13:56:40 +0000409struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
410 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +0000411
Harald Weltefcd24452009-06-20 18:15:19 +0200412char *gsm_band_name(enum gsm_band band);
Harald Welte42581822009-08-08 16:12:58 +0200413enum gsm_band gsm_band_parse(const char *mhz);
Harald Weltefcd24452009-06-20 18:15:19 +0200414
Andreas Eversberg8226fa72009-06-29 15:19:38 +0200415extern void *tall_bsc_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +0200416
Harald Welte32201c12009-03-10 12:15:10 +0000417static inline int is_ipaccess_bts(struct gsm_bts *bts)
418{
419 switch (bts->type) {
420 case GSM_BTS_TYPE_NANOBTS_900:
421 case GSM_BTS_TYPE_NANOBTS_1800:
422 return 1;
423 default:
424 break;
425 }
426 return 0;
427}
428
Harald Welte52b1f982008-12-23 20:25:15 +0000429#endif