mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-05 01:54:22 +08:00
ee56337e41
This patch makes the python tests source-compatible with python 3, while leaving the interpreter at python 2 for now. The tradeoff is that this source is no longer compatible with python versions < 2.6, and requires gobject-introspection for the glib-based tests.
51 lines
1009 B
Python
Executable File
51 lines
1009 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
import sys
|
|
import time
|
|
import dbus
|
|
from optparse import OptionParser, make_option
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
manager = dbus.Interface(bus.get_object("org.bluez", "/"),
|
|
"org.bluez.Manager")
|
|
|
|
option_list = [
|
|
make_option("-i", "--device", action="store",
|
|
type="string", dest="dev_id"),
|
|
]
|
|
parser = OptionParser(option_list=option_list)
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
if options.dev_id:
|
|
adapter_path = manager.FindAdapter(options.dev_id)
|
|
else:
|
|
adapter_path = manager.DefaultAdapter()
|
|
|
|
server = dbus.Interface(bus.get_object("org.bluez", adapter_path),
|
|
"org.bluez.NetworkServer")
|
|
|
|
service = "nap"
|
|
|
|
if (len(args) < 1):
|
|
bridge = "tether"
|
|
else:
|
|
bridge = args[0]
|
|
|
|
server.Register(service, bridge)
|
|
|
|
print("Server for %s registered for %s" % (service, bridge))
|
|
|
|
print("Press CTRL-C to disconnect")
|
|
|
|
try:
|
|
time.sleep(1000)
|
|
print("Terminating connection")
|
|
except:
|
|
pass
|
|
|
|
server.Unregister(service)
|