summaryrefslogtreecommitdiff
path: root/include/gsmd/unsolicited.h
blob: fa0ee32bd1ba1de3795f0675a02d76af6eef8308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __GSMD_UNSOLICITED_H
#define __GSMD_UNSOLICITED_H

#ifdef __GSMD__

#include <gsmd/gsmd.h>

struct gsmd_unsolicit {
	const char *prefix;
	int (*parse)(char *unsol, int len, const char *param, struct gsmd *gsmd);
};

extern int unsolicited_parse(struct gsmd *g, char *buf, int len, const char *param);
extern int generate_event_from_cme(struct gsmd *g, unsigned int cme_error);
extern void unsolicited_generic_init(struct gsmd *g);
extern int unsolicited_register_array(const struct gsmd_unsolicit *arr,
		int len);
extern const int pintype_from_cme[];

#endif /* __GSMD__ */

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