Implement 3PTY bridge of two 'join's.
[lcr.git] / lcrsocket.h
index e7d51c5..f52dd7e 100644 (file)
@@ -39,6 +39,7 @@ enum { /* messages */
        ADMIN_CALL_DISCONNECT,
        ADMIN_CALL_RELEASE,
        ADMIN_CALL_NOTIFY,
+       ADMIN_CALL_PROGRESS,
        ADMIN_TRACE_REQUEST,
        ADMIN_TRACE_RESPONSE,
        ADMIN_MESSAGE,
@@ -69,16 +70,21 @@ struct admin_response_interface {
        int             block;
        int             ntmode;
        int             ptp;
+       int             l1hold;
+       int             l2hold;
        int             pri;
        int             extension;
        int             use; /* number of ports that use this interface */
        int             l1link; /* down(0) or up(1) */
        int             l2link; /* down(0) or up(1) */
+       unsigned char   l2mask[16]; /* one bit for each tei */
        int             los, ais, rdi, slip_tx, slip_rx;
        int             channels;
        char            busy[256]; /* if port is idle(0) busy(1) */
        unsigned int    port[256]; /* current port */
        int             mode[256];
+       char            out_channel[256];
+       char            in_channel[256];
 };
 
 struct admin_response_remote {
@@ -89,6 +95,7 @@ struct admin_response_join {
        unsigned int    serial; /* join serial number */
        char            remote[32]; /* remote application name */
        unsigned int    partyline;
+       unsigned int    threepty;
 };
 
 struct admin_response_epoint {
@@ -127,7 +134,7 @@ struct admin_call {
        int             present; /* presentation */
        int             cause; /* cause to send */
        int             location;
-       int             notify;
+       int             notify_progress;
        int             bc_capa;
        int             bc_mode;
        int             bc_info1;
@@ -185,4 +192,5 @@ enum {
        ADMIN_STATE_CONNECT,
        ADMIN_STATE_IN_DISCONNECT,
        ADMIN_STATE_OUT_DISCONNECT,
+       ADMIN_STATE_RELEASE,
 };