X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=mISDN.h;h=6c704f46a5504e06d912e6b8f3a966ea4d46339d;hp=0803698d00ce7a9bea0f36b46b5c13747db9dc3a;hb=5566f74eb29be75da44e29ba72ee6f015249ce61;hpb=f6aea744f84e702b3469393f007b9e1bf25f6737 diff --git a/mISDN.h b/mISDN.h index 0803698..6c704f4 100644 --- a/mISDN.h +++ b/mISDN.h @@ -45,6 +45,8 @@ struct mISDNport { int ntmode; /* is TRUE if port is NT mode */ int tespecial; /* is TRUE if port uses special TE mode */ int pri; /* is TRUE if port is a primary rate interface */ + int pots; /* is TRUE if port is of type POTS */ + struct lcr_fd pots_sock; /* socket for L1 */ int tones; /* TRUE if tones are sent outside connect state */ int earlyb; /* TRUE if tones are received outside connect state */ int b_num; /* number of bchannels */ @@ -100,16 +102,19 @@ void bchannel_event(struct mISDNport *mISDNport, int i, int event); class PmISDN : public Port { public: - PmISDN(int type, struct mISDNport *mISDNport, char *portname, struct port_settings *settings, int channel, int exclusive, int mode); + PmISDN(int type, struct mISDNport *mISDNport, char *portname, struct port_settings *settings, struct interface *interface, int channel, int exclusive, int mode); ~PmISDN(); void bchannel_receive(struct mISDNhead *hh, unsigned char *data, int len); void transmit(unsigned char *buffer, int length); int message_epoint(unsigned int epoint_id, int message, union parameter *param); void message_mISDNsignal(unsigned int epoint_id, int message_id, union parameter *param); void message_crypt(unsigned int epoint_id, int message_id, union parameter *param); + void message_vootp(unsigned int epoint_id, int message_id, union parameter *param); struct mISDNport *p_m_mISDNport; /* pointer to port */ int p_m_delay; /* use delay instead of dejitter */ int p_m_tx_dejitter; /* use dejitter on transmit data to DSP */ + int p_m_disable_dejitter; /* usefull to send fax via bridge */ + int p_m_preload; /* set to ISDN_LOAD, but may be changed later */ int p_m_tx_gain, p_m_rx_gain; /* volume shift (0 = no change) */ char p_m_pipeline[256]; /* filter pipeline */ int p_m_echo, p_m_conf; /* remote echo, conference number */ @@ -118,6 +123,7 @@ class PmISDN : public Port int p_m_rxoff; /* rx from driver is disabled */ int p_m_txdata; /* get what we transmit */ int p_m_dtmf; /* dtmf decoding is enabled */ + int p_m_dtmf_threshold; /* dtmf level threshold */ int bridge_rx(unsigned char *data, int len);