FreeCalypso > hg > themwi-system-sw
annotate sip-in/disconnect.c @ 65:7c0309df59f8
sip-in: handling of ALERTING state
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 18 Sep 2022 15:44:22 -0800 |
parents | 1f863c63f96b |
children | 5beb51de1bae |
rev | line source |
---|---|
64
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 /* |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 * In this module we implement call disconnection and clearing procedures. |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 */ |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 #include <sys/types.h> |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 #include <sys/socket.h> |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 #include <netinet/in.h> |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 #include <stdio.h> |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 #include <stdint.h> |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 #include <stdlib.h> |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 #include <string.h> |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 #include <strings.h> |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 #include <syslog.h> |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 #include "../include/mncc.h" |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 #include "../include/gsm48_const.h" |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 #include "call.h" |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 void |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 disconnect_mncc(call, cause_loc, cause_val) |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 struct call *call; |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 { |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
22 struct gsm_mncc msg; |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
23 |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
24 switch (call->mncc_state) { |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
25 case MNCC_STATE_NO_EXIST: |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
26 case MNCC_STATE_DISCONNECT: |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
27 case MNCC_STATE_RELEASE: |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
28 return; |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
29 } |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
30 bzero(&msg, sizeof(struct gsm_mncc)); |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
31 msg.msg_type = MNCC_DISC_REQ; |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
32 msg.callref = call->mncc_callref; |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
33 mncc_set_cause(&msg, cause_loc, cause_val); |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
34 send_mncc_to_gsm(&msg, sizeof(struct gsm_mncc)); |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
35 call->mncc_state = MNCC_STATE_DISCONNECT; |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
36 } |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
37 |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
38 void |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
39 disconnect_tmgw(call) |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
40 struct call *call; |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
41 { |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
42 switch (call->mgw_state) { |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
43 case MGW_STATE_NO_EXIST: |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
44 case MGW_STATE_CONNECTING: |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
45 case MGW_STATE_DELETING: |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
46 return; |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
47 case MGW_STATE_ALLOCATED: |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
48 case MGW_STATE_COMPLETE: |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
49 tmgw_send_dlcx(call); |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
50 return; |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
51 default: |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
52 syslog(LOG_CRIT, |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
53 "FATAL: invalid MGW state 0x%x in disconnect_tmgw()", |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
54 call->mgw_state); |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
55 exit(1); |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
56 } |
1f863c63f96b
sip-in: beginning of disconnect handling
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
57 } |