Added new option to interface.conf: "nonotify" to disable notify messages.
[lcr.git] / interface.h
index d80d9b2..7dce3ad 100644 (file)
@@ -8,7 +8,6 @@
 ** interface header file                                                     **
 **                                                                           **
 \*****************************************************************************/ 
-
 enum { /* interface type */
        IF_TYPE_DIRECT,
        IF_TYPE_EXTENSION,
@@ -45,10 +44,15 @@ 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                     l2hold; /* hold layer 2 (1=force, -1=disable */
+       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 */
+       unsigned int            ss5; /* set, if SS5 signalling enabled, also holds feature bits */
        int                     channel_force; /* forces channel by protocol */
        int                     nodtmf; /* disables DTMF */
        struct select_channel   *out_channel; /* list of channels to select */
@@ -61,6 +65,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 {
@@ -81,6 +88,7 @@ struct interface_screen {
 struct interface {
        struct interface        *next;
        char                    name[64]; /* name of interface */
+       int                     external; /* interface used for extranl calls */
        int                     extension; /* calls are handled as extension */
        int                     is_tones; /* generate tones */
        int                     is_earlyb; /* bridge tones during call setup */
@@ -97,11 +105,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;
 };