dnsproxy: Only one copy of the relevant buffers will be made to a TCP request
[framework/connectivity/connman.git] / test / get-state
1 #!/usr/bin/python
2
3 import dbus
4
5 bus = dbus.SystemBus()
6
7 manager = dbus.Interface(bus.get_object('net.connman', "/"),
8                                         'net.connman.Manager')
9
10 properties = manager.GetProperties()
11
12 print "System is %s" % (properties["State"])