Imported Upstream version 1.1.0
[platform/upstream/iotivity.git] / resource / csdk / connectivity / util / src / camanager / arduino / caleconnectionmanager.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 "cacommon.h"
23 #include "logger.h"
24
25 #define TAG "OIC_CA_MANAGER_AR_LE"
26
27 static CAAdapterStateChangedCB g_adapterStateCB = NULL;
28 static CAConnectionStateChangedCB g_connStateCB = NULL;
29
30 void CASetLENetworkMonitorCallbacks(CAAdapterStateChangedCB adapterStateCB,
31                                     CAConnectionStateChangedCB connStateCB)
32 {
33     OIC_LOG(DEBUG, TAG, "CASetLENetworkMonitorCallbacks");
34
35     g_adapterStateCB = adapterStateCB;
36     g_connStateCB = connStateCB;
37 }
38
39 CAResult_t CASetLEClientAutoConnectionDeviceInfo(const char * address)
40 {
41     OIC_LOG(DEBUG, TAG, "CASetClientAutoConnectionDeviceInfo");
42     (void)address;
43     return CA_NOT_SUPPORTED;
44 }
45
46 CAResult_t CAUnsetLEClientAutoConnectionDeviceInfo(const char * address)
47 {
48     OIC_LOG(DEBUG, TAG, "CAUnsetClientAutoConnectionDeviceInfo");
49     (void)address;
50     return CA_NOT_SUPPORTED;
51 }
52
53 void CAStartServerLEAdvertising()
54 {
55     OIC_LOG(DEBUG, TAG, "CAStartServerLEAdvertising");
56 }
57
58 void CAStopServerLEAdvertising()
59 {
60     OIC_LOG(DEBUG, TAG, "CAStopServerLEAdvertising");
61 }