blob: 92dc2c3f8f78429303349ca48843c398c68aae7e [file] [log] [blame]
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001#ifndef OPENBSC_LAPD_H
2#define OPENBSC_LAPD_H
3
4#include <stdint.h>
5
6#include <osmocom/core/linuxlist.h>
7
8typedef enum {
9 LAPD_MPH_NONE = 0,
10
11 LAPD_MPH_ACTIVATE_IND,
12 LAPD_MPH_DEACTIVATE_IND,
13
14 LAPD_DL_DATA_IND,
15 LAPD_DL_UNITDATA_IND,
16
17} lapd_mph_type;
18
19struct lapd_instance {
20 struct llist_head list; /* list of LAPD instances */
21 int network_side;
22
23 void (*transmit_cb)(uint8_t *data, int len, void *cbdata);
24 void *cbdata;
25
26 struct llist_head tei_list; /* list of TEI in this LAPD instance */
27};
28
Pablo Neira Ayuso31fe5f22011-08-09 23:15:38 +020029enum lapd_recv_errors {
30 LAPD_ERR_NONE = 0,
31 LAPD_ERR_BAD_LEN,
32 LAPD_ERR_BAD_ADDR,
33 LAPD_ERR_UNKNOWN_S_CMD,
34 LAPD_ERR_UNKNOWN_U_CMD,
35 LAPD_ERR_UNKNOWN_TEI,
36 LAPD_ERR_BAD_CMD,
37 __LAPD_ERR_MAX
38};
39
40extern uint8_t *lapd_receive(struct lapd_instance *li, uint8_t *data,
41 unsigned int len, int *ilen, lapd_mph_type *prim,
42 int *error);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020043
44extern void lapd_transmit(struct lapd_instance *li, uint8_t tei, uint8_t sapi,
45 uint8_t *data, unsigned int len);
46
47struct lapd_instance *lapd_instance_alloc(int network_side,
48 void (*tx_cb)(uint8_t *data, int len,
49 void *cbdata), void *cbdata);
50
Harald Welte14078ea2011-08-24 09:45:11 +020051void lapd_instance_free(struct lapd_instance *li);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020052
53/* Start a (user-side) SAP for the specified TEI/SAPI on the LAPD instance */
54int lapd_sap_start(struct lapd_instance *li, uint8_t tei, uint8_t sapi);
55
56/* Stop a (user-side) SAP for the specified TEI/SAPI on the LAPD instance */
57int lapd_sap_stop(struct lapd_instance *li, uint8_t tei, uint8_t sapi);
58
59#endif /* OPENBSC_LAPD_H */