summaryrefslogtreecommitdiff
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2011-06-21ofono: Fix add_newtork() error pathdaniel.wagner@bmw-carit.de1-17/+3
After add_network() added the newly created network object to the network_hash and add_netork() bails out with an error the network_remove() callback will called from network.c. Therefore we don't have to free the network object in the error path of add_network(). It will be removed by the network_remove() callback.
2011-06-16element: Remove element.cDaniel Wagner1-1/+0
2011-06-16timeserver: Do not use element driver APIDaniel Wagner1-2/+4
2011-06-16element: Remove network codeDaniel Wagner6-1/+25
2011-06-16service: Remove Service.ModeDaniel Wagner1-3/+1
The only source for the cellular mode update was removed in a474ef1be8b76167b9d0ef8a9eb6fe24cc5eacc5". The WiFi plugin will not support adhoc mode. So this property is completly unused.
2011-06-16wimax: Remove unused station_typeDaniel Wagner3-9/+1
And remove therefore the dependencie on connman_network_set_string().
2011-06-16wifi: Whitespace cleanupDaniel Wagner1-4/+4
2011-05-31ofono: Store Operator string in struct modemDaniel Wagner1-5/+7
So we don't rely on the connman_device_set/get_string().
2011-05-27openvpn: Remove unused variable for VPN domainMarcel Holtmann1-3/+0
2011-05-27ofono: Remove unused code for online support checkMarcel Holtmann1-5/+1
2011-05-27wifi: Remove unused variableMarcel Holtmann1-2/+0
2011-05-22openvpn: Add remote-cert-tlsDaniel Wagner1-0/+1
2011-04-27ntp: Fix ntpd_running return TRUE most of the timeYu A Wang1-1/+2
uninitialized ret value will return TRUE most of the time. By adding bind success situation, ret will be assigned the correct value.
2011-04-17ofono: IPv6 supportSamuel Ortiz1-3/+103
2011-04-17ofono: Remove update_settings forward declarationSamuel Ortiz1-135/+131
2011-04-17ipconfig: Fix connman_ipaddress_set_ipv6 prototypeSamuel Ortiz1-1/+1
Switch the gateway and prefix_length order to be consistent with the ipv4 version.
2011-04-17ofono: Add IPv6 method and address to the info structureSamuel Ortiz1-11/+20
2011-03-30ofono: Check for info pointer in set_active_replyMohamed Abbas1-2/+5
When ofono_disconnect() is being called before receiving the set_active() reply back, info will be NULL. Fixes BMC#14518
2011-03-17vpn: Fix fd leakDaniel Wagner1-1/+3
Reported by: DJ Cozatt <ygdrasil@comcast.net>
2011-03-17vpn: Fix possible null pointer dereferenceDaniel Wagner1-2/+4
Reported by: DJ Cozatt <ygdrasil@comcast.net>
2011-03-17tist: Fix initializing of variableSamuel Ortiz1-3/+3
sizeof(char []) is a pointer size. Reported by: DJ Cozatt <ygdrasil@comcast.net>
2011-03-16ofono: Free network_infoDaniel Wagner1-3/+8
The network_info data structure is not freed. Also the error path does not handle the freeing of the data structure correctly. Reported by: Henri Bragge <henri.bragge@ixonos.com>
2011-03-11pacrunner: Pass proper namesevers array pointerSamuel Ortiz1-1/+1
And not the pointer's address. Fixes BMC #14242
2011-03-11tethering: Add wifi interface to bridge after carrier onMartin Xu1-9/+33
When changing wifi from STA to AP the interface needs to be closed and then opened. Only after the interface is opened and detected carrier, the interface can be added to bridge.
2011-03-11tist: Initial plugin implementationSamuel Ortiz1-0/+598
This is a plugin to support TI's shared transport driver.
2011-03-03bluetooth: Set service state to IDLE when PAN connection failsSamuel Ortiz1-4/+13
2011-03-02ofono: Remove set_connected forward declarationSamuel Ortiz1-28/+25
2011-03-02ofono: Connect when context activation is requestedHenri Bragge1-19/+28
ConnMan should connect the corresponding network/service after a successful response to context activation request. If the context was already active, connecting has to happen this way instead of waiting for active property going up (it already is up). In case the context was inactive before activation, it will not have network index yet and connecting will happen later when activation is ready. This patch removes the reply handler for context inactivation because it would have no other use than logging.
2011-03-02ofono: Do not connect autonomously activated contextsHenri Bragge1-2/+9
When activated context is found, do not connect to it unless requested to do so.
2011-02-25openconnect: Support IPv6 settingsSamuel Ortiz1-7/+45
2011-02-25vpnc: Port to the new provider APIsSamuel Ortiz1-5/+26
2011-02-25provider: Remove IPv4 element registrationDaniel Wagner2-14/+60
2011-02-24ofono: Remove IPv4 element registrationDaniel Wagner1-105/+109
2011-02-23network: Remove address fieldSamuel Ortiz1-44/+0
The address network field holds the WiFi BSSID but is unused.
2011-02-21wifi: Remove interfaces from the bridge when disabling tetheringSamuel Ortiz1-1/+5
2011-02-18ofono: Fix infinite recursion in network disconnectHenri Bragge1-0/+2
If association takes too long and connection timeout goes off, then connman will try to disconnect and ends up in infinite recursion when __connman_network_disconnect() and connman_network_set_connected() call each other.
2011-02-18ofono: Fix memory leak in network activationHenri Bragge1-1/+1
2011-02-16portal: Print region information if availableMarcel Holtmann1-0/+4
2011-02-16service: Remove APN propertySamuel Ortiz1-34/+0
APNs are operator specific settings and should be either provisioned or set through oFono.
2011-02-15service: Refactor Service nameserver APIDaniel Wagner1-3/+4
__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-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-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-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-04proxy: Add implementation for internal proxy framework.Mohamed Abbas1-7/+21
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 Abbas1-0/+147
Register pacrunner proxy driver, add proxy driver functions and call pacrunner daemon to find proxy.
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-03wifi: Use WPA2 only when in AP modeSamuel Ortiz1-0/+1
2011-02-03wifi: Set AP ciphers to CCMP onlySamuel Ortiz1-0/+2
For security reasons, only AES is supported.