Corrected @file tags and restored 'Files' section.
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / wifi_adapter / arduino / cawifinwmonitor.cpp
1 /* ****************************************************************
2 *
3 * Copyright 2014 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 /**
22  * @file
23  *
24  * This file is to keep design in sync with other platforms.  Right now
25  * there is no api for network monitioring in arduino.
26  */
27
28 #include "cawifiinterface_singlethread.h"
29
30 #define WIFI_MONITOR_TAG "WIFI_MONITOR"
31
32 CAResult_t CAWiFiInitializeNetworkMonitor(void)
33 {
34     return CA_STATUS_OK;
35 }
36
37 CAResult_t CAWiFiStartNetworkMonitor(void)
38 {
39     return CA_STATUS_OK;
40 }
41
42 CAResult_t CAWiFiGetInterfaceInfo(char **interfaceName, char **ipAddress)
43 {
44     return CA_STATUS_OK;
45 }
46
47 bool CAWiFiIsConnected(void)
48 {
49     return true;
50 }
51
52 void CAWiFiSetConnectionStateChangeCallback(CAWiFiConnectionStateChangeCallback callback)
53 {
54     return;
55 }
56
57 CAResult_t CAWiFiStopNetworkMonitor(void)
58 {
59     return CA_STATUS_OK;
60 }
61
62 void CAWiFiTerminateNetworkMonitor(void)
63 {
64     return;
65 }