aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/bsc_msc_rf.h
blob: f72309923a03810b07de1f22642a7030655c9a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef BSC_MSC_RF
#define BSC_MSC_RF

#include <osmocore/write_queue.h>

struct gsm_network;

struct bsc_msc_rf {
	/* the value of signal.h */
	int policy;
	struct bsc_fd listen;
	struct gsm_network *gsm_network;
};

struct bsc_msc_rf_conn {
	struct write_queue queue;
	struct bsc_msc_rf *rf;
};

struct bsc_msc_rf *bsc_msc_rf_create(const char *path, struct gsm_network *net);

#endif