Implementation of connectivity abstraction feature Release v0.3
[platform/upstream/iotivity.git] / resource / csdk / connectivity / inc / cainterfacecontroller_singlethread.h
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  * @file cainterfacecontroller_singlethread.h
22  * @brief This file contains the APIs for the interface controller
23  */
24 #ifndef __CA_INTERFACE_CONTROLLER_SINGLETHREAD_H_
25 #define __CA_INTERFACE_CONTROLLER_SINGLETHREAD_H_
26
27 #include "caadapterinterface.h"
28
29
30 #ifdef __cplusplus
31 extern "C"
32 {
33 #endif
34
35 void CAInitializeAdapters();
36
37 void CASetPacketReceivedCallback(CANetworkPacketReceivedCallback callback);
38
39 void CASetNetworkChangeCallback(CANetworkChangeCallback callback);
40
41 void CAStartAdapter(CAConnectivityType_t connectivity);
42
43 void CAStopAdapter(CAConnectivityType_t connectivity);
44
45 CAResult_t CAGetNetworkInfo(CALocalConnectivity_t **info, uint32_t *size);
46
47 CAResult_t CASendUnicastData(const CARemoteEndpoint_t *endpoint, void *data, uint32_t length);
48
49 CAResult_t CASendMulticastData(void *data, uint32_t length);
50
51 CAResult_t CAStartListeningServerAdapters();
52
53 CAResult_t CAStartDiscoveryServerAdapters();
54
55 void CATerminateAdapters();
56
57 CAResult_t CAReadData();
58
59 #ifdef __cplusplus
60 } /* extern "C" */
61 #endif
62
63 #endif //#ifndef __CA_INTERFACE_CONTROLLER_H_