|
Loading...
|
connman@connman.net
[Prev] Thread [Next] | [Prev] Date [Next]
[PATCH v6 00/14] NTP Overhaul Alok Barsode Thu Apr 05 04:00:23 2012
From: Alok Barsode <[EMAIL PROTECTED]>
Hi,
Modifications from ver5:
Instead of caching service_gw, we get the service gw everytime
we create a timeserver list. This is done by exporting the default
service via __connman_get_default_service().
Minor indentation issues fixed.
Cheers,
Alok.
Alok Barsode (14):
meego: Remove the meego plugin
Replace older system timeserver values with new ones instead of
appending
service: Add __connman_service_get_default
timeserver: Trigger ntp on default changed notifier
timeserver: Create timeserver list
timeserver: Add service gateway to timeserver list
service: Add Timeservers.Configuration Property
timeserver: Add Timeservers.Configuration to timeserver list
doc: Add Timeserves.Configuration service property
test: Add set-timeservers
ntp: Shorten NTP failure delay
main: Parse FallbackTimeservers list from main.conf
timeservers: Add Fallback Timerservers
timeserver: Check for resolv before accessing it
Makefile.am | 1 -
Makefile.plugins | 12 --
bootstrap-configure | 1 -
configure.ac | 6 -
doc/service-api.txt | 15 +++
include/service.h | 1 +
include/setting.h | 1 +
include/timeserver.h | 3 +-
plugins/meego.c | 43 -------
src/clock.c | 26 ++++-
src/connman.h | 2 +-
src/main.c | 21 +++
src/main.conf | 7 +
src/ntp.c | 4 +-
src/service.c | 98 +++++++++++++--
src/timeserver.c | 328 +++++++++++++++++++++++++-------------------------
test/set-timeservers | 20 +++
17 files changed, 343 insertions(+), 246 deletions(-)
delete mode 100644 plugins/meego.c
create mode 100755 test/set-timeservers
--
1.7.5.4
_______________________________________________
connman mailing list
[EMAIL PROTECTED]
http://lists.connman.net/listinfo/connman
- [PATCH v6 00/14] NTP Overhaul Alok Barsode 2012/04/05 <=
- [PATCH v6 01/14] meego: Remove the meego plugin Alok Barsode 2012/04/05
- [PATCH v6 02/14] Replace older system timeserver values with new ones instead of appending Alok Barsode 2012/04/05
- [PATCH v6 03/14] service: Add __connman_service_get_default Alok Barsode 2012/04/05
- [PATCH v6 04/14] timeserver: Trigger ntp on default changed notifier Alok Barsode 2012/04/05
- [PATCH v6 05/14] timeserver: Create timeserver list Alok Barsode 2012/04/05
- [PATCH v6 06/14] timeserver: Add service gateway to timeserver list Alok Barsode 2012/04/05
- [PATCH v6 07/14] service: Add Timeservers.Configuration Property Alok Barsode 2012/04/05
- [PATCH v6 08/14] timeserver: Add Timeservers.Configuration to timeserver list Alok Barsode 2012/04/05
- [PATCH v6 09/14] doc: Add Timeserves.Configuration service property Alok Barsode 2012/04/05
- [PATCH v6 10/14] test: Add set-timeservers Alok Barsode 2012/04/05