summaryrefslogtreecommitdiff
path: root/src/libgsmd/lgsm_internals.h
blob: 060195987bec505b0b457bbcd77898314da8ffef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _LGSM_INTERNALS_H
#define _LGSM_INTERNALS_H

#include <gsmd/usock.h>

typedef int lgsm_msg_handler(struct lgsm_handle *lh, struct gsmd_msg_hdr *gmh);

struct lgsm_handle {
	int fd;
	lgsm_msg_handler *handler[__NUM_GSMD_MSGS];
};

#endif /* _LGSM_INTERNALS_H */
personal git repositories of Harald Welte. Your mileage may vary