Added COAP over TCP feature for Arduino for Transport TCP
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / tcp_adapter / arduino / catcpadapterutils_eth.h
1 /* ****************************************************************
2  *
3  * Copyright 2015 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  * This file provides APIs ethernet client/server/network monitor modules.
24  */
25
26 #ifndef CA_ETHERNET_ADAPTER_UTILS_
27 #define CA_ETHERNET_ADAPTER_UTILS_
28
29 #include <Arduino.h>
30 #include <Ethernet.h>
31 #include <socket.h>
32 #include <w5100.h>
33 #include <IPAddress.h>
34
35 #include "logger.h"
36 #include "cacommon.h"
37 #include "caadapterinterface.h"
38 #include "caipadapter.h"
39 #include "caadapterutils.h"
40
41 #ifdef __cplusplus
42 extern "C"
43 {
44 #endif
45
46 /**
47  * Get available TCP socket.
48  * @param[out]   sockID         Available UDP socket ID.
49  * @return  ::CA_STATUS_OK or Appropriate error code.
50  */
51 CAResult_t CAArduinoGetAvailableTCPSocket(int *sockID);
52
53 /**
54  * Initialize Unicast TCP socket.
55  * @param[in/out]   port        Port to start the unicast server.
56  * @param[out]      socketID    Unicast socket ID.
57  * @return  ::CA_STATUS_OK or Appropriate error code.
58  */
59 CAResult_t CAArduinoInitTCPSocket(uint16_t *port, int *socketID);
60
61 #ifdef __cplusplus
62 }
63 #endif
64
65 #endif /* CA_ETHERNET_ADAPTER_UTILS_ */
66