Added bridgin support for GSM and SIP
[lcr.git] / gsm_ms.h
index f3b5e5d..82202f5 100644 (file)
--- a/gsm_ms.h
+++ b/gsm_ms.h
@@ -1,24 +1,29 @@
-extern "C" {
-#include <osmocom/osmocom_data.h>
-#include <osmocom/mncc.h>
-}
 
 /* GSM port class */
 class Pgsm_ms : public Pgsm
 {
        public:
-       Pgsm_ms(int type, struct mISDNport *mISDNport, char *portname, struct port_settings *settings, int channel, int exclusive, int mode);
+       Pgsm_ms(int type, char *portname, struct port_settings *settings, struct interface *interface);
        ~Pgsm_ms();
 
+       char p_g_ms_name[32];
+       int p_g_dtmf_state;
+       int p_g_dtmf_index;
+       char p_g_dtmf[128];
+       struct lcr_timer p_g_dtmf_timer;
+       void dtmf_statemachine(struct gsm_mncc *mncc);
+
        void setup_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc);
        void message_setup(unsigned int epoint_id, int message_id, union parameter *param);
+       void message_dtmf(unsigned int epoint_id, int message_id, union parameter *param);
+       void message_information(unsigned int epoint_id, int message_id, union parameter *param);
        int message_epoint(unsigned int epoint_id, int message_id, union parameter *param);
 };
 
-int handle_gsm_ms(void);
 int gsm_ms_conf(struct gsm_conf *gsm_conf, char *conf_error);
 int gsm_ms_exit(int rc);
 int gsm_ms_init(void);
-int gsm_ms_new(const char *name, const char *socket_path);
+int gsm_ms_new(struct interface *interface);
 int gsm_ms_delete(const char *name);
+int message_ms(struct lcr_gsm *lcr_gsm, int msg_type, void *arg);