replace value to macro for HTTP OK
[apps/native/tizen-things-daemon.git] / daemon / src / ttd-cloud-conn-state.c
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Flora License, Version 1.1 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://floralicense.org/license/
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <glib.h>
18 #include "ttd-log.h"
19 #include "ttd-cloud-conn-state.h"
20
21 static ttd_cloud_conn_state_e g_conn_state = TTD_CLOUD_CONN_STATE_DISCONNECTED;
22
23 ttd_cloud_conn_state_e ttd_cloud_conn_state_get(void)
24 {
25         return (ttd_cloud_conn_state_e)g_atomic_int_get(&g_conn_state);
26 }
27
28 int ttd_cloud_conn_state_set(ttd_cloud_conn_state_e state)
29 {
30         g_atomic_int_set(&g_conn_state, state);
31         return 0;
32 }