X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=interface.h;h=d9462edd2aa57def9320f544adc0b546029de21f;hp=d1bea04978c9b81154552387244ac3d31937f541;hb=863bc6421940efe897dfd6d610e1f86ed9992cf6;hpb=a12d7eee22a72f4c999535892763dde15212e89e diff --git a/interface.h b/interface.h index d1bea04..d9462ed 100644 --- a/interface.h +++ b/interface.h @@ -57,10 +57,10 @@ struct interface_port { #ifdef WITH_GSM_MS int gsm_ms; /* interface is an GSM MS interface */ char gsm_ms_name[32]; /* name of ms */ - char gsm_ms_socket[128]; /* layer1 socket name */ - char gsm_ms_service; /* see GSM_SERVICE_* */ #endif unsigned int ss5; /* set, if SS5 signalling enabled, also holds feature bits */ + int remote; /* interface is a remote app interface */ + char remote_app[32]; /* name of remote application */ int channel_force; /* forces channel by protocol */ int nodtmf; /* disables DTMF */ struct select_channel *out_channel; /* list of channels to select */ @@ -100,6 +100,7 @@ struct interface { int extension; /* calls are handled as extension */ int is_tones; /* generate tones */ int is_earlyb; /* bridge tones during call setup */ + int shutdown; /* interface will not automatically be loaded */ int hunt; /* select algorithm */ int hunt_next; /* ifport index to start hunt */ struct interface_port *ifport; /* link to interface port list */ @@ -110,6 +111,12 @@ struct interface { char pipeline[256]; /* filter pipeline */ unsigned char bf_key[56]; /* filter blowfish */ int bf_len; /* filter length of blowfish */ +#ifdef WITH_SIP + int sip; /* interface is a SIP interface */ + char sip_local_ip[16]; + char sip_remote_ip[16]; + void *sip_inst; /* sip instance */ +#endif }; struct interface_param {