aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/netif/channel.h
blob: 1abc8286b74547ea49c509a59abdf8bbdf40d954 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef _CHANNEL_H_
#define _CHANNEL_H_

#include <stdint.h>

/* channel types */
enum {
	OSMO_CHAN_NONE,
	OSMO_CHAN_ABIS_IPA_SRV,
	OSMO_CHAN_ABIS_IPA_CLI,
	OSMO_CHAN_MAX,
};

/* channel subtypes */
enum {
	OSMO_SUBCHAN_STREAM,
	OSMO_SUBCHAN_MAX,
};

struct osmo_chan;
struct msgb;

struct osmo_chan_type {
	struct llist_head head;

	char	*name;
	int	type;
	int	subtype;
	int	datasiz;

	int	(*create)(struct osmo_chan *chan);
	void	(*destroy)(struct osmo_chan *chan);
	int	(*open)(struct osmo_chan *chan);
	void	(*close)(struct osmo_chan *chan);
	int	(*enqueue)(struct osmo_chan *chan, struct msgb *msg);
};

struct osmo_chan {
	void			*ctx;
	struct osmo_chan_type	*ops;
	char			data[0];
};

void osmo_chan_init(void *ctx);

struct osmo_chan *osmo_chan_create(int type, int subtype);
void osmo_chan_destroy(struct osmo_chan *c);

int osmo_chan_open(struct osmo_chan *c);
void osmo_chan_close(struct osmo_chan *c);

int osmo_chan_enqueue(struct osmo_chan *c, struct msgb *msg);

#endif /* _CHANNEL_H_ */