aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/osmo_msc.h
blob: 8ee22de27f129a2e4de2a642b1577bd1327b79e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Routines for the MSC handling */

#ifndef OSMO_MSC_H
#define OSMO_MSC_H

#include "bsc_api.h"

enum {
	MSC_CONN_ACCEPT = 0,
	MSC_CONN_REJECT = 1,
};

struct bsc_api *msc_bsc_api();

int msc_compl_l3(struct gsm_subscriber_connection *conn, struct msgb *msg,
		 uint16_t chosen_channel);
void msc_release_connection(struct gsm_subscriber_connection *conn);

#endif