summaryrefslogtreecommitdiff
path: root/doc/overview-api.txt
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-11-26 10:57:42 +0100
committerMarcel Holtmann <marcel@holtmann.org>2010-11-26 10:57:42 +0100
commit4c10a569c112ffb3a646bc0e5353d190fef58e22 (patch)
treefd74c1177e94fd9a9692332c9ace4f4e39b6493b /doc/overview-api.txt
parentabe0a8232bb8c92883bd4328becdbf60b7d54e55 (diff)
downloadconnman-4c10a569c112ffb3a646bc0e5353d190fef58e22.tar.gz
connman-4c10a569c112ffb3a646bc0e5353d190fef58e22.tar.bz2
connman-4c10a569c112ffb3a646bc0e5353d190fef58e22.zip
Change service name from org.moblin.connman to net.connman
Diffstat (limited to 'doc/overview-api.txt')
-rw-r--r--doc/overview-api.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/overview-api.txt b/doc/overview-api.txt
index b83e89a1..926f9ebe 100644
--- a/doc/overview-api.txt
+++ b/doc/overview-api.txt
@@ -335,8 +335,8 @@ A simple way to retrieve all global properties looks like this:
bus = dbus.SystemBus()
- manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
- "org.moblin.connman.Manager")
+ manager = dbus.Interface(bus.get_object("net.connman", "/"),
+ "net.connman.Manager")
properties = manager.GetProperties()
@@ -366,8 +366,8 @@ are the exact details users should care about.
properties = manager.GetProperties()
for path in properties["Services"]:
- service = dbus.Interface(bus.get_object("org.moblin.connman", path),
- "org.moblin.connman.Service")
+ service = dbus.Interface(bus.get_object("net.connman", path),
+ "net.connman.Service")
service_properties = service.GetProperties()