Browse Source

misc/examples: handle return code for ksr_route_withindlg() in kemy python example

- closes GH #1117

(cherry picked from commit d678d095858271a0282b8a824840880f9994041b)
Daniel-Constantin Mierla 8 năm trước cách đây
mục cha
commit
f9e7d9c816
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      misc/examples/kemi/kamailio-basic-kemi-python.py

+ 2 - 1
misc/examples/kemi/kamailio-basic-kemi-python.py

@@ -66,7 +66,8 @@ class kamailio:
             return 1;
 
         # handle requests within SIP dialogs
-        self.ksr_route_withindlg(msg);
+        if self.ksr_route_withindlg(msg)==-255 :
+            return 1;
 
         # -- only initial requests (no To tag)