Ver código fonte

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 anos atrás
pai
commit
f9e7d9c816
1 arquivos alterados com 2 adições e 1 exclusões
  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)