summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-02-15service: Refactor Service nameserver APIDaniel Wagner8-87/+167
__connman_service_append/remove_namerserver() is renamed to __connman_service_nameserver_append/remove to be more consistent with the other Service API naming. Also the semantic changes to append/remove instead of set/clear. The list of configured nameservers takes preference over the list of discovered (DHCP, VPN, ...) nameservers.
2011-02-15technology: Remove "blocked" state and use "offline" state insteadAlok Barsode2-10/+7
Both "offline" and "blocked" states mean the same hence merging them.
2011-02-15network: IPv6 must go through disconnect state before idleJukka Rissanen1-0/+7
2011-02-11network: Back to IDLE when network is not connectedSamuel Ortiz1-2/+2
2011-02-11TODO: IPv6 enhancements are doneJukka Rissanen1-13/+0
2011-02-11ipconfig: Enable ipconfig if loading autoconfigurable IPv6 configJukka Rissanen1-1/+14
2011-02-11service: Change IPv4 state when address is releasedJukka Rissanen1-0/+6
2011-02-11service: Check service state properly if user changes methodJukka Rissanen1-16/+47
2011-02-11service: IPv6 autoconf will change the service stateJukka Rissanen1-0/+28
2011-02-11network: Set service state correctly when ipconfig is clearedJukka Rissanen1-1/+8
2011-02-11network: Enable IPv6 autoconf to change the service state to readyJukka Rissanen1-2/+41
2011-02-11ipconfig: Enable or disable IPv6 when loading the saved serviceJukka Rissanen1-0/+8
2011-02-11service: Split service state to IPv4 and IPv6 partsJukka Rissanen6-72/+303
2011-02-11ipconfig: Added helper function that returns the config typeJukka Rissanen2-0/+8
2011-02-11ipv6: Add property for IPv6 nameserverJukka Rissanen1-0/+1
2011-02-11ipconfig: Clear the ipaddress pointers when address is deletedJukka Rissanen1-1/+2
2011-02-10TODO: VPNc and WiFi tethering are doneSamuel Ortiz1-16/+25
2011-02-10test: Improve tethering scriptsSamuel Ortiz2-9/+18
2011-02-10tethering: Check for kernel bridge supportSamuel Ortiz2-0/+13
2011-02-09rtnl: Fix some uninitalised warningsKalle Valo1-7/+5
src/rtnl.c:578:8: error: 'src' may be used uninitialized in this function src/rtnl.c:610:8: error: 'src' may be used uninitialized in this function src/rtnl.c:1108:19: error: 'servers' may be used uninitialized in this function
2011-02-08AUTHORS: Mention Alok's contributionsSamuel Ortiz1-0/+1
2011-02-08technology: Optimize __connman_technology_remove_interface()Alok Barsode1-12/+7
Using technology_find() instead of looping through technology_list.
2011-02-08technology: Optimize __connman_technology_add_interface()Alok Barsode1-14/+7
Instead of looping through the technology_list, using the technology pointer returned by technology_get().
2011-02-08pacrunner: Remove unitialised use of host_ret variableKalle Valo1-3/+0
For some reason there's a null check for host_ret in parse_url(), which is at that point is an uninitialised local variable. Just remove the check. plugins/pacrunner.c:316:5: error: 'host_ret' may be used uninitialized in this function
2011-02-08iptables: Fix uninitialised use of entry_returnKalle Valo1-3/+4
src/iptables.c:432:20: error: ‘entry_return’ may be used uninitialized in this function
2011-02-08iptables-test: Fix uninitialised use of entry_returnKalle Valo1-3/+4
tools/iptables-test.c:455:20: error: ‘entry_return’ may be used uninitialized in this function
2011-02-08AUTHORS: Mention Henri's contributionsSamuel Ortiz1-0/+1
2011-02-08ofono: Handle ContextAdded/ContextRemoved signalsHenri Bragge1-1/+77
2011-02-08wifi: Check invalid key/passphrase in gsupplicant connect callbackPatrik Flykt1-2/+12
Use network struct as connect callback user data and set network error to CONNMAN_NETWORK_ERROR_INVALID_KEY if gsupplicant indicates key/passphrase error. For other errors < 0 set network error to CONNMAN_NETWORK_ERROR_CONFIGURE_FAIL.
2011-02-08network: Add CONNMAN_NETWORK_ERROR_INVALID_KEY for a networkPatrik Flykt2-0/+14
Add invalid key/passphrase definition for a network and propagate it to the associated service.
2011-02-08service: Add CONNMAN_SERVICE_ERROR_INVALID_KEY to service error enumPatrik Flykt2-0/+8
Add invalid key/passphrase definition for a service and unset the current passphrase when this error is indicated.
2011-02-08gsupplicant: Report AddNetwork and SelectNetwork errors to callerPatrik Flykt1-2/+28
Call interface_connect_data callback when an error is reported for wpa_supplicant AddNetwork and SelectNetwork method calls. In the case of WPA-PSK or WEP key being incorrectly formatted, set the callback result to -ENOKEY.
2011-02-08dnsproxy: Do not add NULL domains to the domain listSamuel Ortiz1-0/+3
2011-02-06plugin: Allow colon as plugin name separatorMarcel Holtmann1-2/+2
2011-02-06Release 0.690.69Marcel Holtmann2-1/+10
2011-02-04service: Remove WPS from the exported D-Bus propertiesSamuel Ortiz6-29/+35
When WPS is supported it is added to the security string array.
2011-02-04AUTHORS: Mention Guillaume's contributionsSamuel Ortiz1-0/+1
2011-02-04ethernet: Create the bridge before to add an interface to it.Guillaume Lucas1-2/+2
The bridge is created by the connman_technology_tethering_notify() function. So this function must be called before to add an interface to the bridge. Means before the call to connman_inet_add_to_bridge().
2011-02-04technology: trigger technology creation by new interfaceGuillaume Lucas1-75/+79
2011-02-04proxy: Add implementation for internal proxy framework.Mohamed Abbas3-13/+130
Add support to call registered proxy driver and report proxy to client. Also Make sure we cancel proxy request if we got disconnected and still waiting for proxy request. Also make sure we set/clear token correctly
2011-02-04pacrunner: Add pacrunner proxy driver.Mohamed Abbas2-0/+151
Register pacrunner proxy driver, add proxy driver functions and call pacrunner daemon to find proxy.
2011-02-04location: Allow to get the service for a locationMohamed Abbas2-0/+8
Add new function to return the service for a location.
2011-02-03TODO: Claim ownership of the provisioning API taskHenri Bragge1-1/+1
2011-02-03wifi: Debug string typoSamuel Ortiz1-1/+1
2011-02-03wifi: Return a tethering error if AP mode is not supported at allSamuel Ortiz1-2/+5
2011-02-03stats: Add comment about MAP_SHAREDDaniel Wagner1-0/+6
Clarify why MAP_SHARED is used instead of the obvious MAP_PRIVATE.
2011-02-03AUTHORS: Mention Grant's contributionsSamuel Ortiz1-0/+1
2011-02-03gsupplicant: Add ciphers only for WPA PSK and EAPSamuel Ortiz1-2/+2
2011-02-03wifi: Use WPA2 only when in AP modeSamuel Ortiz1-0/+1
2011-02-03gsupplicant: Set WPA protocolSamuel Ortiz2-0/+39