blob: 544c1ce74f2d8c91f895da00a09023b1971aa944 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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);
#endif /* __GSMD__ */
#endif
|