summaryrefslogtreecommitdiff
path: root/test/get-obex-capabilities
blob: e8afbad21866b2d53a184838c5ef6bf40799a42d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python

import sys
import dbus

bus = dbus.SessionBus()
client = dbus.Interface(bus.get_object("org.bluez.obex", "/org/bluez/obex"),
					"org.bluez.obex.Client")

if (len(sys.argv) < 3):
	print "Usage: %s <device> <target>" % (sys.argv[0])
	sys.exit(1)

print "Creating Session"
session_path = client.CreateSession(sys.argv[1], { "Target": sys.argv[2] })
session = dbus.Interface(bus.get_object("org.bluez.obex", session_path),
					"org.bluez.obex.Session")

print session.GetCapabilities()