This series of patches introduces the network time part of the NITZ feature as outlined in 3GPP spec 22.042. The plugin is for delivering network indicated time information to timed process which is responsible for maintaining the system time. The delivery is achieved by timed implementing an interface with a method that is called by the nettime plugin with time related info as a parameter of the method. Antti Paila (4): nettime: Network time plugin implementation nettime: Makefile.am modification nettime: Documentation nettime: Mock Timed for testing Makefile.am | 9 +- doc/network-time-api.txt | 36 +++++ plugins/nettime.c | 326 ++++++++++++++++++++++++++++++++++++++++++++++ test/test-nettime | 35 +++++ 4 files changed, 404 insertions(+), 2 deletions(-) create mode 100644 doc/network-time-api.txt create mode 100644 plugins/nettime.c create mode 100755 test/test-nettime