fb8c801176b34f23ae471b44288bfd4f764ab8b6
[platform/upstream/iotivity.git] / resource / csdk / connectivity / api / cautilinterface.h
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 #ifndef CA_UTILS_INTERFACE_H_
22 #define CA_UTILS_INTERFACE_H_
23
24 #include "cacommon.h"
25
26 #ifdef __cplusplus
27 extern "C"
28 {
29 #endif
30
31 /**
32  * Callback function type for connection status changes delivery.
33  */
34 typedef void (*CAConnectionStateChangedCB)(CATransportAdapter_t adapter,
35         const char *remote_address, bool connected);
36
37 /**
38  * Callback function type for adapter status changes delivery.
39  * @param[out]   adapter    Transport type information.
40  * @param[out]   enabled    Current adapter status info.
41  */
42 typedef void (*CAAdapterStateChangedCB)(CATransportAdapter_t adapter, bool enabled);
43
44 /**
45  * Register network monitoring callback.
46  * Network status changes are delivered these callback.
47  * @param[in]   adapterStateCB  Adapter state monitoring callback.
48  * @param[in]   connStateCB     Connection state monitoring callback.
49  *
50  * @return  ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
51  */
52 CAResult_t CARegisterNetworkMonitorHandler(CAAdapterStateChangedCB adapterStateCB,
53                                            CAConnectionStateChangedCB connStateCB);
54
55 CAResult_t CASetAutoConnectionDeviceInfo(const char* address);
56
57 CAResult_t CAUnsetAutoConnectionDeviceInfo(const char* address);
58
59 #ifdef __cplusplus
60 } /* extern "C" */
61 #endif
62
63 #endif /* CA_UTILS_INTERFACE_H_ */
64