X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=message.h;h=1abab34365367219e950fea5adb51cb12c5dceb4;hp=d60c1b3753bc1e7e9f21a692249b05c320cfe1f9;hb=14f76f1e81f0a4e7a63e83136d1ac958bf85c8a5;hpb=0a0643e3a561de5f34927ea80c2bd0ce6405fd3c diff --git a/message.h b/message.h index d60c1b3..1abab34 100644 --- a/message.h +++ b/message.h @@ -9,6 +9,8 @@ ** ** \*****************************************************************************/ +#define ISDN_TRANSMIT 256 // samples + enum { /* interface types */ INFO_ITYPE_ISDN, INFO_ITYPE_ISDN_EXTENSION, /* call from internal extension */ @@ -125,6 +127,33 @@ enum { /* isdnsignal */ mISDNSIGNAL_DELAY, /* use delay or adaptive jitter */ }; +enum { /* bchannel assignment */ + BCHANNEL_REQUEST, /* application requests bchannel */ + BCHANNEL_ASSIGN, /* bchannel assigned by LCR */ + BCHANNEL_ASSIGN_ACK, /* application acknowledges */ + BCHANNEL_REMOVE, /* bchannel removed by LCR */ + BCHANNEL_REMOVE_ACK, /* application acknowledges */ +}; +enum { + B_STATE_IDLE, /* not open */ + B_STATE_ACTIVATING, /* DL_ESTABLISH sent */ + B_STATE_ACTIVE, /* channel active */ + B_STATE_DEACTIVATING, /* DL_RELEASE sent */ + B_STATE_EXPORTING, /* BCHANNEL_ASSIGN sent */ + B_STATE_REMOTE, /* bchannel assigned to remote application */ + B_STATE_IMPORTING, /* BCHANNEL_REMOVE sent */ +}; +enum { + B_EVENT_USE, /* activate/export bchannel */ + B_EVENT_EXPORTREQUEST, /* remote app requests bchannel */ + B_EVENT_ACTIVATED, /* DL_ESTABLISH received */ + B_EVENT_DROP, /* deactivate/re-import bchannel */ + B_EVENT_DEACTIVATED, /* DL_RELEASE received */ + B_EVENT_EXPORTED, /* BCHANNEL_ASSIGN received */ + B_EVENT_IMPORTED, /* BCHANNEL_REMOVE received */ +}; + + /* call-info structure CALLER */ struct caller_info { char id[32]; /* id of caller (user number) */ @@ -222,6 +251,7 @@ struct message_setup { int port_type; /* type of port (only required if message is port -> epoint) */ int dtmf; /* used to enabled dtmf dialing at setup state */ int partyline; /* if set, call will be a conference room */ + int partyline_jingle; /* if set, the jingle will be played on conference join */ struct caller_info callerinfo; /* information about the caller */ struct dialing_info dialinginfo; /* information about dialing */ struct redir_info redirinfo; /* info on redirection (to the calling user) */ @@ -237,7 +267,7 @@ struct park_info { /* DATA */ struct param_data { - unsigned char data[512]; /* audio/hdlc data */ + unsigned char data[ISDN_TRANSMIT]; /* audio/hdlc data */ int len; /* audio/hdlc data */ }; @@ -258,8 +288,8 @@ struct param_counter { struct param_mISDNsignal { int message; - int rxvol; - int txvol; + int tx_gain; + int rx_gain; int conf; int joindata; int tone; @@ -279,7 +309,13 @@ struct param_hello { }; struct param_bchannel { - unsigned long addr; /* bchannel stack address */ + int type; /* BCHANNEL_* */ + unsigned long handle; /* bchannel stack/portid */ + int tx_gain, rx_gain; + char pipeline[256]; + unsigned char crypt[128]; + int crypt_len; + int crypt_type; /* 1 = blowfish */ }; /* structure of message parameter */ @@ -305,6 +341,7 @@ union parameter { struct param_crypt crypt; /* MESSAGE_CRYPT */ struct param_hello hello; /* MESSAGE_HELLO */ struct param_bchannel bchannel; /* MESSAGE_BCHANNEL */ + int direction; /* MESSAGE_NEWREF */ }; enum { /* message flow */ @@ -330,7 +367,6 @@ enum { /* messages between entities */ MESSAGE_TONE, /* set information tone (to isdn port) */ MESSAGE_DTMF, /* dtmf digit (from isdn port) */ MESSAGE_mISDNSIGNAL, /* special mixer command (down to isdn port) */ - MESSAGE_SETUP, /* setup message */ MESSAGE_INFORMATION, /* additional digit information */ MESSAGE_OVERLAP, /* call accepted, send more information */ @@ -342,25 +378,20 @@ enum { /* messages between entities */ MESSAGE_TIMEOUT, /* protocol state has timed out (port->epoint) */ MESSAGE_NOTIFY, /* used to send progress and notify infos */ MESSAGE_FACILITY, /* used to facility infos, like aocd */ - MESSAGE_SUSPEND, /* suspend port */ MESSAGE_RESUME, /* resume port */ - MESSAGE_AUDIOPATH, /* set status of audio path to endpoint (to call, audio is also set) */ // MESSAGE_REMOTE_AUDIO, /* tell remote to set audio status */ MESSAGE_PATTERN, /* pattern information tones available */ MESSAGE_NOPATTERN, /* pattern information tones unavailable */ MESSAGE_CRYPT, /* encryption message */ - MESSAGE_DATA, /* audio/hdlc data */ - MESSAGE_VBOX_PLAY, /* play recorded file */ MESSAGE_VBOX_PLAY_SPEED,/* change speed of file */ MESSAGE_VBOX_TONE, /* set answering VBOX tone */ MESSAGE_TONE_COUNTER, /* tone counter (for VBOX tone use) */ MESSAGE_TONE_EOF, /* tone is end of file */ - MESSAGE_BCHANNEL, /* request/assign bchannel */ - MESSAGE_BCHANNEL_FREE, /* requests/assigns bchannel to be free */ + MESSAGE_BCHANNEL, /* request/assign/remove bchannel */ MESSAGE_HELLO, /* hello message for remote application */ MESSAGE_NEWREF, /* special message to create and inform ref */ };