X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=interface.h;h=f27108081a17306b9ce1214b8f37d4d083e8af34;hp=2c2ee23dedff20ecddcfaab9877cfae187b762e3;hb=34598a346419f0e661526e6208dade4aff570008;hpb=feea42c7f7f2e171c1490bd0d3af09beba629f21 diff --git a/interface.h b/interface.h index 2c2ee23..f271080 100644 --- a/interface.h +++ b/interface.h @@ -51,7 +51,16 @@ struct interface_port { int tespecial; /* special TE-mode behavior */ int l1hold; /* hold layer 1 (1=on, 0=off) */ int l2hold; /* hold layer 2 (1=force, -1=disable, 0=default) */ - int gsm; /* interface is an GSM interface */ +#ifdef WITH_GSM_BS + int gsm_bs; /* interface is an GSM BS interface */ +#endif +#ifdef WITH_GSM_MS + int gsm_ms; /* interface is an GSM MS interface */ + char gsm_ms_name[32]; /* name of ms */ +#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 */ @@ -66,6 +75,7 @@ struct interface_port { // int tout_park; int dialmax; /* maximum number of digits to dial */ char tones_dir[128]; + int nonotify; /* blocks outgoing notify messages */ }; struct interface_msn { @@ -86,7 +96,7 @@ struct interface_screen { struct interface { struct interface *next; char name[64]; /* name of interface */ - int external; /* interface used for extranl calls */ + int external; /* interface used for external calls */ int extension; /* calls are handled as extension */ int is_tones; /* generate tones */ int is_earlyb; /* bridge tones during call setup */