Minor fix for GSM HR codec negotiation: Add missing 'break'.
[lcr.git] / apppbx.h
index aea434e..068f2e5 100644 (file)
--- a/apppbx.h
+++ b/apppbx.h
@@ -219,6 +219,7 @@ class EndpointAppPBX : public EndpointApp
        void port_disable_dejitter(struct port_list *portlist, int message_type, union parameter *param);
        void port_updatebridge(struct port_list *portlist, int message_type, union parameter *param);
        void port_vootp(struct port_list *portlist, int message_type, union parameter *param);
+       void port_dov_indication(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);
@@ -234,6 +235,9 @@ class EndpointAppPBX : public EndpointApp
        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);
+       void join_dov_indication(struct port_list *portlist, int message_type, union parameter *param);
+       void join_dov_request(struct port_list *portlist, int message_type, union parameter *param);
+       void join_dov_listen(struct port_list *portlist, int message_type, union parameter *param);
 
        /* epoint */
        void new_state(int state);
@@ -319,7 +323,7 @@ class EndpointAppPBX : public EndpointApp
 
        /* facility function */
        void pick_join(char *extension);
-       int join_join_dss1(void);
+       int join_join_dss1(int invoke_id);
        int join_join_fxs(void);
        int join_3pty_dss1(void);
        int join_3pty_fxs(void);
@@ -369,9 +373,12 @@ class EndpointAppPBX : public EndpointApp
        void cryptman_timeout(int secs);
        int vootp_on(int enable);
 
-       void message_disconnect_port(struct port_list *portlist, int cause, int location, const char *display);
+       void message_disconnect_port(struct port_list *portlist, int cause, int location, const char *display, const struct param_transfer *transfer);
        void logmessage(int message_type, union parameter *param, unsigned int port_id, int dir);
        void trace_header(const char *name, int direction);
+
+       /* DOV */
+       void dov_msg_write(union parameter *param, int sent);
 };