Module: sip-router Branch: master Commit: 93c39f86ce0cd337212579bd7bd1e58cabed79ca URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=93c39f86...
Author: Carsten Bock carsten@ng-voice.com Committer: Carsten Bock carsten@ng-voice.com Date: Wed Aug 7 01:20:43 2013 +0200
Fix previous commit (forgot this file)
---
modules/dialog_ng/dlg_load.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/modules/dialog_ng/dlg_load.h b/modules/dialog_ng/dlg_load.h index dc8407e..5f9c8a1 100644 --- a/modules/dialog_ng/dlg_load.h +++ b/modules/dialog_ng/dlg_load.h @@ -35,6 +35,8 @@ /* terminate_dlg function prototype */ typedef int (*terminate_dlg_f)(str *callid, str *ftag, str *ttag, str *hdrs, str *reason);
+typedef int (*lookup_terminate_dlg_f)(unsigned int h_entry, unsigned int h_id, str *hdrs); + /* get the current dialog based on message function prototype */ typedef struct dlg_cell *(*get_dlg_f)(struct sip_msg *msg);
@@ -45,6 +47,7 @@ struct dlg_binds { register_dlgcb_f register_dlgcb; register_dlgcb_nodlg_f register_dlgcb_nodlg; terminate_dlg_f terminate_dlg; + lookup_terminate_dlg_f lookup_terminate_dlg; set_dlg_variable_f set_dlg_var; get_dlg_variable_f get_dlg_var; get_dlg_expires_f get_dlg_expires;