summaryrefslogtreecommitdiff
path: root/plugins/pacrunner.c
AgeCommit message (Collapse)AuthorFilesLines
2018-01-23Updated connman to version 1.35Seonah Moon1-10/+0
Change-Id: I13526fbf80296a79be15548fc226a308941ac9ec Signed-off-by: Taesub Kim <taesub.kim@samsung.com>
2018-01-08Imported Upstream version 1.35upstream/1.35Seonah Moon1-10/+0
Change-Id: I174854914d9fd06a813270b57d1f7bc2bac63c6a Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
2015-08-07Base Code merged to SPIN 2.4submit/tizen/20150810.034432hyunuktak1-0/+0
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com> Change-Id: I84a42375b5c59739e4caca1f726699ea7647ef17
2014-07-17Imported Upstream version 1.24upstream/1.24Zhang zhengguang1-34/+29
2012-04-29plugins: Update copyright informationMarcel Holtmann1-1/+1
2012-04-19pacrunner: Memory leak in dbus containerJukka Rissanen1-2/+7
Valgrind reported memory leak here. The dbus message container must be not left open because it has allocated resources so we close the container before returning.
2012-01-05service: Return all system defined nameservers when askedJukka Rissanen1-0/+1
The connman_service_get_nameservers() is changed to return all system defined nameservers. This means that the function now returns an allocated array of all nameservers and caller must deallocate the returned array. The change is needed so that we can combine the nameservers that are set by DHCP code and the IPv6 nameservers that are set by router advertisements.
2011-03-11pacrunner: Pass proper namesevers array pointerSamuel Ortiz1-1/+1
And not the pointer's address. Fixes BMC #14242
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-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-01-13pacrunner: Implement proxy_changed hookSamuel Ortiz1-0/+16
When the default service proxy changes, a new configuration is pushed to PACRunner.
2010-10-18Update pacrunner plugin to take care of all proxy methodsTomasz Bursztyka1-16/+63
2010-09-22Add method, domainname and nameserver to proxy configurationMarcel Holtmann1-42/+46
2010-09-21Add interface string to proxy configurationMarcel Holtmann1-21/+35
2010-09-20Add support for PAC runner configuration updatesMarcel Holtmann1-0/+211
2010-09-19Add skeleton for PAC runner supportMarcel Holtmann1-0/+39