You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
632 B
35 lines
632 B
12 years ago
|
#ifndef _GSM_DATA_SHAREDH
|
||
|
#define _GSM_DATA_SHAREDH
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include <osmocom/core/timer.h>
|
||
|
#include <osmocom/core/bitvec.h>
|
||
|
#include <osmocom/core/statistics.h>
|
||
|
#include <osmocom/core/utils.h>
|
||
|
#include <osmocom/gsm/gsm_utils.h>
|
||
|
#include <osmocom/gsm/tlv.h>
|
||
7 years ago
|
#include <osmocom/gsm/protocol/gsm_04_08.h>
|
||
![]()
10 years ago
|
|
||
![]()
12 years ago
|
struct osmo_bsc_data;
|
||
|
|
||
12 years ago
|
struct osmo_bsc_sccp_con;
|
||
|
struct gsm_sms_queue;
|
||
|
|
||
|
/* RRLP mode of operation */
|
||
|
enum rrlp_mode {
|
||
|
RRLP_MODE_NONE,
|
||
|
RRLP_MODE_MS_BASED,
|
||
|
RRLP_MODE_MS_PREF,
|
||
|
RRLP_MODE_ASS_PREF,
|
||
|
};
|
||
|
|
||
|
enum gsm_hooks {
|
||
|
GSM_HOOK_NM_SWLOAD,
|
||
|
GSM_HOOK_RR_PAGING,
|
||
|
GSM_HOOK_RR_SECURITY,
|
||
|
};
|
||
|
|
||
|
#endif
|