platform/upstream/connman.git
14 years agoSplit DHCP-provided nameserver string.
Forest Bond [Thu, 22 Apr 2010 19:56:12 +0000 (15:56 -0400)]
Split DHCP-provided nameserver string.

The DHCP-provided nameserver string is split up into separate nameservers.
Currently, only one nameserver can be stored in the connman_element.ipv4
structure, so all but the first of the DHCP-provided nameservers are thrown
out.

14 years agoFix parent path introspection data invalidation for multiple levels
Johan Hedberg [Thu, 29 Apr 2010 22:23:45 +0000 (01:23 +0300)]
Fix parent path introspection data invalidation for multiple levels

In the case that parent path data needs to be invalidated we shouldn't
stop at the immediate parent if it doesn't have our own handler
registered but should continue upwards in the tree until we reach root
or our own handler.

14 years agoFix memory leak in g_dbus_register_interface
Johan Hedberg [Thu, 29 Apr 2010 21:27:54 +0000 (00:27 +0300)]
Fix memory leak in g_dbus_register_interface

14 years agoFix typo: store password into service->password field
Daniel Wagner [Tue, 20 Apr 2010 14:30:17 +0000 (16:30 +0200)]
Fix typo: store password into service->password field

14 years agoMention Daniel's contributions
Marcel Holtmann [Sat, 17 Apr 2010 03:57:13 +0000 (20:57 -0700)]
Mention Daniel's contributions

14 years agoRemove supplicant and device scanning state cleaning
Samuel Ortiz [Fri, 16 Apr 2010 09:52:09 +0000 (11:52 +0200)]
Remove supplicant and device scanning state cleaning

With wpa_supplicant 0.7, there is no need to handle potential issues with scan
results not being sent. Also, the state change is sent before the actual scan
results, so marking all networks available at that point is misleading.

14 years agoofono API refactoring: Rename netreg Operator property to Name
Daniel Wagner [Wed, 14 Apr 2010 14:03:46 +0000 (16:03 +0200)]
ofono API refactoring: Rename netreg Operator property to Name

for ofono version >0.20

14 years agoRemove the access of status property of DataConnectionManager from oFono
Martin Xu [Wed, 14 Apr 2010 05:02:32 +0000 (13:02 +0800)]
Remove the access of status property of DataConnectionManager from oFono

The status property has been removed from oFono post oFono 0.20

14 years agoRelease 0.52 0.52
Marcel Holtmann [Tue, 13 Apr 2010 15:47:37 +0000 (08:47 -0700)]
Release 0.52

14 years agoFix session code identation
Samuel Ortiz [Tue, 13 Apr 2010 14:31:12 +0000 (16:31 +0200)]
Fix session code identation

14 years agoFix session API documentation
Samuel Ortiz [Tue, 13 Apr 2010 14:30:26 +0000 (16:30 +0200)]
Fix session API documentation

We return an object path, not a simple string.

14 years agoRemove erroneous DHCP method setting from bluetooth plugin
Martin Xu [Mon, 12 Apr 2010 06:35:06 +0000 (14:35 +0800)]
Remove erroneous DHCP method setting from bluetooth plugin

The ipconfig method is set by connman_network_set_index(), DHCP being the
default one.

14 years agoLoad ipconfig setting from __connman_service_create_ipconfig()
Martin Xu [Tue, 13 Apr 2010 13:14:08 +0000 (15:14 +0200)]
Load ipconfig setting from __connman_service_create_ipconfig()

When creating a service without an ipconfig, the ipconfig settings are not
loaded. This issue is fixed by calling __connman_ipconfig_load() indirectly
from connman_network_set_index().

14 years agoReset ipconfig index
Martin Xu [Tue, 13 Apr 2010 11:28:52 +0000 (13:28 +0200)]
Reset ipconfig index

With PAN, the bnep device index might change and thus it needs to be set
appropriately whenever connman_network_set_index() gets called.

14 years agoAdd __connman_ipconfig_set_index() helper
Martin Xu [Mon, 12 Apr 2010 06:35:03 +0000 (14:35 +0800)]
Add __connman_ipconfig_set_index() helper

14 years agoReference PAN network before disconnecting
Martin Xu [Fri, 9 Apr 2010 08:06:47 +0000 (16:06 +0800)]
Reference PAN network before disconnecting

The PAN network can be destructed before getting the disconnect reply. In
that case disconnect_reply() will segfault by calling
connman_network_set_connected() with a NULL network pointer.
This issue is fixed by referencing the PAN network from pan_disconnect().

14 years agoReset connman_network device pointer when it is no longer referenced
Samuel Ortiz [Thu, 8 Apr 2010 22:19:07 +0000 (00:19 +0200)]
Reset connman_network device pointer when it is no longer referenced

When removing all networks from a device, network->device pointers are
set to NULL even though the network is still referenced. This can lead
to segmentation faults when for example a service has several networks
and is being disconnected.

14 years agoDo not set network index from PAN disconnect reply
Samuel Ortiz [Tue, 6 Apr 2010 21:39:57 +0000 (23:39 +0200)]
Do not set network index from PAN disconnect reply

There is no need to track the network's connected state through its index.
As a matter of fact, setting the network index to -1 on the PAN disconnect
path can triggers segmentation faults when powering the device off at the
same time.

14 years agoAdd session D-Bus manager API
Samuel Ortiz [Thu, 1 Apr 2010 10:25:33 +0000 (12:25 +0200)]
Add session D-Bus manager API

14 years agoAdd session support
Samuel Ortiz [Thu, 1 Apr 2010 10:17:36 +0000 (12:17 +0200)]
Add session support

The session layer allows 3rd party applications to request a network
session from connman. The only thing applications need to specify is
the type of network they're looking for, a.k.a. the network bearer. An
unspecified bearer means picking the best available service.

14 years agoConnect service based on service type
Samuel Ortiz [Thu, 1 Apr 2010 10:15:54 +0000 (12:15 +0200)]
Connect service based on service type

__connman_service_connect_type() tries to find the appropriate service
based on the service_type argument, and connect it. If the argument is
CONNMAN_SERVICE_TYPE_UNKNOWN, the first available service is picked.

14 years agoONLINE and LOGIN are also "connected" states.
Gustavo Sverzut Barbieri [Fri, 2 Apr 2010 18:56:38 +0000 (20:56 +0200)]
ONLINE and LOGIN are also "connected" states.

Code was initially done with CONNMAN_SERVICE_STATE_READY being the
only valid connected state, but later on CONNMAN_SERVICE_STATE_LOGIN
and CONNMAN_SERVICE_STATE_ONLINE were introduced, breaking couple of
functions that assumed the old behavior.

This patch creates the is_connected() function, similar to
is_connecting() and uses it instead.

__connman_service_indicate_state() checks just for ONLINE, as
requested by Marcel.

14 years agoAdd hh2serial GPS support
Mohamed Abbas [Thu, 1 Apr 2010 21:13:18 +0000 (23:13 +0200)]
Add hh2serial GPS support

This patch brings the hh2serial GPS device on and off with offline mode
changes. Although this power control is currently done through sysfs
entries, this will be fixed once the hh2serial driver gets proper
rfkill support.

14 years agoUse psk for building hidden WPA SSID group
Samuel Ortiz [Fri, 26 Mar 2010 19:44:58 +0000 (20:44 +0100)]
Use psk for building hidden WPA SSID group

When building a hidden SSID group for a WPA/WPA2 network, use psk as the
security string. With rsn or wpa strings, 2 services for the same SSID will
show up once the SSID appears in any scan result.

14 years agoRelease 0.51 0.51
Marcel Holtmann [Thu, 25 Mar 2010 23:37:09 +0000 (16:37 -0700)]
Release 0.51

14 years agoReset location->result when disconnecting.
Samuel Ortiz [Thu, 25 Mar 2010 15:02:23 +0000 (16:02 +0100)]
Reset location->result when disconnecting.

If result is not reset, the service state is no longer indicated after a
connect/disconnect cycle.

14 years agoSet netmask and gateway as the mandatory parameters of test/set-address
Martin Xu [Thu, 25 Mar 2010 03:36:50 +0000 (11:36 +0800)]
Set netmask and gateway as the mandatory parameters of test/set-address

14 years agoAdd static gateway support
Martin Xu [Thu, 25 Mar 2010 03:36:49 +0000 (11:36 +0800)]
Add static gateway support

14 years agoAdd gateway to connman_ipaddress
Martin Xu [Thu, 25 Mar 2010 03:36:48 +0000 (11:36 +0800)]
Add gateway to connman_ipaddress

14 years agoEnable portal plugin for developers by default
Marcel Holtmann [Thu, 25 Mar 2010 00:41:51 +0000 (17:41 -0700)]
Enable portal plugin for developers by default

14 years agoIndicate new service state according to the location results.
Samuel Ortiz [Thu, 25 Mar 2010 00:19:23 +0000 (01:19 +0100)]
Indicate new service state according to the location results.

14 years agoCall location detection after setting DNS and routing tables
Mohamed Abbas [Wed, 24 Mar 2010 23:34:02 +0000 (00:34 +0100)]
Call location detection after setting DNS and routing tables

14 years agoPortal detection plugin
Mohamed Abbas [Wed, 24 Mar 2010 23:04:49 +0000 (00:04 +0100)]
Portal detection plugin

Add new plugin to support page redirection when using wifi or ethernet.
Most of this code is a copy from tools/portal-test.com intergrated to
work with location core.

14 years agoEnable/Disable device when toggling the powered state
Samuel Ortiz [Wed, 24 Mar 2010 12:04:54 +0000 (13:04 +0100)]
Enable/Disable device when toggling the powered state

When devices are brought up and down externally (e.g. with ifconfig),
connman_device_set_powered() needs to enable or disable them. If it doesnt,
the device associated networks are kept alive and we're still showing them
while the device is actually down.

14 years agoGet simple-agent passphrase from command line
Kalle Valo [Fri, 19 Mar 2010 13:13:05 +0000 (15:13 +0200)]
Get simple-agent passphrase from command line

14 years agoUse udev_device_get_devtype before __connman_inet_get_device_type
Martin Xu [Tue, 23 Mar 2010 09:27:46 +0000 (17:27 +0800)]
Use udev_device_get_devtype before __connman_inet_get_device_type

With some specific 3G cards __connman_inet_get_device_type() fails to
give the correct device type and we end up having both ethernet and 3G
services when pluging those in.
As udev_device_get_devtype() is more reliable, we're now calling it first
and falling back to __connman_inet_get_device_type() when
udev_device_get_devtype() returns a NULL string.

14 years agoSet network->device as NULL when the device is removed
Martin Xu [Tue, 23 Mar 2010 03:43:50 +0000 (11:43 +0800)]
Set network->device as NULL when the device is removed

oFono plugin can use network->device to decide whether the modem is
removed during active PrimaryContext.
That fixes a segmentation fault when removing a 3G modem before getting
the set_network_active() D-Bus reply.

14 years agoCheck for task->path when removing an interface or a network
Samuel Ortiz [Mon, 22 Mar 2010 12:10:13 +0000 (13:10 +0100)]
Check for task->path when removing an interface or a network

We need to be more careful about task->path since it could disappear on
us if we want to go offline before we get the add_interface D-Bus reply.

14 years agoIgnore wext wireless rtnetlink events
Samuel Ortiz [Mon, 22 Mar 2010 12:06:05 +0000 (13:06 +0100)]
Ignore wext wireless rtnetlink events

The kernel wext core sends wireless events through the rtnetlink channel.
They show up with the ifi_change field set to 0.
The problem with those messages is that their ifi_flags might be
unsynchronized due to the fact that the actual message sending is handled
by a workqueue that doesnt build the message. ifi_flags is set to
dev_flags, but by the time the message is sent dev_flags might have changed.
Connman should just ignore those messages as we don't care about wext
events at all.

14 years agoHandle the case that MobileNetworkCodeLength is not provided
Martin Xu [Fri, 19 Mar 2010 06:44:22 +0000 (14:44 +0800)]
Handle the case that MobileNetworkCodeLength is not provided

Don't provide MNC and MCC in this case, but still create the 3G service.

14 years agoCorrect the modem properties key name
Martin Xu [Fri, 19 Mar 2010 06:44:21 +0000 (14:44 +0800)]
Correct the modem properties key name

14 years agoFix convert_wifi_security for psk string
Samuel Ortiz [Wed, 17 Mar 2010 19:03:15 +0000 (20:03 +0100)]
Fix convert_wifi_security for psk string

CONNMAN_SERVICE_SECURITY_PSK should map to "psk", not "wep".

14 years agoExport MCC and MNC for cellular services
Martin Xu [Tue, 9 Mar 2010 05:46:39 +0000 (13:46 +0800)]
Export MCC and MNC for cellular services

14 years agoRemove internal GAtChat library
Marcel Holtmann [Sun, 7 Mar 2010 23:04:13 +0000 (15:04 -0800)]
Remove internal GAtChat library

14 years agoRemove unneeded plugin for Ericsson MBM support
Marcel Holtmann [Sun, 7 Mar 2010 23:01:29 +0000 (15:01 -0800)]
Remove unneeded plugin for Ericsson MBM support

14 years agoRemove unneeded plugin for Option HSO support
Marcel Holtmann [Sun, 7 Mar 2010 22:54:29 +0000 (14:54 -0800)]
Remove unneeded plugin for Option HSO support

14 years agoRename Moblin plugin to MeeGo features plugin
Marcel Holtmann [Sun, 7 Mar 2010 22:46:59 +0000 (14:46 -0800)]
Rename Moblin plugin to MeeGo features plugin

14 years agoMake interface callback tables const
Marcel Holtmann [Sun, 7 Mar 2010 22:32:48 +0000 (14:32 -0800)]
Make interface callback tables const

14 years agoFix the case when the requested name is already in use
Vinicius Costa Gomes [Mon, 1 Feb 2010 19:16:22 +0000 (16:16 -0300)]
Fix the case when the requested name is already in use

We weren't setting the dbus error in this situation.

14 years agoRelease 0.50 0.50
Marcel Holtmann [Wed, 3 Mar 2010 15:22:24 +0000 (07:22 -0800)]
Release 0.50

14 years agoAdd config-format.txt to distribution
Marcel Holtmann [Wed, 3 Mar 2010 14:44:01 +0000 (06:44 -0800)]
Add config-format.txt to distribution

14 years agoDocument configuration file format
Samuel Ortiz [Fri, 26 Feb 2010 12:17:29 +0000 (13:17 +0100)]
Document configuration file format

Let's avoid having users digging the code to actually understand that
format.

14 years agoRemove DHCP method setting from ethernet plugin
Martin Xu [Thu, 25 Feb 2010 09:34:35 +0000 (17:34 +0800)]
Remove DHCP method setting from ethernet plugin

The method has been set when creating service.
And setting DHCP method after creating wired service causes the recorded
method gotten from entry file be replaced by DHCP method, consequently,
the static IP of wired service can not be remembered.

14 years agoCheck ipconfig in __connman_ipconfig_clear_address
Martin Xu [Thu, 25 Feb 2010 06:06:07 +0000 (14:06 +0800)]
Check ipconfig in __connman_ipconfig_clear_address

3G service does not have ipconfig if the Primariy Context is not activated.
So we need to check the ipconfig here.

14 years agoAdd script to set IP configuration method
Lucas De Marchi [Thu, 18 Feb 2010 11:16:59 +0000 (09:16 -0200)]
Add script to set IP configuration method

This script is used to set IPv4.Configuration property of a service,
allowing to change among dhcp and manual methods.

14 years agoFix configuration loading for unknown service
Lucas De Marchi [Thu, 18 Feb 2010 10:58:53 +0000 (08:58 -0200)]
Fix configuration loading for unknown service

In case a service is unknown, the expected behavior is that it uses
dhcp. Currently, method will be left blank and thus connman will not be
able to connect to that service unless method is explicitly set through
IPv4.Configuration property.

14 years agoFix: a pending call was leaking in check_service
Vinicius Costa Gomes [Fri, 12 Feb 2010 20:35:08 +0000 (17:35 -0300)]
Fix: a pending call was leaking in check_service

This was triggering an assert inside libdbus when the timeout inside
the leaking pending call expired. The assert said that we were trying
to remove an nonexistent timeout.

14 years agoUpdate all test scripts using devices properties directly
Samuel Ortiz [Tue, 16 Feb 2010 10:52:11 +0000 (11:52 +0100)]
Update all test scripts using devices properties directly

We need to go through the technology list first in order to access the
devices properties.

14 years agoUpdate test/list-networks to new properties hierarchy
Gustavo Sverzut Barbieri [Mon, 15 Feb 2010 16:20:30 +0000 (14:20 -0200)]
Update test/list-networks to new properties hierarchy

The "Devices" property is gone, now need to walk "Technologies"
and then their devices.

14 years agoRelease 0.49 0.49
Marcel Holtmann [Thu, 11 Feb 2010 05:04:21 +0000 (06:04 +0100)]
Release 0.49

14 years agoSet device powered when bluetooth adapters are powered
Samuel Ortiz [Wed, 10 Feb 2010 19:44:37 +0000 (20:44 +0100)]
Set device powered when bluetooth adapters are powered

When a bluetooth adapters are added, we go through adapter_properties_reply(),
but we dont call connman_device_set_powered() or check_networks() because the
powered variable is false.

We should get the adapter properties upon getting the powered D-Bus reply
message and that will end up calling the right functions.

14 years agoBring bluetooth interfaces up at startup
Samuel Ortiz [Wed, 10 Feb 2010 19:44:36 +0000 (20:44 +0100)]
Bring bluetooth interfaces up at startup

With the current code we're powering up the bluetooth devices through
change_powered, which gets indirectly called from connman_device_register()
through adapter_properties_reply(). Since we're calling
connman_device_register() withouth setting the device path, change_powered
actually does nothing. We have to set the device path before calling
connman_device_register() and then the bluetooth devices will actually be
powered up.

14 years agoFix VPN issue when setting up host route
Mohamed Abbas [Thu, 4 Feb 2010 00:16:40 +0000 (16:16 -0800)]
Fix VPN issue when setting up host route

14 years agoLoad and save ipconfig settings
Martin Xu [Tue, 9 Feb 2010 09:29:55 +0000 (10:29 +0100)]
Load and save ipconfig settings

14 years agoStatic IP can be set regardles of the service state
Martin Xu [Tue, 9 Feb 2010 09:29:54 +0000 (10:29 +0100)]
Static IP can be set regardles of the service state

14 years agoAdd static IP support
Martin Xu [Tue, 9 Feb 2010 09:29:53 +0000 (10:29 +0100)]
Add static IP support

The IP adress setting is now based on the selected ipconfig method. It is
set after a service reconnection though.

14 years agoRemove wrong unref of sevice->pending
Martin Xu [Tue, 9 Feb 2010 09:29:52 +0000 (10:29 +0100)]
Remove wrong unref of sevice->pending

When setting static ip for ethernet service, unreferencing service->pending
here will cause a segmentation fault.

The reason is that it is done in __connman_service_indicate_state() when
connection succeeds, and service->pending is NULL.

14 years agoCheck for ipaddress local and broadcast pointers
Martin Xu [Tue, 9 Feb 2010 09:29:51 +0000 (10:29 +0100)]
Check for ipaddress local and broadcast pointers

If local is NULL we return an error. If broadcast is NULL, we use the local
address prefix to build a broadcast one.

14 years agoAdd get and create ipconfig from service
Martin Xu [Tue, 9 Feb 2010 09:29:50 +0000 (10:29 +0100)]
Add get and create ipconfig from service

In some cases (for example the oFono plugin), we will not get the network
index before creating the service. We then need a routine that allows us to
setup the ipconfig layer once we get the index.

14 years agoAdd some ipconfig helpers
Martin Xu [Tue, 9 Feb 2010 09:29:49 +0000 (10:29 +0100)]
Add some ipconfig helpers

__connman_ipconfig_get_method(): Returns the selected ipconfig method.
__connman_ipconfig_set_address(): Sets the device's IP address according
to the selected method. Only the manual method is supported.
__connman_ipconfig_clear_address(): Clears the device's IP address. Again,
only the manual method is supported for now.

14 years agoFix start-scanning script
Samuel Ortiz [Fri, 5 Feb 2010 20:07:15 +0000 (21:07 +0100)]
Fix start-scanning script

Devices are no longer part of the manager properties, go through
the technology list instead.

14 years agoToggle WiFi device powered field
Samuel Ortiz [Fri, 5 Feb 2010 19:14:59 +0000 (20:14 +0100)]
Toggle WiFi device powered field

When receiving an RTNL message for a WiFI NEWLINK, the powered device
field should be toggled accordingly.

14 years agoImplement move_after() D-Bus service method
Samuel Ortiz [Thu, 4 Feb 2010 18:15:22 +0000 (19:15 +0100)]
Implement move_after() D-Bus service method

Basically the same as move_before(), except for the last g_sequence_move().

14 years agoRename mac80211 routines and fields to cfg80211
Samuel Ortiz [Tue, 2 Feb 2010 15:27:50 +0000 (16:27 +0100)]
Rename mac80211 routines and fields to cfg80211

The mac80211 boolean and inet routines names are a bit misleading since
what we really want to check is if the underlying wifi driver is cfg80211
compliant. The mac80211 drivers form a subset of that, as some full MAC
cards also are fully cfg80211 compliant.

14 years agoFix service property monitoring handling
Marcel Holtmann [Mon, 1 Feb 2010 01:34:06 +0000 (17:34 -0800)]
Fix service property monitoring handling

14 years agoExtract IPv4 and Ethernet values from service monitor script
Marcel Holtmann [Mon, 1 Feb 2010 01:29:50 +0000 (17:29 -0800)]
Extract IPv4 and Ethernet values from service monitor script

14 years agoAdd basic support for a location detection framework
Marcel Holtmann [Fri, 29 Jan 2010 22:11:26 +0000 (14:11 -0800)]
Add basic support for a location detection framework

14 years agoAdd special state for portal login step
Marcel Holtmann [Fri, 29 Jan 2010 16:36:45 +0000 (17:36 +0100)]
Add special state for portal login step

14 years agoAdd network->driver->setup() callback function
Martin Xu [Thu, 28 Jan 2010 14:38:46 +0000 (22:38 +0800)]
Add network->driver->setup() callback function

After string value has been set in function connman_network_set_string()
call network->driver->setup() to let network driver handle the value.
ofono network driver setup call back function handles "Cellular.APN" to
set up APN.

14 years agoUse 3 read attempts when in non-blocking mode
Marcel Holtmann [Thu, 28 Jan 2010 21:24:04 +0000 (22:24 +0100)]
Use 3 read attempts when in non-blocking mode

14 years agoAdd new constructor for fully blocking operation
Marcel Holtmann [Thu, 28 Jan 2010 21:05:44 +0000 (22:05 +0100)]
Add new constructor for fully blocking operation

14 years agoFix: Take care of uninitialized variable condition
Denis Kenzior [Thu, 28 Jan 2010 20:31:22 +0000 (14:31 -0600)]
Fix: Take care of uninitialized variable condition

In some (impossible) circumstances rbytes and err might be used
uninitialized.  Here we make a check that a read was actually attempted
before checking those variables.

14 years agoLimit the number of continues read attempts
Marcel Holtmann [Thu, 28 Jan 2010 11:41:31 +0000 (12:41 +0100)]
Limit the number of continues read attempts

14 years agoRemove system user from dbus config file
Martin Xu [Thu, 28 Jan 2010 03:45:11 +0000 (11:45 +0800)]
Remove system user from dbus config file

Some system such as Moblin, system user does not exist. And the waning
message shows at system starting. In order to remove the wanning message
just remove the system user from dbus config file.

14 years agoUse operator name as the network name
Martin Xu [Thu, 28 Jan 2010 02:44:39 +0000 (10:44 +0800)]
Use operator name as the network name

14 years agoRemove unneeded use of status variable
Marcel Holtmann [Wed, 27 Jan 2010 08:48:21 +0000 (09:48 +0100)]
Remove unneeded use of status variable

14 years agoIntroduce g_dbus_setup_private() to gdbus
Forrest Zhao [Wed, 27 Jan 2010 08:24:23 +0000 (16:24 +0800)]
Introduce g_dbus_setup_private() to gdbus

g_dbus_setup_private() is used to setup private DBusConnection

14 years agoUse more unique debug descriptor
Marcel Holtmann [Tue, 26 Jan 2010 08:53:22 +0000 (09:53 +0100)]
Use more unique debug descriptor

14 years agoHandle enabled/disabled cases for technology interface
Marcel Holtmann [Tue, 26 Jan 2010 07:30:31 +0000 (08:30 +0100)]
Handle enabled/disabled cases for technology interface

14 years agoAdd available RFKILL switches to list of technologies
Marcel Holtmann [Tue, 26 Jan 2010 07:16:47 +0000 (08:16 +0100)]
Add available RFKILL switches to list of technologies

14 years agoAdd support for technology states
Marcel Holtmann [Mon, 25 Jan 2010 06:49:14 +0000 (07:49 +0100)]
Add support for technology states

14 years agoUse the technology type for an unqiue object path
Marcel Holtmann [Mon, 25 Jan 2010 06:20:29 +0000 (07:20 +0100)]
Use the technology type for an unqiue object path

14 years agoUse proper base path prefix for device objects
Marcel Holtmann [Mon, 25 Jan 2010 06:17:33 +0000 (07:17 +0100)]
Use proper base path prefix for device objects

14 years agoAdd support for technology interface
Marcel Holtmann [Mon, 25 Jan 2010 06:14:11 +0000 (07:14 +0100)]
Add support for technology interface

14 years agoSync GAtChat library with oFono
Marcel Holtmann [Sat, 23 Jan 2010 10:20:00 +0000 (11:20 +0100)]
Sync GAtChat library with oFono

14 years agoSet APN before connecting via oFono plugin
Martin Xu [Fri, 22 Jan 2010 05:30:47 +0000 (13:30 +0800)]
Set APN before connecting via oFono plugin

14 years agoAdd default context if no context exists
Martin Xu [Fri, 22 Jan 2010 05:30:46 +0000 (13:30 +0800)]
Add default context if no context exists

14 years agoIgnore resolvers with no interface for resolvconf
Marcel Holtmann [Sat, 23 Jan 2010 09:41:48 +0000 (10:41 +0100)]
Ignore resolvers with no interface for resolvconf

14 years agoUpdate test program for redirection checks.
Mohamed Abbas [Tue, 19 Jan 2010 22:24:42 +0000 (14:24 -0800)]
Update test program for redirection checks.

Parse the HTTP response header for redirection. This patch
also checks for proxy setting.

14 years agoFix PropertyChanged for disconnect event
Lucas De Marchi [Tue, 19 Jan 2010 18:05:17 +0000 (16:05 -0200)]
Fix PropertyChanged for disconnect event

When connman_network_set_connected() is called with 'connected=FALSE',
network->connected is already FALSE, causing signal not being sent.

So, in __connman_network_disconnet() instead of directly assigning
network->connected to FALSE, call connman_network_set_connected()
which will deal with properly setting it and sending the signal.