tizen 2.3 release
[kernel/api/system-resource.git] / src / network / daemon-options.c
1 /*
2  * resourced
3  *
4  * Copyright (c) 2000 - 2014 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 /*
20  *  @file: daemon-options.c
21  *
22  *  @desc Entity for working with daemon options
23  *
24  */
25
26 #include "daemon-options.h"
27 #include "macro.h"
28 #include "resourced.h"
29 #include "settings.h"
30 #include "trace.h"
31
32 void load_daemon_opts(struct daemon_opts *daemon_options)
33 {
34         resourced_options options = { 0 };
35
36         ret_msg_if(daemon_options == NULL,
37                          "Invalid daemon options argument\n");
38         load_options(&options);
39         daemon_options->datacall_logging = options.datacall_logging;
40         daemon_options->update_period = options.datausage_timer;
41 }