|
@@ -261,7 +261,8 @@ class InboundClient:
|
|
if _con.connected():
|
|
if _con.connected():
|
|
arg = ''.join([EslEventUtil.SIP_H_P_LIBRA_HANGUP_CAUSE, "=", case_enum.description])
|
|
arg = ''.join([EslEventUtil.SIP_H_P_LIBRA_HANGUP_CAUSE, "=", case_enum.description])
|
|
self.send_args(device_id, SET, arg, con=_con)
|
|
self.send_args(device_id, SET, arg, con=_con)
|
|
- e = _con.sendEvent(msg)
|
|
|
|
|
|
+ e = _con.sendMSG(msg)
|
|
|
|
+ # e = _con.api(UUID_KILL, device_id)
|
|
self.logger.info("hangup_call挂机 hangup call: %s, device: %s, arg: %s, res:%s" % (call_id, device_id, arg, e.serialize('json')))
|
|
self.logger.info("hangup_call挂机 hangup call: %s, device: %s, arg: %s, res:%s" % (call_id, device_id, arg, e.serialize('json')))
|
|
except:
|
|
except:
|
|
traceback.print_exc()
|
|
traceback.print_exc()
|
|
@@ -269,6 +270,12 @@ class InboundClient:
|
|
if _con:
|
|
if _con:
|
|
_con.disconnect()
|
|
_con.disconnect()
|
|
|
|
|
|
|
|
+ def kill_call(self, call_id, device_id):
|
|
|
|
+ if not device_id:
|
|
|
|
+ return
|
|
|
|
+ self.logger.info("kill_call:%s, device:%s", call_id, device_id)
|
|
|
|
+ self.bgapi(UUID_KILL, device_id, desc="kill_call")
|
|
|
|
+
|
|
def broadcast(self, uuid, path, smf):
|
|
def broadcast(self, uuid, path, smf):
|
|
builder = [
|
|
builder = [
|
|
UUID_BROADCAST,
|
|
UUID_BROADCAST,
|