Merge branch 'resource-container'
[platform/upstream/iotivity.git] / resource / csdk / connectivity / util / src / cautilinterface.c
1 /* ****************************************************************
2  *
3  * Copyright 2016 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 #include "camanagerleinterface.h"
22 #include "cautilinterface.h"
23
24 #include "cacommon.h"
25 #include "logger.h"
26
27 #define TAG "OIC_CA_UTIL_INF"
28
29 CAResult_t CARegisterNetworkMonitorHandler(CAAdapterStateChangedCB adapterStateCB,
30                                            CAConnectionStateChangedCB connStateCB)
31 {
32     OIC_LOG(DEBUG, TAG, "CARegisterNetworkMonitorHandler");
33
34 #ifdef LE_ADAPTER
35     CASetLENetworkMonitorCallbacks(adapterStateCB, connStateCB);
36     return CA_STATUS_OK;
37 #else
38     return CA_NOT_SUPPORTED;
39 #endif
40
41 }
42
43 CAResult_t CASetAutoConnectionDeviceInfo(const char *address)
44 {
45     OIC_LOG(DEBUG, TAG, "CASetAutoConnectionDeviceInfo");
46
47 #ifdef LE_ADAPTER
48     return CASetLEClientAutoConnectionDeviceInfo(address);
49 #else
50     return CA_NOT_SUPPORTED;
51 #endif
52 }
53
54 CAResult_t CAUnsetAutoConnectionDeviceInfo(const char *address)
55 {
56     OIC_LOG(DEBUG, TAG, "CAUnsetAutoConnectionDeviceInfo");
57
58 #ifdef LE_ADAPTER
59     return CAUnsetLEClientAutoConnectionDeviceInfo(address);
60 #else
61     return CA_NOT_SUPPORTED;
62 #endif
63 }