소스 검색

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 년 전
부모
커밋
f9e7d9c816
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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)