libosmogsm  1.9.2
Osmocom GSM library
gsm0411_smc.h
Go to the documentation of this file.
1 
5 #pragma once
6 
7 #include <osmocom/core/timer.h>
9 
10 #define GSM411_MMSMS_EST_REQ 0x310
11 #define GSM411_MMSMS_EST_IND 0x312
12 #define GSM411_MMSMS_EST_CNF 0x311
13 #define GSM411_MMSMS_REL_REQ 0x320
14 #define GSM411_MMSMS_REL_IND 0x322
15 #define GSM411_MMSMS_DATA_REQ 0x330
16 #define GSM411_MMSMS_DATA_IND 0x332
17 #define GSM411_MMSMS_UNIT_DATA_REQ 0x340
18 #define GSM411_MMSMS_UNIT_DATA_IND 0x342
19 #define GSM411_MMSMS_ERR_IND 0x372
20 
21 #define GSM411_MNSMS_ABORT_REQ 0x101
22 #define GSM411_MNSMS_DATA_REQ 0x102
23 #define GSM411_MNSMS_DATA_IND 0x103
24 #define GSM411_MNSMS_EST_REQ 0x104
25 #define GSM411_MNSMS_EST_IND 0x105
26 #define GSM411_MNSMS_ERROR_IND 0x106
27 #define GSM411_MNSMS_REL_REQ 0x107
28 
30  uint64_t id; /* a unique id for the SMS */
31  int network; /* is this a MO (0) or MT (1) transfer */
32  int (*mn_recv) (struct gsm411_smc_inst *inst, int msg_type,
33  struct msgb *msg);
34  int (*mm_send) (struct gsm411_smc_inst *inst, int msg_type,
35  struct msgb *msg, int cp_msg_type);
36 
39  struct msgb *cp_msg; /* store pending message */
40  int cp_rel; /* store pending release */
41  int cp_retx; /* retry counter */
42  int cp_max_retr; /* maximum retry */
43  int cp_tc1; /* timer value TC1* */
44 
45 };
46 
47 extern const struct value_string gsm411_cp_cause_strs[];
48 
49 /* init a new instance */
50 void gsm411_smc_init(struct gsm411_smc_inst *inst, uint64_t id, int network,
51  int (*mn_recv) (struct gsm411_smc_inst *inst, int msg_type,
52  struct msgb *msg),
53  int (*mm_send) (struct gsm411_smc_inst *inst, int msg_type,
54  struct msgb *msg, int cp_msg_type));
55 
56 /* clear instance */
57 void gsm411_smc_clear(struct gsm411_smc_inst *inst);
58 
59 /* message from upper layer */
60 int gsm411_smc_send(struct gsm411_smc_inst *inst, int msg_type,
61  struct msgb *msg);
62 
63 /* message from lower layer */
64 int gsm411_smc_recv(struct gsm411_smc_inst *inst, int msg_type,
65  struct msgb *msg, int cp_msg_type);
66 
67 extern const struct value_string gsm411_cp_state_names[];
68 
69 static inline const char *gsm411_cp_state_name(enum gsm411_cp_state cp_state) {
70  return get_value_string(gsm411_cp_state_names, cp_state);
71 }
gsm411_cp_state_names
const struct value_string gsm411_cp_state_names[]
Definition: gsm0411_smc.c:582
osmo_timer_list
gsm411_smc_clear
void gsm411_smc_clear(struct gsm411_smc_inst *inst)
Definition: gsm0411_smc.c:100
gsm411_cp_cause_strs
const struct value_string gsm411_cp_cause_strs[]
Definition: gsm0411_smc.c:123
gsm411_smc_inst::mn_recv
int(* mn_recv)(struct gsm411_smc_inst *inst, int msg_type, struct msgb *msg)
Definition: gsm0411_smc.h:32
get_value_string
const char * get_value_string(const struct value_string *vs, uint32_t val)
gsm411_cp_state
gsm411_cp_state
Definition: gsm_04_11.h:10
gsm411_smc_inst
Definition: gsm0411_smc.h:29
msg
uint8_t msg[0]
Definition: gsm_08_08.h:729
network
write Write running configuration to network
gsm411_smc_inst::cp_state
enum gsm411_cp_state cp_state
Definition: gsm0411_smc.h:37
msgb
gsm411_smc_inst::cp_timer
struct osmo_timer_list cp_timer
Definition: gsm0411_smc.h:38
gsm411_smc_inst::cp_max_retr
int cp_max_retr
Definition: gsm0411_smc.h:42
gsm411_smc_inst::cp_retx
int cp_retx
Definition: gsm0411_smc.h:41
gsm411_smc_inst::network
int network
Definition: gsm0411_smc.h:31
gsm411_smc_inst::mm_send
int(* mm_send)(struct gsm411_smc_inst *inst, int msg_type, struct msgb *msg, int cp_msg_type)
Definition: gsm0411_smc.h:34
gsm411_smc_inst::cp_tc1
int cp_tc1
Definition: gsm0411_smc.h:43
timer.h
value_string
gsm411_smc_inst::cp_msg
struct msgb * cp_msg
Definition: gsm0411_smc.h:39
gsm411_smc_send
int gsm411_smc_send(struct gsm411_smc_inst *inst, int msg_type, struct msgb *msg)
Definition: gsm0411_smc.c:454
gsm411_smc_inst::cp_rel
int cp_rel
Definition: gsm0411_smc.h:40
gsm411_smc_init
void gsm411_smc_init(struct gsm411_smc_inst *inst, uint64_t id, int network, int(*mn_recv)(struct gsm411_smc_inst *inst, int msg_type, struct msgb *msg), int(*mm_send)(struct gsm411_smc_inst *inst, int msg_type, struct msgb *msg, int cp_msg_type))
Definition: gsm0411_smc.c:79
gsm411_smc_recv
int gsm411_smc_recv(struct gsm411_smc_inst *inst, int msg_type, struct msgb *msg, int cp_msg_type)
Definition: gsm0411_smc.c:528
gsm411_smc_inst::id
uint64_t id
Definition: gsm0411_smc.h:30
gsm_04_11.h
msg_type
uint8_t msg_type
Definition: gsm_04_08.h:808
gsm411_cp_state_name
static const char * gsm411_cp_state_name(enum gsm411_cp_state cp_state)
Definition: gsm0411_smc.h:69