aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/iu.h
blob: 905c1d3a6f3ea60cbb76a49a045e39bee80ac3c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once

struct sgsn_pdp_ctx;
struct msgb;
struct gprs_ra_id;

struct iu_cb_ctx {
	struct gsm_network *network;
};

struct ue_conn_ctx {
	struct llist_head list;
	struct osmo_sua_link *link;
	uint32_t conn_id;
	struct sgsn_pdp_ctx *pdp;
};

/* Implementations of iu_recv_cb_t shall find the ue_conn_ctx in msg->dst. */
typedef int (* iu_recv_cb_t )(struct msgb *msg, struct gprs_ra_id *ra_id,
			      /* TODO is ra_id only used for gprs? ^ */
			      uint16_t *sai);

int iu_init(void *ctx, const char *listen_addr, uint16_t listen_port,
	    struct gsm_network *network, iu_recv_cb_t iu_recv_cb);

int iu_tx(struct msgb *msg, uint8_t sapi);

int iu_rab_act_cs(struct ue_conn_ctx *ue_ctx, uint32_t rtp_ip, uint16_t rtp_port);
int iu_rab_act_ps(struct sgsn_pdp_ctx *pdp);