]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/timesync/timesyncd-conf.c
timesyncd: split up into multiple source file
[thirdparty/systemd.git] / src / timesync / timesyncd-conf.c
CommitLineData
84e51726
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3/***
4 This file is part of systemd.
5
6 Copyright 2014 Kay Sievers, Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
22#include "timesyncd-manager.h"
23#include "timesyncd-conf.h"
24
25int config_parse_servers(
26 const char *unit,
27 const char *filename,
28 unsigned line,
29 const char *section,
30 unsigned section_line,
31 const char *lvalue,
32 int ltype,
33 const char *rvalue,
34 void *data,
35 void *userdata) {
36
37 Manager *m = userdata;
38
39 assert(filename);
40 assert(lvalue);
41 assert(rvalue);
42
43 if (isempty(rvalue))
44 manager_flush_names(m);
45
46 manager_add_server_string(m, rvalue);
47
48 return 0;
49}