X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=interface.h;h=040c412166b7f5466a827c9367cd6a67fcd2976a;hp=1f9b4b0815f38a7a11bab03b7b283f94ebccf0fc;hb=79bd731c0db3e3202cfeed2af3fb217ae744b70f;hpb=4b85a2abcd708ad8d0e02dca9913db7bd6ab4fed diff --git a/interface.h b/interface.h index 1f9b4b0..040c412 100644 --- a/interface.h +++ b/interface.h @@ -66,7 +66,6 @@ struct interface_port { // int tout_hold; // int tout_park; int dialmax; /* maximum number of digits to dial */ - char tones_dir[128]; int nonotify; /* blocks outgoing notify messages */ int pots_flash; /* allow flash button / keypulse to hold active call */ int pots_ring; /* after hangup let calls on hold ring the phone */ @@ -105,6 +104,7 @@ struct interface { struct interface_screen *ifscreen_in; /* link to screening list */ struct interface_screen *ifscreen_out; /* link to screening list */ int tx_gain, rx_gain; /* filter gain */ + char tones_dir[128]; char pipeline[256]; /* filter pipeline */ unsigned char bf_key[56]; /* filter blowfish */ int bf_len; /* filter length of blowfish */ @@ -113,6 +113,8 @@ struct interface { char remote_context[128]; /* context feld to use for remote application */ #ifdef WITH_GSM_BS int gsm_bs; /* interface is an GSM BS interface */ + char gsm_bs_name[32]; /* name of bs */ + int gsm_bs_hr; /* prefer half rate for MOT calls */ #if 0 int gsm_bs_payloads; unsigned char gsm_bs_payload_types[8]; @@ -124,9 +126,23 @@ struct interface { #endif #ifdef WITH_SIP int sip; /* interface is a SIP interface */ - char sip_local_peer[32]; - char sip_remote_peer[32]; + char sip_local_peer[128]; + char sip_remote_peer[128]; + char sip_asserted_id[128]; + char sip_auth_user[128]; + char sip_auth_password[128]; + char sip_auth_realm[128]; + int sip_register; + char sip_register_user[128]; + char sip_register_host[128]; + int sip_register_interval; /* interval to register */ + int sip_options_interval; /* timer to keepalive invite/register transactions */ + char sip_public_ip[128]; + char sip_stun_server[128]; + int sip_stun_interval; /* timer to check own IP address */ void *sip_inst; /* sip instance */ + unsigned short rtp_port_from; + unsigned short rtp_port_to; #endif int rtp_bridge; /* bridge RTP directly (for calls comming from interface) */ };