* introduce a callback function when paging completes (I know this is somewhat of an overlap
  with the signals, but I think paging always has one reason and thus one caller wants to
  get notified about completion, including a caller-specific context, etc)
* introduce TLV parser definitions for GSM 04.08
* parse and generate BCD number IE's for 04.08 call control

diff --git a/src/telnet_interface.c b/src/telnet_interface.c
index e889e74..25f67a6 100644
--- a/src/telnet_interface.c
+++ b/src/telnet_interface.c
@@ -188,7 +188,7 @@
 	if (!subscr)
 		return;
 
-	paging_request(bts, subscr, type);	
+	paging_request(bts, subscr, type, NULL, NULL);	
 	paging_update_buffer_space(bts, 100);
 }
 
@@ -230,7 +230,7 @@
 		return;
 
 	/* TODO: add the origin */
-	gsm48_cc_tx_setup(lchan);
+	gsm48_cc_tx_setup(lchan, NULL);
 }
 
 void telnet_send_gsm_48(struct telnet_connection *connection) {