aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/bsc/bsc_rll.h
blob: 3afe4a8f3c9d8ea5939e47cc5f5d23e427b1dd87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _BSC_RLL_H
#define _BSC_RLL_H

#include <osmocom/bsc/gsm_data.h>

enum bsc_rllr_ind {
	BSC_RLLR_IND_EST_CONF,
	BSC_RLLR_IND_REL_IND,
	BSC_RLLR_IND_ERR_IND,
	BSC_RLLR_IND_TIMEOUT,
};

int rll_establish(struct gsm_lchan *lchan, uint8_t link_id,
		  void (*cb)(struct gsm_lchan *, uint8_t, void *,
			     enum bsc_rllr_ind),
		  void *data);
void rll_indication(struct gsm_lchan *lchan, uint8_t link_id, uint8_t type);

#endif /* _BSC_RLL_H */