Ports can now be specified by number or by name.
[lcr.git] / lcrsocket.h
index a34820d..e7d51c5 100644 (file)
@@ -9,7 +9,7 @@
 **                                                                           **
 \*****************************************************************************/
 
-#define SOCKET_NAME "/var/run/LCR.socket"
+#define SOCKET_NAME "%s/LCR.socket"
 
 /* structures that define message between admin-tool and pbx */
 
@@ -65,6 +65,7 @@ struct admin_response_state {
 struct admin_response_interface {
        char            interface_name[32];
        int             portnum;
+       char            portname[64];
        int             block;
        int             ntmode;
        int             ptp;
@@ -73,9 +74,11 @@ struct admin_response_interface {
        int             use; /* number of ports that use this interface */
        int             l1link; /* down(0) or up(1) */
        int             l2link; /* down(0) or up(1) */
+       int             los, ais, rdi, slip_tx, slip_rx;
        int             channels;
        char            busy[256]; /* if port is idle(0) busy(1) */
-       unsigned long   port[256]; /* current port */
+       unsigned int    port[256]; /* current port */
+       int             mode[256];
 };
 
 struct admin_response_remote {
@@ -83,14 +86,14 @@ struct admin_response_remote {
 };
 
 struct admin_response_join {
-       unsigned long   serial; /* join serial number */
+       unsigned int    serial; /* join serial number */
        char            remote[32]; /* remote application name */
-       unsigned long   partyline;
+       unsigned int    partyline;
 };
 
 struct admin_response_epoint {
-       unsigned long   serial;
-       unsigned long   join; /* link to join */
+       unsigned int    serial;
+       unsigned int    join; /* link to join */
 //     int             join_notify; /* if relation notified on hold */
 //     int             join_hold; /* if relation on hold */
        int             rx_state;
@@ -107,9 +110,9 @@ struct admin_response_epoint {
 };
 
 struct admin_response_port {
-       unsigned long   serial; /* port serial number */
+       unsigned int    serial; /* port serial number */
        char            name[64]; /* name of port */
-       unsigned long   epoint; /* link to epoint */
+       unsigned int    epoint; /* link to epoint */
        int             state;
        int             isdn; /* if port is isdn */
        int             isdn_chan; /* bchannel number */
@@ -147,7 +150,7 @@ struct admin_trace_rsp {
 
 struct admin_msg {
        int             type; /* type of message */
-       unsigned long   ref; /* reference to individual endpoints */
+       unsigned int    ref; /* reference to individual endpoints */
        union parameter param; /* parameter union */
 };