aboutsummaryrefslogtreecommitdiffstats
path: root/src/telnet_interface.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-02-17 01:43:01 +0000
committerHarald Welte <laforge@gnumonks.org>2009-02-17 01:43:01 +0000
commit7ccf77810b603d2c70004311e30a757af057e31b (patch)
tree5fe72efbec256d5e260c36a8320c99cb602e2215 /src/telnet_interface.c
parent75a1fa834ce34da2165de2de0b89cdebc8c87e77 (diff)
slightly more complete GSM 04.08 CC, we can now
* initiate phone calls from one MS * look-up the subscriber based on dialled extension * page the called subscriber * send the SETUP to the called subscriber, including CLIP/CLIR * get ALERTING notification back to caller * relay DISCONNECT from either side to the other This is still far from being complete, but it at least works for the most common case
Diffstat (limited to 'src/telnet_interface.c')
-rw-r--r--src/telnet_interface.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/telnet_interface.c b/src/telnet_interface.c
index 25f67a69d..87bf60f9a 100644
--- a/src/telnet_interface.c
+++ b/src/telnet_interface.c
@@ -189,7 +189,6 @@ void telnet_page(struct telnet_connection *connection, const char *imsi, int typ
return;
paging_request(bts, subscr, type, NULL, NULL);
- paging_update_buffer_space(bts, 100);
}
void telnet_put_channel(struct telnet_connection *connection, const char *imsi) {
@@ -230,7 +229,7 @@ void telnet_call(struct telnet_connection *connection, const char* imsi,
return;
/* TODO: add the origin */
- gsm48_cc_tx_setup(lchan, NULL);
+ gsm48_cc_tx_setup(lchan, NULL, NULL);
}
void telnet_send_gsm_48(struct telnet_connection *connection) {