aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/common_cs.h
blob: 8549a837bc060ea867cffc97b2d6b244f43f4608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <stdint.h>

struct msgb;
struct gsm_network;

typedef int (*mncc_recv_cb_t)(struct gsm_network *, struct msgb *);

struct gsm_network *gsm_network_init(void *ctx,
				     uint16_t country_code,
				     uint16_t network_code,
				     mncc_recv_cb_t mncc_recv);