osmo-msc/openbsc/include/openbsc/osmo_bsc_rf.h

21 lines
361 B
C

#ifndef OSMO_BSC_RF
#define OSMO_BSC_RF
#include <osmocore/write_queue.h>
struct gsm_network;
struct osmo_bsc_rf {
struct bsc_fd listen;
struct gsm_network *gsm_network;
};
struct osmo_bsc_rf_conn {
struct write_queue queue;
struct gsm_network *gsm_network;
};
struct osmo_bsc_rf *osmo_bsc_rf_create(const char *path, struct gsm_network *net);
#endif