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
77
78
79
80
81
82
83
84
85
86
|
#ifndef _LIBGSMD_VCALL_H
#define _LIBGSMD_VCALL_H
#include <libgsmd/libgsmd.h>
/* Voice Calls */
/*
* call related supplementary services from 3GPP TS 02.30 4.5.5.1
* R - Release
* A - Accept
* H - Hold
* M - Multiparty
*/
enum lgsm_voicecall_ctrl_proc {
LGSM_VOICECALL_CTRL_R_HLDS = 0, // 0
LGSM_VOICECALL_CTRL_UDUB = 1, // 0
LGSM_VOICECALL_CTRL_R_ACTS_A_HLD_WAIT = 2, // 1
LGSM_VOICECALL_CTRL_R_ACT_X = 3, // 1x
LGSM_VOICECALL_CTRL_H_ACTS_A_HLD_WAIT = 4, // 2
LGSM_VOICECALL_CTRL_H_ACTS_EXCEPT_X = 5, // 2x
LGSM_VOICECALL_CTRL_M_HELD = 6, // 3
};
/* call forward reason from 3GPP TS 07.07 subclause 07.10 */
enum lgsmd_voicecall_fwd_reason {
GSMD_VOICECALL_FWD_REASON_UNCOND = 0,
GSMD_VOICECALL_FWD_REASON_BUSY = 1,
GSMD_VOICECALL_FWD_REASON_NO_REPLY = 2,
GSMD_VOICECALL_FWD_REASON_NOT_REACHABLE = 3,
GSMD_VOICECALL_FWD_REASON_ALL_FORWARD = 4,
GSMD_VOICECALL_FWD_REASON_ALL_COND_FORWARD = 5,
};
/* Refer to GSM 07.07 subclause 7.12 and 02.30 subclause 4.5.5.1 */
struct lgsm_voicecall_ctrl {
enum lgsm_voicecall_ctrl_proc proc;
int idx;
};
/* Refer to GSM 07.07 subclause 07.10 */
struct lgsm_voicecall_fwd_reg {
enum lgsmd_voicecall_fwd_reason reason;
struct lgsm_addr number;
};
/* Initiate an outgoing voice call */
extern int lgsm_voice_out_init(struct lgsm_handle *lh,
const struct lgsm_addr *number);
/* Accept incoming voice call */
extern int lgsm_voice_in_accept(struct lgsm_handle *lh);
/* Terminate outgoing (or incoming) voice call */
extern int lgsm_voice_hangup(struct lgsm_handle *lh);
/* Send DTMF character during voice call */
extern int lgsm_voice_dtmf(struct lgsm_handle *lh, char dtmf_char);
/* Get call status */
extern int lgsm_voice_get_status(struct lgsm_handle *lh);
/* Call control */
extern int lgsm_voice_ctrl(struct lgsm_handle *lh,
const struct lgsm_voicecall_ctrl *ctrl);
/* disable call forwarding */
extern int lgsm_voice_fwd_disable(struct lgsm_handle *lh,
enum lgsmd_voicecall_fwd_reason reason);
/* enable call forwarding */
extern int lgsm_voice_fwd_enable(struct lgsm_handle *lh,
enum lgsmd_voicecall_fwd_reason reason);
/* querty current status/setting of call forwarding */
extern int lgsm_voice_fwd_stat(struct lgsm_handle *lh,
enum lgsmd_voicecall_fwd_reason reason);
/* register call forwarding */
extern int lgsm_voice_fwd_reg(struct lgsm_handle *lh,
struct lgsm_voicecall_fwd_reg *fwd_reg);
/* erase the record of registered call forwarding */
extern int lgsm_voice_fwd_erase(struct lgsm_handle *lh,
enum lgsmd_voicecall_fwd_reason reason);
#endif
|