summaryrefslogtreecommitdiff
path: root/include/libgsmd/misc.h
blob: 884e294cada2043c51b98f40e3ca9543647b2773 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#ifndef _LIBGSMD_MISC_H
#define _LIBGSMD_MISC_H

/* libgsmd.h - Library API for gsmd, the GSM Daemon
 * (C) 2006 by Harald Welte <hwelte@hmw-consulting.de>
 * Development funded by First International Computers, Inc.
 */

#include <libgsmd/libgsmd.h>

extern int lgsm_phone_power(struct lgsm_handle *lh, int power);
extern int lgsm_modem_power(struct lgsm_handle *lh, int power);

/* Authenticate to SIM Card using specified null-terminated pin */
extern int lgsm_pin_auth(struct lgsm_handle *lh, const char *pin);


/* General Commands */

/* Get Signal Strehngth (Chapter 8.5) */
extern int lgsm_signal_quality(struct lgsm_handle *h);

/* Operator Selection, Network Registration */
extern int lgsm_oper_get(struct lgsm_handle *lh);
extern int lgsm_oper_n_get(struct lgsm_handle *lh);
extern int lgsm_opers_get(struct lgsm_handle *lh);
extern int lgsm_netreg_register(struct lgsm_handle *lh,
		gsmd_oper_numeric oper);
extern int lgsm_netreg_deregister(struct lgsm_handle *lh);
extern int lgsm_netreg_query(struct lgsm_handle *lh);

enum lgsm_netreg_state {
	LGSM_NETREG_ST_NOTREG		= 0,
	LGSM_NETREG_ST_REG_HOME		= 1,
	LGSM_NETREG_ST_NOTREG_SEARCH	= 2,
	LGSM_NETREG_ST_DENIED		= 3,
	LGSM_NETREG_ST_UNKNOWN		= 4,
	LGSM_NETREG_ST_REG_ROAMING	= 5,
};

/* Get the current network registration status */
extern int lgsm_get_netreg_state(struct lgsm_handle *lh,
				 enum lgsm_netreg_state *state);

/* Preferred operator list management */
extern int lgsm_prefoper_list(struct lgsm_handle *lh);
extern int lgsm_prefoper_delete(struct lgsm_handle *lh, int index);
extern int lgsm_prefoper_add(struct lgsm_handle *lh, gsmd_oper_numeric oper);
extern int lgsm_prefoper_get_space(struct lgsm_handle *lh);

/* Get subscriber's own phone number */
extern int lgsm_get_subscriber_num(struct lgsm_handle *lh);

/* CLIP, CLIR, COLP, Call Forwarding, Call Waiting, Call Deflecting */
/* TBD */

/* GPRS related functions */
/* TBD */

/* Retrieve IMSI information */
extern int lgsm_get_imsi(struct lgsm_handle *lh);
/* Retrieve manufacturer information */
extern int lgsm_get_manufacturer(struct lgsm_handle *lh);
/* Retrieve model information */
extern int lgsm_get_model(struct lgsm_handle *lh);
/* Retrieve revision information */
extern int lgsm_get_revision(struct lgsm_handle *lh);
/* Retrieve serial information */
extern int lgsm_get_serial(struct lgsm_handle *lh);
/* Set voice mail number */
extern int lgsm_voicemail_set(struct lgsm_handle *lh, const char *number);
/* Get currently configured voice mail number */
extern int lgsm_voicemail_get(struct lgsm_handle *lh);
/* Get Battery Connection status and charge level */
extern int lgsm_get_battery(struct lgsm_handle *lh);
#endif
personal git repositories of Harald Welte. Your mileage may vary