aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/iu.h
blob: 3bcc37825ae14de7a10b2a7bc29afd570968d4a7 (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
#pragma once

struct msgb;
struct gprs_ra_id;

struct iu_cb_ctx {
	struct gsm_network *network;
};

struct ue_conn_ctx {
	struct osmo_sua_link *link;
	uint32_t conn_id;
};

/* 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 ue_conn_ctx *ue_ctx, uint32_t gtp_ip, uint32_t gtp_tei);