You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ofono/test/hangup-call

15 lines
263 B

#!/usr/bin/python3
import sys
import dbus
bus = dbus.SystemBus()
if (len(sys.argv) < 2):
print("Usage: %s [ Call Path ]" % (sys.argv[0]))
sys.exit(1)
call = dbus.Interface(bus.get_object('org.ofono', sys.argv[1]),
'org.ofono.VoiceCall')
call.Hangup()