X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=interface.h;h=eea691519369e7ab26f492a68f9329d2c7a6e58e;hp=dd986ca8e53a08d688873b0bb0c277cde0bf332d;hb=3a8f58ec8946b7f1683208d1cc3b054486f12e6c;hpb=14f76f1e81f0a4e7a63e83136d1ac958bf85c8a5 diff --git a/interface.h b/interface.h index dd986ca..eea6915 100644 --- a/interface.h +++ b/interface.h @@ -8,10 +8,6 @@ ** interface header file ** ** ** \*****************************************************************************/ - -#define FLAG_PORT_USE 1 -#define FLAG_PORT_PTP (1<<1) - enum { /* interface type */ IF_TYPE_DIRECT, IF_TYPE_EXTENSION, @@ -48,9 +44,25 @@ struct interface_port { struct interface *interface; /* link to interface */ struct mISDNport *mISDNport; /* link to port */ int portnum; /* port number */ + char portname[64]; /* alternately: port name */ int ptp; /* force load stack in PTP mode */ int ptmp; /* force load stack in PTP mode */ int nt; /* load stack in NT-mode */ + 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) */ +#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 */ + 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 */ @@ -63,6 +75,9 @@ struct interface_port { int tout_disconnect; // int tout_hold; // int tout_park; + int dialmax; /* maximum number of digits to dial */ + char tones_dir[128]; + int nonotify; /* blocks outgoing notify messages */ }; struct interface_msn { @@ -83,6 +98,7 @@ struct interface_screen { struct interface { struct interface *next; char name[64]; /* name of interface */ + 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 */ @@ -99,11 +115,11 @@ struct interface { }; struct interface_param { - char *name; + const char *name; /* return value (pointer of function)(args ...) */ int (*func)(struct interface *, char *, int, char *, char*); - char *usage; - char *help; + const char *usage; + const char *help; };