Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-01-26 | configure: Do not fail when systemd is not installed | Lucas De Marchi | 1 | -12/+8 | |
Use --with-systemdsystemunitdir instead of --enabled-systemd so it's possible to enable systemd even if systemd is not installed. | |||||
2011-01-26 | gweb: Check GString pointers before freeing them | Mohamed Abbas | 1 | -3/+9 | |
Fixes BMC#12452 | |||||
2011-01-26 | wifi: Balance scanning states | Mohamed Abbas | 3 | -6/+28 | |
By setting the scan state to TRUE from wifi_scan() and setting it back to FALSE in the callback, the wifi device scanning state is consistent. Fixes BMC#12104 | |||||
2011-01-24 | Small coding style fixup for bridge enabling | Marcel Holtmann | 1 | -1/+1 | |
2011-01-22 | Install polkit policy file as net.connman.policy | Robert Piasek | 1 | -2/+2 | |
2011-01-22 | Add debug info | Li Jian | 5 | -0/+15 | |
Some init/clean functions lack DBG("") which affects logs readability. | |||||
2011-01-22 | manager: Send network-manager state change signals | Kalle Valo | 1 | -10/+46 | |
When using network-manager compatibility mode in connman applications, for example pidgin and firefox, didn't notice when connman changed states from offline to online (and vice versa) and applications would notice the new state only after restarting them. The problem was that connman wasn't sending StateChanged signals. After adding them pidgin and firefox will notice the new states immeadiately. | |||||
2011-01-22 | openvpn: Remove double reason parsing | Daniel Wagner | 1 | -5/+0 | |
Fix a copy/paste error. Reported by Mohamed Abbas <mohamed.abbas@intel.com> | |||||
2011-01-20 | Release 0.670.67 | Marcel Holtmann | 2 | -1/+6 | |
2011-01-20 | ofono: Use dbus_bool_t instead of gboolean | Marcel Holtmann | 1 | -4/+4 | |
2011-01-19 | gdbus: Remove root node 'name' attribute in introspection | Daniel Wagner | 1 | -1/+1 | |
generate_introspection_xml generates the root <node> tags with a 'name' attribute. This seems to be a valid attribute but it is not consistent with the way the D-Bus daemon generates empty nodes. For example if we register "/foo/bar", D-Bus daemon will generate for "/foo" a introspection which looks like this: <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> <node> <node name="bar"/> </node> and generate_introspection_xml generates for "/foo/bar": <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> <node name="/foo/bar"> </node> Just don't add the 'name' attribute to the root node. The GLib binding for D-Bus does it the same way. | |||||
2011-01-19 | gdbus: invaldate_parent_data: walk the whole path down | Daniel Wagner | 1 | -3/+4 | |
Assume there is only one object registerd at "/". If we add a new object at "/foo/bar" the introspection of "/" has to be updated. A new node has to be added at "/". invalidate_parent_data stops invaldating the whole path because the boolean return value of dbus_connection_get_object_path_data is used wrong. If we get a TRUE just go on down in the path, if FALSE is return dbus_connection_get_object_path_data has run out of memory. | |||||
2011-01-18 | Set GIOChannel to no encoding and no buffering | Marcel Holtmann | 2 | -0/+6 | |
2011-01-18 | ofono: avoid extra SetProperty("Online") calls | Pekka Pessi | 1 | -0/+10 | |
Do not request SetProperty("Online") if the modem is already in desired Online state. | |||||
2011-01-18 | Use g_io_channel_read_chars instead of g_io_channel_read | Marcel Holtmann | 2 | -12/+19 | |
2011-01-18 | Remove pointless variable initialization | Marcel Holtmann | 1 | -1/+1 | |
2011-01-18 | Use -DG_DISABLE_DEPRECATED compiler define | Marcel Holtmann | 1 | -0/+1 | |
2011-01-18 | Fixed comparison with "AutoConnect" in service | Pekka Pessi | 1 | -1/+1 | |
2011-01-18 | Remove MCC and MNC from Service doc | Pekka Pessi | 1 | -10/+0 | |
2011-01-18 | Remove MCC and MNC from Service | Pekka Pessi | 1 | -7/+0 | |
MCC and MNC are not set by oFono plugin. | |||||
2011-01-18 | Clarify relation between AutoConnect and Roaming. | Pekka Pessi | 1 | -1/+3 | |
2011-01-17 | Release 0.660.66 | Marcel Holtmann | 2 | -1/+10 | |
2011-01-14 | element: Assign element name | Li Jian | 1 | -0/+2 | |
2011-01-13 | service: Do not reconnect to an already connected service | Samuel Ortiz | 1 | -0/+10 | |
Fixes BMC#11879 | |||||
2011-01-13 | service: Proxy changes notifications | Samuel Ortiz | 1 | -1/+10 | |
notifier listening for proxy changes will get a heads up from WPAD or from DHCP. | |||||
2011-01-13 | pacrunner: Implement proxy_changed hook | Samuel Ortiz | 1 | -0/+16 | |
When the default service proxy changes, a new configuration is pushed to PACRunner. | |||||
2011-01-13 | notifier: Add proxy changed hook | Samuel Ortiz | 3 | -0/+14 | |
With asynchronous WPAD operations, the proxy_changed notifier hook will allow for a proper pacrunner configuration to be created. | |||||
2011-01-13 | service: Return DIRECT proxy if wpad_start fails | Samuel Ortiz | 3 | -9/+13 | |
2011-01-13 | service: Return service proxy is configured PAC URL is not set | Samuel Ortiz | 1 | -1/+6 | |
If the proxy configured method is AUTO but the PAC URL is not set yet, returning service->proxy will give the correct method when WPAD failed. | |||||
2011-01-13 | wpad: Set proxy method to DIRECT if WPAD name resolution failed | Samuel Ortiz | 1 | -4/+10 | |
2011-01-13 | service: Start WPAD if DHCP failed to provide a PAC URL | Samuel Ortiz | 1 | -3/+10 | |
2011-01-13 | service: Start WPAD if proxy is not manually configured | Samuel Ortiz | 1 | -1/+8 | |
WPAD starts also when the proxy method is configured to AUTO but it's missing a PAC URL. | |||||
2011-01-13 | service: Add proxy_config for storing configured proxy method | Samuel Ortiz | 1 | -11/+21 | |
If service->proxy_config is set, WPAD will not be started unless proxy_config is AUTO but without a PAC URL. | |||||
2011-01-12 | service: Define proxy setting helper | Samuel Ortiz | 2 | -0/+11 | |
2011-01-11 | service: Set proxy to DIRECT if unknown | Samuel Ortiz | 1 | -3/+3 | |
2011-01-11 | service: Set proxy method to AUTO from set_proxy_autoconfig | Samuel Ortiz | 1 | -0/+2 | |
2011-01-11 | TODO: Remove implemented entries | Samuel Ortiz | 1 | -34/+2 | |
2011-01-10 | Add ipv4 and ipv6 method scripts to test_scripts | Samuel Ortiz | 1 | -3/+3 | |
2011-01-10 | ipconfig: Restore original IPv6 interface status when connman quits | Jukka Rissanen | 1 | -0/+36 | |
2011-01-10 | ipconfig: Set ipconfig method correctly for IPv4 and IPv6 config | Jukka Rissanen | 1 | -2/+75 | |
2011-01-10 | test: Fix set-ipv4-method usage print | Jukka Rissanen | 1 | -1/+1 | |
2011-01-10 | test: Renamed set-ip-method to be consistent with IPv6 script | Jukka Rissanen | 1 | -0/+0 | |
2011-01-10 | test: Test script for setting IPv6 Method | Jukka Rissanen | 1 | -0/+33 | |
2011-01-10 | doc: Update description of Phase2-keyword | Henri Bragge | 1 | -1/+3 | |
2011-01-10 | gsupplicant: Support EAP phase2 authentication methods | Henri Bragge | 1 | -1/+5 | |
2011-01-10 | supplicant: Support EAP phase2 authentication methods | Henri Bragge | 1 | -1/+5 | |
2011-01-10 | service: Do not unref ipconf layer upon disconnection | Samuel Ortiz | 1 | -29/+6 | |
The ipconfig layer is referenced at service creation time and should thus be unreferenced when freeing said service. | |||||
2011-01-10 | wifi: Stack based crash risk fixed | Tomasz Bursztyka | 2 | -3/+9 | |
2011-01-08 | doc: Fix possible values for IPv6 Method in service API | Jukka Rissanen | 1 | -3/+1 | |
2011-01-08 | service: Do not disconnect IPv4 if IPv6 method changes | Jukka Rissanen | 1 | -27/+23 | |