X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=apppbx.h;h=e42651f273f3653cc94d405211f7a2eb1a1a585e;hp=8b4950689c3e44fe5c5c765a01b94aed62103be4;hb=3f7ef909c907a374a1760ffae0c01b49487f18d7;hpb=f851ca0d9e22673b7cc0a7c2f539c9d51b9b77f8 diff --git a/apppbx.h b/apppbx.h index 8b49506..e42651f 100644 --- a/apppbx.h +++ b/apppbx.h @@ -211,9 +211,11 @@ class EndpointAppPBX : public EndpointApp void port_notify(struct port_list *portlist, int message_type, union parameter *param); void port_progress(struct port_list *portlist, int message_type, union parameter *param); void port_facility(struct port_list *portlist, int message_type, union parameter *param); + void port_3pty(struct port_list *portlist, int message_type, union parameter *param); void port_suspend(struct port_list *portlist, int message_type, union parameter *param); void port_resume(struct port_list *portlist, int message_type, union parameter *param); void port_enablekeypad(struct port_list *portlist, int message_type, union parameter *param); + void port_disable_dejitter(struct port_list *portlist, int message_type, union parameter *param); void ea_message_join(unsigned int join_id, int message, union parameter *param); void join_crypt(struct port_list *portlist, int message_type, union parameter *param); void join_mISDNsignal(struct port_list *portlist, int message_type, union parameter *param); @@ -228,6 +230,7 @@ class EndpointAppPBX : public EndpointApp void join_notify(struct port_list *portlist, int message_type, union parameter *param); void join_facility(struct port_list *portlist, int message_type, union parameter *param); void join_dtmf(struct port_list *portlist, int message_type, union parameter *param); + void join_disable_dejitter(struct port_list *portlist, int message_type, union parameter *param); /* epoint */ void new_state(int state); @@ -236,8 +239,6 @@ class EndpointAppPBX : public EndpointApp void keypad_function(char digit); void set_tone(struct port_list *portlist, const char *tone); void out_setup(int cfnr); - struct mISDNport *hunt_port(char *ifname, int *channel); - struct interface *hunt_interface(char *ifname); char *apply_callerid_display(const char *id, int itype, int ntype, int present, int screen, const char *extension, const char *name); void auth(int job, int bit_num); @@ -260,13 +261,10 @@ class EndpointAppPBX : public EndpointApp struct route_param *routeparam(struct route_action *action, unsigned long long id); /* init / dialing / hangup */ - int _action_init_call(char *remote); void action_init_call(void); - void action_init_remote(void); void action_dialing_internal(void); void action_dialing_external(void); void action_dialing_h323(void); - void action_dialing_remote(void); void action_dialing_vbox_record(void); void action_init_partyline(void); void action_hangup_call(void); @@ -312,7 +310,9 @@ class EndpointAppPBX : public EndpointApp /* facility function */ void pick_join(char *extension); - void join_join(void); + int join_join(void); + int join_3pty(void); + int split_3pty(void); void encrypt_shared(void); void encrypt_keyex(void); void encrypt_off(void);