summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-03-25inet: MTU and tunnel setup functions added.Jukka Rissanen2-2/+72
2011-03-25doc: Add description about 6to4 tunnelling.Jukka Rissanen1-1/+5
2011-03-23dhcp: Fix memory leakDaniel Wagner1-12/+64
And be a bit more clever when there is new dhcp lease. Only propagate real changes in the configuration for nameservers, timeserver and PAC.
2011-03-23service: Send D-Bus reply for Manager.ConnectService when service is readySamuel Ortiz2-6/+17
The D-Bus reply for Manager.ConnectService is currently immediatly returning the service path. It should still return it, but only after the service is ready or failed to connect. Fixes BMC#14798 Fixes BMC#14808
2011-03-22dhcp: Reset IP settings upon changesSamuel Ortiz1-7/+33
The IP settings should not change when a DHCP renewal gives the same configuration.
2011-03-22ipconfig: Clear ipconfig address when removing itSamuel Ortiz1-2/+10
2011-03-22dhcp: Remove unused net stringSamuel Ortiz1-2/+1
2011-03-21dhcp: do not overwrite DNS serversLucas De Marchi1-1/+1
The counter 'i' was not being incremented, making secondary DNS servers to overwrite the first ones.
2011-03-21service: Destroy counter hash in service_freeDaniel Wagner1-2/+2
2011-03-17timeserver: Fix memory leakDaniel Wagner1-0/+2
Reported by: DJ Cozatt <ygdrasil@comcast.net>
2011-03-17inet: Fix inconsistent use of strdup and g_freeDaniel Wagner1-3/+3
Reported by: DJ Cozatt <ygdrasil@comcast.net>
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-17gresolv: Fix memory leakDaniel Wagner1-1/+3
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-16Release 0.710.71Marcel Holtmann2-1/+14
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-11AUTHORS: Mention Sébastien's contributionsSamuel Ortiz1-0/+1
2011-03-11gweb: Add user_agent_profile field in http headerSébastien Bianti2-1/+23
2011-03-11pacrunner: Pass proper namesevers array pointerSamuel Ortiz1-1/+1
And not the pointer's address. Fixes BMC #14242
2011-03-11dhcp: Stop pending gdhcp client requestsDaniel Wagner1-0/+7
When remove_network is called there could be still a pending dhcp request in the dhcp client. Fixes BMC#13947
2011-03-11tethering: Using /proc/sys/net/bridge to detect the support of bridgeMartin Xu1-2/+2
If bridge is built in kernel, /sys/module/bridge can not be used to detect the support of bridge.
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 Ortiz3-0/+616
This is a plugin to support TI's shared transport driver.
2011-03-09gdbus: Unconditionally remove D-Bus timeoutsGrant Erickson1-3/+0
Address an issue in which the daemon incorrectly handles D-Bus main loop timeouts by only removing timeouts that are not enabled when D-Bus requests a timeout removal.
2011-03-04stats: Fix compiler warning on 64-bit machinesMarcel Holtmann1-1/+1
2011-03-04session: Pass struct connman_session to callbackGustavo F. Padovan1-10/+3
2011-03-04stats: Add an informational message for mmap failuresGrant Erickson1-3/+9
Added an informational message when mmap fails with EINVAL in stats_file_remap.
2011-03-04stats: Avoid double-frees on a failed mappingGrant Erickson1-2/+16
Added debugging statements and ensure, following calls to g_free, that the statistics file name field is set to NULL to ensure that a failed file mapping and a subsequent call to stats_free doesn't fault when trying to double-free it.
2011-03-03device: Remove connman_device_set_connected from device.hSamuel Ortiz1-2/+0
The routine is not even implemented.
2011-03-03bluetooth: Set service state to IDLE when PAN connection failsSamuel Ortiz1-4/+13
2011-03-02profile: Ignore malformed profilesGrant Erickson1-0/+13
Ignore malformed profiles. That is, if there is no non-extension portion to the file (i.e. it is precisely named .profile), then ignore it. Passing such files to create_profile will result in a SIGABRT.
2011-03-02ipconfig: Catch IPv6 default route creation and deletion.Jukka Rissanen1-6/+10
2011-03-02rtnl: Catch IPv6 route netlink messages.Jukka Rissanen1-25/+97
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-03-02network: Export connman_network_get_connecting() to pluginsHenri Bragge5-5/+4
2011-02-25provider: Initial IPv6 supportSamuel Ortiz1-34/+40
2011-02-25connection: Do not move to DISCONNECT when removing a gatewaySamuel Ortiz2-8/+8
The state change should be handled by the caller.
2011-02-25openconnect: Support IPv6 settingsSamuel Ortiz1-7/+45
2011-02-25service: Add a generic ipconfig selection routineSamuel Ortiz5-15/+19
2011-02-25network: Remove gateway when network disconnectsSamuel Ortiz2-7/+6
2011-02-25element: Remove IPV4 elementDaniel Wagner4-244/+1
ipv4.c is also removed.
2011-02-25vpnc: Port to the new provider APIsSamuel Ortiz1-5/+26
2011-02-25provider: Remove IPv4 element registrationDaniel Wagner3-157/+81
2011-02-25ipconfig: Remove __connman_ipconfig_set_element_ipv6_gatewaySamuel Ortiz2-12/+0
This routine is unused.
2011-02-25ipconfig: Remove connman_ipconfig_bindSamuel Ortiz2-21/+0
This routine is unused.
2011-02-24network: Fix nameserver setting routineSamuel Ortiz2-2/+6
2011-02-24ofono: Remove IPv4 element registrationDaniel Wagner2-127/+129