summaryrefslogtreecommitdiff
path: root/plugins/pacrunner.c
AgeCommit message (Collapse)AuthorFilesLines
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