framework/connectivity/connman.git
13 years agoFix ConnMan crash while disable wifi device
Mohamed Abbas [Wed, 22 Sep 2010 10:25:09 +0000 (12:25 +0200)]
Fix ConnMan crash while disable wifi device

When calling unregister_network() ConnMan sets the network->device pointer
to NULL. That is fine with ESSIDs formed by 1 AP. Otherwise, the eventual
call to __connman_device_decrease_connections() leads to a crash as the
device pointer is NULL.

Fixes BMC #6772

13 years agoAdd statistics ring buffer analyze tool
Daniel Wagner [Wed, 22 Sep 2010 10:11:06 +0000 (12:11 +0200)]
Add statistics ring buffer analyze tool

This tool prints the statistic ring buffer.

13 years agoStore stats information into separate files
Daniel Wagner [Tue, 21 Sep 2010 11:33:42 +0000 (13:33 +0200)]
Store stats information into separate files

Currently the statistic information is stored into the profile file.
This results in rewriting the whole file if connann_stats_save is
called. This results in too many disk I/Os for low power devices.

Furthermore, only the current value is stored. There is no way to
find out how many bytes have been transfered in the last month.

First, each service statistic is stored into a separate files under
/var/lib/connman having a *.data extension. This file contains fixed
sized records of stats counters and will be mmap into memory. It is
used like a ring buffer.

If the buffer is full or after a certain period (e.g. a month), the
raw data will be summerized into the *.info file.
Currently the summary is not implented yet. This will be implemented
in the next round of patches.

13 years agoDon't bother setting 127.0.0.1 as nameserver
Marcel Holtmann [Wed, 22 Sep 2010 04:14:39 +0000 (13:14 +0900)]
Don't bother setting 127.0.0.1 as nameserver

13 years agoRead nameservers from /etc/resolv.conf if none are specified
Marcel Holtmann [Wed, 22 Sep 2010 04:13:37 +0000 (13:13 +0900)]
Read nameservers from /etc/resolv.conf if none are specified

13 years agoAdd support for setting proxy configuration method
Marcel Holtmann [Wed, 22 Sep 2010 03:48:28 +0000 (12:48 +0900)]
Add support for setting proxy configuration method

13 years agoAdd method, domainname and nameserver to proxy configuration
Marcel Holtmann [Wed, 22 Sep 2010 01:46:19 +0000 (10:46 +0900)]
Add method, domainname and nameserver to proxy configuration

13 years agoExport service functions for retrieving domainname and nameserver
Marcel Holtmann [Wed, 22 Sep 2010 00:47:54 +0000 (09:47 +0900)]
Export service functions for retrieving domainname and nameserver

13 years agoFix breakage of make distcheck
Marcel Holtmann [Tue, 21 Sep 2010 23:24:16 +0000 (08:24 +0900)]
Fix breakage of make distcheck

13 years agoCall remove_network() on unsolicited disconnect
Lucio Maciel [Tue, 21 Sep 2010 15:20:40 +0000 (17:20 +0200)]
Call remove_network() on unsolicited disconnect

When receiving an unsolicited disconnect (turn-off the AP)
wpa_supplicant starts scanning every 5 seconds looking for the
previously connected ssid.

This causes the grow of the network list since connman will
not remove the unavailable networks if it is not the initiator of
the scan.

13 years agoRemove RequestPassphrase functionality from Agent API
Patrik Flykt [Tue, 21 Sep 2010 07:07:51 +0000 (10:07 +0300)]
Remove RequestPassphrase functionality from Agent API

Remove the obsolete __connman_agent_request_passphrase function as the
RequestPassphrase method call has been replaced with RequestInput.

13 years agoUse RequestInput method call when requesting passphrases
Patrik Flykt [Tue, 21 Sep 2010 07:07:50 +0000 (10:07 +0300)]
Use RequestInput method call when requesting passphrases

Change password query to use RequestInput method call instead of
RequestPassphrase. The supplied passphrase_cb_t function sets the password
returned via Agent API and tries to reconnect to the service.

13 years agoAgent API RequestInput method for requesting passphrases
Patrik Flykt [Tue, 21 Sep 2010 07:07:49 +0000 (10:07 +0300)]
Agent API RequestInput method for requesting passphrases

request_input_passphrase_reply creates and sends an Agent API RequestInput
method call and waits for the method call return. The function expects a
passhphrase_cb_t to be supplied. Only the "Passphrase" dictionary field is
requested by the method call and only the "Passphrase" dictionary field in
the method call return is used.

13 years agoAdd connman_service_set_passphrase helper function
Patrik Flykt [Tue, 21 Sep 2010 07:07:48 +0000 (10:07 +0300)]
Add connman_service_set_passphrase helper function

Create helper function for setting a service passphrase by factoring out
the code from set_property.

13 years agoUse proper definition for finding device structure
Marcel Holtmann [Tue, 21 Sep 2010 14:43:37 +0000 (23:43 +0900)]
Use proper definition for finding device structure

13 years agoUse __connman_device_get_service_type for getting service type
Marcel Holtmann [Tue, 21 Sep 2010 14:38:53 +0000 (23:38 +0900)]
Use __connman_device_get_service_type for getting service type

13 years agoAdd basic DNS resolving for HTTP operation
Marcel Holtmann [Tue, 21 Sep 2010 14:33:01 +0000 (23:33 +0900)]
Add basic DNS resolving for HTTP operation

13 years agoSimplify linker script
Lucas De Marchi [Tue, 21 Sep 2010 12:47:35 +0000 (09:47 -0300)]
Simplify linker script

Version linker scripts support function names and globs, so there's no
need to rely on nm tool to gather the exported symbols.

13 years agoUse DBUS_CONFDIR variable instead of DBUS_DATADIR
Marcel Holtmann [Tue, 21 Sep 2010 10:11:52 +0000 (19:11 +0900)]
Use DBUS_CONFDIR variable instead of DBUS_DATADIR

13 years agoUse struct connman_stats_data
Daniel Wagner [Mon, 20 Sep 2010 14:45:25 +0000 (16:45 +0200)]
Use struct connman_stats_data

Instead of defining all the counters everwhere use
the connman_stats_data struct. This simplifies the
code later for storing and loading the counters
from the storage backend.

13 years agoHandle several counters simultaniously
Daniel Wagner [Mon, 20 Sep 2010 14:45:24 +0000 (16:45 +0200)]
Handle several counters simultaniously

The current implementation does not handle multiple
counters at the same time correctly. Only the first
counter gets the updates, all others just an empty
dictionary.

For each Counter object the counters have to be
maintained separately.

13 years agoAdd interface string to proxy configuration
Marcel Holtmann [Tue, 21 Sep 2010 04:57:46 +0000 (13:57 +0900)]
Add interface string to proxy configuration

13 years agoBump wifi_legacy plugin's priority
Samuel Ortiz [Mon, 20 Sep 2010 16:23:00 +0000 (18:23 +0200)]
Bump wifi_legacy plugin's priority

The legacy wifi plugin is the default one.

13 years agoDo not register 2 network drivers for the same network type
Samuel Ortiz [Mon, 20 Sep 2010 16:21:51 +0000 (18:21 +0200)]
Do not register 2 network drivers for the same network type

13 years agoImprove GSupplicant debug
Samuel Ortiz [Mon, 20 Sep 2010 14:28:42 +0000 (16:28 +0200)]
Improve GSupplicant debug

13 years agoRemove last ConnMan dependency for GSupplicant
Samuel Ortiz [Mon, 20 Sep 2010 14:07:42 +0000 (16:07 +0200)]
Remove last ConnMan dependency for GSupplicant

This is achieved through the addition of a debug callback.

13 years agoWPA-EAP support for GSupplicant
Samuel Ortiz [Thu, 16 Sep 2010 14:43:27 +0000 (16:43 +0200)]
WPA-EAP support for GSupplicant

13 years agoWEP and WPA-PSK support for GSupplicant
Samuel Ortiz [Thu, 16 Sep 2010 10:34:48 +0000 (12:34 +0200)]
WEP and WPA-PSK support for GSupplicant

13 years agoPrioritize wifi plugins
Samuel Ortiz [Wed, 15 Sep 2010 15:42:06 +0000 (17:42 +0200)]
Prioritize wifi plugins

The legacy one as the default wifi plugin.

13 years agoMove current wifi plugin to legacy
Samuel Ortiz [Wed, 15 Sep 2010 22:21:23 +0000 (00:21 +0200)]
Move current wifi plugin to legacy

The current wifi plugin is replaced by the new API one and is renamed to
wifi-legacy.c.

13 years agoGet device interface through the get_string() routine
Samuel Ortiz [Wed, 15 Sep 2010 13:33:43 +0000 (15:33 +0200)]
Get device interface through the get_string() routine

13 years agoGSupplicant intial commit
Samuel Ortiz [Wed, 15 Sep 2010 21:42:16 +0000 (23:42 +0200)]
GSupplicant intial commit

13 years agoAdd support for PAC runner configuration updates
Marcel Holtmann [Mon, 20 Sep 2010 01:02:47 +0000 (10:02 +0900)]
Add support for PAC runner configuration updates

13 years agoAdd support for retrieving proxy auto configuration URL
Marcel Holtmann [Mon, 20 Sep 2010 00:59:27 +0000 (09:59 +0900)]
Add support for retrieving proxy auto configuration URL

13 years agoIgnore Bluetooth adapter if its address is 00:00:00:00:00:00
Martin Xu [Sun, 19 Sep 2010 08:31:01 +0000 (16:31 +0800)]
Ignore Bluetooth adapter if its address is 00:00:00:00:00:00

13 years agoAdd skeleton for PAC runner support
Marcel Holtmann [Sun, 19 Sep 2010 06:32:15 +0000 (15:32 +0900)]
Add skeleton for PAC runner support

13 years agoUpdate config-format.txt with Name vs SSID explanations
Samuel Ortiz [Thu, 16 Sep 2010 23:16:58 +0000 (01:16 +0200)]
Update config-format.txt with Name vs SSID explanations

13 years agoAdd __connman_service_get_security function
Patrik Flykt [Fri, 17 Sep 2010 10:15:23 +0000 (13:15 +0300)]
Add __connman_service_get_security function

Add helper function to access the security enum attribute of a service.

13 years agoMention Pekka's contributions
Samuel Ortiz [Thu, 16 Sep 2010 10:56:13 +0000 (12:56 +0200)]
Mention Pekka's contributions

13 years agoMention Fabien's contributions
Samuel Ortiz [Thu, 16 Sep 2010 10:55:09 +0000 (12:55 +0200)]
Mention Fabien's contributions

13 years agoFix a crash when doing PEAP/TTLS authentication
Fabien Marotte [Thu, 16 Sep 2010 07:52:43 +0000 (09:52 +0200)]
Fix a crash when doing PEAP/TTLS authentication

When doing a PEAP/TTLS authentication, if the Phase2 passphrase is
not provided, connman crashes due to a NULL pointer.
This patch fixes the crash.

Fixes BMC #6841

13 years agoAdd messages in supplicant plugin
Fabien Marotte [Wed, 15 Sep 2010 09:51:12 +0000 (11:51 +0200)]
Add messages in supplicant plugin

This patch adds error and info messages in case connman detects
missing parameters when doing a TLS or a PEAP/TTLS authentication.

13 years agoAdd verification of the .config file parameters
Fabien Marotte [Wed, 15 Sep 2010 09:51:11 +0000 (11:51 +0200)]
Add verification of the .config file parameters

Connman reads the *.config files in STORAGE_DIR during its boot but
it looks only for parameters it is interrested in.
The configuration parameters syntax is complex and it is very
simple to make a mistake without getting connman warnings. This
leads the user to think that connman understands the configuration
file although it doesn't.

This patch is the code that adds warnings to the logs if connman
reads unknown parameters from the *.config files.

13 years agoMove configuration key strings to be #define
Fabien Marotte [Wed, 15 Sep 2010 09:51:10 +0000 (11:51 +0200)]
Move configuration key strings to be #define

13 years agoelement: remove unnecessary checks
Pekka Pessi [Fri, 10 Sep 2010 12:11:34 +0000 (15:11 +0300)]
element: remove unnecessary checks

Do not check for null pointers after accessing data.

13 years agoSmall style cleanup for readability
Marcel Holtmann [Mon, 13 Sep 2010 22:42:34 +0000 (07:42 +0900)]
Small style cleanup for readability

13 years agoCheck harder for -lresolv
Pekka Pessi [Fri, 10 Sep 2010 12:11:23 +0000 (15:11 +0300)]
Check harder for -lresolv

Older Debians and friends expose __ns_initparse and their resolv.h
defines ns_initparse is __ns_initparse.

13 years agoRemove two pointless whitespaces
Marcel Holtmann [Sat, 11 Sep 2010 10:36:44 +0000 (12:36 +0200)]
Remove two pointless whitespaces

13 years agoHandle potential NULL pointer with DHCP options
Marcel Holtmann [Sat, 11 Sep 2010 10:35:42 +0000 (12:35 +0200)]
Handle potential NULL pointer with DHCP options

13 years agoRelease 0.61
Marcel Holtmann [Fri, 10 Sep 2010 09:24:11 +0000 (11:24 +0200)]
Release 0.61

13 years agoRemove leftover defines
Marcel Holtmann [Fri, 10 Sep 2010 09:20:37 +0000 (11:20 +0200)]
Remove leftover defines

13 years agoImplement the ModemAdded and ModemRemoved signal handlers
Samuel Ortiz [Thu, 9 Sep 2010 22:57:21 +0000 (00:57 +0200)]
Implement the ModemAdded and ModemRemoved signal handlers

13 years agoFix typo: modem_removed is linked to the MODEM_REMOVED signal
Samuel Ortiz [Thu, 9 Sep 2010 22:56:21 +0000 (00:56 +0200)]
Fix typo: modem_removed is linked to the MODEM_REMOVED signal

13 years agoSupport the new oFono Manager API
Samuel Ortiz [Thu, 9 Sep 2010 22:30:30 +0000 (00:30 +0200)]
Support the new oFono Manager API

GetModems() is called at startup, and ModemAdded and ModemRemoved are
being monitored.

13 years agoFix debug message formatting
Samuel Ortiz [Thu, 9 Sep 2010 18:24:40 +0000 (20:24 +0200)]
Fix debug message formatting

13 years agoFix error message formatting
Samuel Ortiz [Thu, 9 Sep 2010 18:21:36 +0000 (20:21 +0200)]
Fix error message formatting

13 years agoExtend the D-Bus timeout for slow modems
Samuel Ortiz [Thu, 9 Sep 2010 17:46:00 +0000 (19:46 +0200)]
Extend the D-Bus timeout for slow modems

13 years agoPower the ConnectionManager interface up when it shows up
Samuel Ortiz [Thu, 9 Sep 2010 17:45:15 +0000 (19:45 +0200)]
Power the ConnectionManager interface up when it shows up

13 years agoofono: use new oFono GPRS interfaces
Pekka Pessi [Thu, 9 Sep 2010 13:35:58 +0000 (15:35 +0200)]
ofono: use new oFono GPRS interfaces

The plugin keeps now a hash table for networks.

The improved oFono GPRS interface (ConnectionManager) relay the complete
network information in ContextAdded signal and in GetContexts reply.  A
connman_network is immediately created for each Internet context.

The kludge used to create a new context in case the initial context list
was empty is removed.

The oFono context interface (ContextManager) has no essential changes,
it is just removed.

Information from the oFono NetworkRegistration interface is now cached
in the connman_device.  Cached registration information is stored in the
newly created connman_network, too. Later changes in the registration
info get propagated to the connman_network.

TODO:
        - handle ConnectionManager.ContextAdded
        - handle ConnectionManager.ContextRemoved

13 years agoofono: use Modem Online property
Pekka Pessi [Thu, 26 Aug 2010 14:26:50 +0000 (17:26 +0300)]
ofono: use Modem Online property

Modem Online property gets controlled with the cellular device Powered
property.

As the oFono plugin needs to get the Powered state from the device it
gets created when the SIM is ready.

The GPRS networks get added after ConnMan can access the GPRS interface.

As a side effect the oFono modems which do support Online but do not
support GPRS are also visible in ConnMan.

The ConnMan device gets now removed when the SIM is removed or the IMSI
changes.

13 years agodevice: add connman_device_get_ident()
Pekka Pessi [Thu, 26 Aug 2010 14:26:49 +0000 (17:26 +0300)]
device: add connman_device_get_ident()

Expose former core function __connman_device_get_ident().

13 years agoofono: refactor modem_has_gprs()
Pekka Pessi [Thu, 26 Aug 2010 14:26:48 +0000 (17:26 +0300)]
ofono: refactor modem_has_gprs()

13 years agoofono: refactor sim
Pekka Pessi [Thu, 26 Aug 2010 14:26:47 +0000 (17:26 +0300)]
ofono: refactor sim

MCC and MNC are no more propagated to the service.

13 years agoofono: refactor pri_context_changed handler
Pekka Pessi [Thu, 26 Aug 2010 14:26:46 +0000 (17:26 +0300)]
ofono: refactor pri_context_changed handler

Do not use pending_network outside pri_context_changed.

13 years agoofono: fix pending_network_is_available()
Pekka Pessi [Thu, 26 Aug 2010 14:26:45 +0000 (17:26 +0300)]
ofono: fix pending_network_is_available()

connman_network_get_device() returns NULL if network has been removed.

13 years agoofono: don't reuse identifier pending_network
Pekka Pessi [Thu, 26 Aug 2010 14:26:44 +0000 (17:26 +0300)]
ofono: don't reuse identifier pending_network

13 years agoofono: fix add_network()
Pekka Pessi [Thu, 26 Aug 2010 14:26:43 +0000 (17:26 +0300)]
ofono: fix add_network()

Protect against duplication, remove leak.

13 years agoofono: do not strdup in get_ident()
Pekka Pessi [Thu, 26 Aug 2010 14:26:42 +0000 (17:26 +0300)]
ofono: do not strdup in get_ident()

Fix leak if network creation fails.

13 years agoofono: refactor dbus calls
Pekka Pessi [Thu, 26 Aug 2010 14:26:41 +0000 (17:26 +0300)]
ofono: refactor dbus calls

Use call_ofono() wrapper.

13 years agoofono: avoid race between signals and methods
Pekka Pessi [Thu, 26 Aug 2010 14:26:40 +0000 (17:26 +0300)]
ofono: avoid race between signals and methods

Create modem only after Modem.GetProperties succeeds, thus avoiding
races with Modem.PropertyChanged signal. Do not call Modem.GetProperties
again while modem exists.

13 years agoofono: fix stale data usage
Pekka Pessi [Thu, 26 Aug 2010 14:26:39 +0000 (17:26 +0300)]
ofono: fix stale data usage

13 years agoofono: log more of the errors
Pekka Pessi [Thu, 9 Sep 2010 10:13:52 +0000 (12:13 +0200)]
ofono: log more of the errors

13 years agoofono: refactor SetProperty D-Bus calls
Pekka Pessi [Thu, 9 Sep 2010 10:07:23 +0000 (12:07 +0200)]
ofono: refactor SetProperty D-Bus calls

13 years agoRemove the no longer needed security framework
Marcel Holtmann [Thu, 9 Sep 2010 16:53:57 +0000 (18:53 +0200)]
Remove the no longer needed security framework

D-Bus security policies can now be set directly via the method tables.

13 years agoUse D-Bus constants for PolicyKit plugin
Marcel Holtmann [Thu, 9 Sep 2010 16:47:25 +0000 (18:47 +0200)]
Use D-Bus constants for PolicyKit plugin

13 years agoUpdate support for PolicyKit with GDBus security integration
Marcel Holtmann [Thu, 9 Sep 2010 16:44:06 +0000 (18:44 +0200)]
Update support for PolicyKit with GDBus security integration

13 years agoAdd gdbus/polkit.c file to sources list
Marcel Holtmann [Thu, 9 Sep 2010 16:29:01 +0000 (18:29 +0200)]
Add gdbus/polkit.c file to sources list

13 years agoAdd support for builtin GDBus security using PolicyKit
Marcel Holtmann [Thu, 9 Sep 2010 15:04:40 +0000 (17:04 +0200)]
Add support for builtin GDBus security using PolicyKit

13 years agoAdd support for GDBus security action and flags
Marcel Holtmann [Thu, 9 Sep 2010 14:39:46 +0000 (16:39 +0200)]
Add support for GDBus security action and flags

13 years agoUse simpler error callbacks for GDBus security hooks
Marcel Holtmann [Sun, 29 Aug 2010 10:31:20 +0000 (06:31 -0400)]
Use simpler error callbacks for GDBus security hooks

13 years agoAdd support for GDBus security handlers
Marcel Holtmann [Sat, 28 Aug 2010 22:18:47 +0000 (00:18 +0200)]
Add support for GDBus security handlers

13 years agoMake the internal DHCP client the default now
Marcel Holtmann [Wed, 8 Sep 2010 18:41:29 +0000 (20:41 +0200)]
Make the internal DHCP client the default now

13 years agoRelease 0.60
Marcel Holtmann [Wed, 8 Sep 2010 18:20:18 +0000 (20:20 +0200)]
Release 0.60

13 years agonetwork: don't connect if already removed
Pekka Pessi [Mon, 30 Aug 2010 15:21:12 +0000 (18:21 +0300)]
network: don't connect if already removed

13 years agonetwork: don't add into profile while unregistered
Pekka Pessi [Mon, 30 Aug 2010 15:21:11 +0000 (18:21 +0300)]
network: don't add into profile while unregistered

The connman_network_set_group() created an extra ref to service if it
was called before network was probed and registered.

13 years agoservice: debug log ref and unref
Pekka Pessi [Mon, 30 Aug 2010 15:21:10 +0000 (18:21 +0300)]
service: debug log ref and unref

13 years agoRevert "service: don't keep ref to a removed network"
Pekka Pessi [Mon, 30 Aug 2010 15:21:09 +0000 (18:21 +0300)]
Revert "service: don't keep ref to a removed network"

This reverts commit 485625099ef90e11099157dd72fbbebe04a74680.

13 years agoSet the devices offline mode to FALSE when setting the Powered property
Samuel Ortiz [Wed, 8 Sep 2010 17:23:51 +0000 (19:23 +0200)]
Set the devices offline mode to FALSE when setting the Powered property

13 years agoFix calling watch callbacks after it has been removed
Luiz Augusto von Dentz [Mon, 6 Sep 2010 13:39:41 +0000 (16:39 +0300)]
Fix calling watch callbacks after it has been removed

Pending call should be removed if the watch is removed since the
application no longer expect that to be reached and may already freed the
data associated with it.

13 years agoFix signal watch when a service name is given
Luiz Augusto Von Dentz [Mon, 6 Sep 2010 10:26:20 +0000 (13:26 +0300)]
Fix signal watch when a service name is given

The bus name should be resolved when adding a watch by service name since
messages do always come with sender set to owner's bus name, also it
should listen to owner updates since it can change without invalidating
the watch.

13 years agoDo not automatically remove watches for service names
Luiz Augusto Von Dentz [Mon, 6 Sep 2010 10:26:19 +0000 (13:26 +0300)]
Do not automatically remove watches for service names

Services can be owned again so it is perfectly fine to keep the watch.

13 years agoTry to detect portal even if the location driver is already set
Samuel Ortiz [Wed, 8 Sep 2010 14:42:18 +0000 (16:42 +0200)]
Try to detect portal even if the location driver is already set

With DHCP renewals the ConnMan state can go from Online to Ready and a
location detect will start. Since the location driver is already set by
then, this will fail and ConnMan's state will be stuck at Ready. Instead
of returning an error, the location finish() hooks is called and a new
portal detection is triggered.

13 years agoSend Ethernet property changed signal when the ipconfig layer is enabled
Samuel Ortiz [Wed, 8 Sep 2010 09:50:01 +0000 (11:50 +0200)]
Send Ethernet property changed signal when the ipconfig layer is enabled

13 years agoReset proxy setting when disconnecting
Samuel Ortiz [Tue, 7 Sep 2010 14:59:04 +0000 (16:59 +0200)]
Reset proxy setting when disconnecting

13 years agoservice: don't keep ref to a removed network
Pekka Pessi [Thu, 26 Aug 2010 14:26:36 +0000 (17:26 +0300)]
service: don't keep ref to a removed network

13 years agodevice: remove stale pointer from network
Pekka Pessi [Thu, 26 Aug 2010 14:26:35 +0000 (17:26 +0300)]
device: remove stale pointer from network

13 years agoIngnore the offline operation of the blocked device
Martin Xu [Fri, 27 Aug 2010 06:10:32 +0000 (14:10 +0800)]
Ingnore the offline operation of the blocked device

13 years agoRelease 0.59
Marcel Holtmann [Sat, 21 Aug 2010 22:11:28 +0000 (00:11 +0200)]
Release 0.59

13 years agoEnsure that all provider object paths are valid
Marcel Holtmann [Sat, 21 Aug 2010 21:59:51 +0000 (23:59 +0200)]
Ensure that all provider object paths are valid

13 years agoEnsure to also replace colon in provider D-Bus object path
Marcel Holtmann [Sat, 21 Aug 2010 21:53:26 +0000 (23:53 +0200)]
Ensure to also replace colon in provider D-Bus object path