Merge branch 'connectivity-abstraction' to master
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / bt_edr_adapter / android / caedrnwmonitor.c
1 #include <stdio.h>
2 #include <string.h>
3 #include <jni.h>
4
5 #include "caedrinterface.h"
6 #include "logger.h"
7 #include "oic_malloc.h"
8 #include "uthreadpool.h" /* for thread pool */
9 #include "umutex.h"
10 #include "uarraylist.h"
11 #include "caadapterutils.h"
12
13 //#define DEBUG_MODE
14 #define TAG PCF("CA_EDR_MONITOR")
15
16 // temp method
17
18 CAResult_t CAEDRInitializeNetworkMonitor()
19 {
20     OIC_LOG(DEBUG, TAG, "IN");
21
22     OIC_LOG(DEBUG, TAG, "OUT");
23     return CA_STATUS_OK;
24 }
25
26 void CAEDRSetNetworkChangeCallback(
27     CAEDRNetworkStatusCallback networkChangeCallback)
28 {
29     OIC_LOG(DEBUG, TAG, "IN");
30
31     OIC_LOG(DEBUG, TAG, "OUT");
32 }
33
34 void CAEDRTerminateNetworkMonitor(void)
35 {
36     OIC_LOG(DEBUG, TAG, "IN");
37
38     OIC_LOG(DEBUG, TAG, "OUT");
39 }
40
41 CAResult_t CAEDRStartNetworkMonitor()
42 {
43     OIC_LOG(DEBUG, TAG, "IN");
44
45     OIC_LOG(DEBUG, TAG, "OUT");
46     return CA_STATUS_OK;
47 }
48
49 CAResult_t CAEDRStopNetworkMonitor()
50 {
51     OIC_LOG(DEBUG, TAG, "IN");
52
53     OIC_LOG(DEBUG, TAG, "OUT");
54     return CA_STATUS_OK;
55 }
56
57 CAResult_t CAEDRClientSetCallbacks(void)
58 {
59     OIC_LOG(DEBUG, TAG, "IN");
60
61     OIC_LOG(DEBUG, TAG, "OUT");
62     return CA_STATUS_OK;
63 }
64