Implementation of connectivity abstraction feature-Ubutu v0.1
authorashok.channa <ashok.channa@samsung.com>
Fri, 14 Nov 2014 14:32:40 +0000 (23:32 +0900)
committerashok.channa <ashok.channa@samsung.com>
Thu, 20 Nov 2014 05:26:19 +0000 (14:26 +0900)
Connectivity Abstraction feature provides unified approach for multiple
Transports

Adding WIFI transport support on Ubuntu platform in the  v0.1 release
We followed Coding guidelines as per current base source.

Please read the Release notes v0.1 for more information.
Non Supported code is just made to print the message.

Change-Id: Id018c10680a5cf0ce046592da46cc3ad69669d77
Signed-off-by: ashok.channa <ashok.channa@samsung.com>
126 files changed:
resource/csdk/connectivity/RELEASE v0.1 [new file with mode: 0644]
resource/csdk/connectivity/api/cacommon.h [new file with mode: 0644]
resource/csdk/connectivity/api/cainterface.h [new file with mode: 0644]
resource/csdk/connectivity/build/linux/Makefile [new file with mode: 0644]
resource/csdk/connectivity/build/linux/common.mk [new file with mode: 0644]
resource/csdk/connectivity/common/inc/logger.h [new file with mode: 0644]
resource/csdk/connectivity/common/inc/oic_console_logger.h [new file with mode: 0644]
resource/csdk/connectivity/common/inc/oic_logger.h [new file with mode: 0644]
resource/csdk/connectivity/common/inc/oic_logger_types.h [new file with mode: 0644]
resource/csdk/connectivity/common/inc/oic_malloc.h [new file with mode: 0644]
resource/csdk/connectivity/common/inc/uarraylist.h [new file with mode: 0644]
resource/csdk/connectivity/common/inc/umutex.h [new file with mode: 0644]
resource/csdk/connectivity/common/inc/uqueue.h [new file with mode: 0644]
resource/csdk/connectivity/common/inc/uthreadpool.h [new file with mode: 0644]
resource/csdk/connectivity/common/src/logger.c [new file with mode: 0644]
resource/csdk/connectivity/common/src/oic_console_logger.c [new file with mode: 0644]
resource/csdk/connectivity/common/src/oic_logger.c [new file with mode: 0644]
resource/csdk/connectivity/common/src/oic_malloc.c [new file with mode: 0644]
resource/csdk/connectivity/common/src/uarraylist.c [new file with mode: 0644]
resource/csdk/connectivity/common/src/umutex.c [new file with mode: 0644]
resource/csdk/connectivity/common/src/uqueue.c [new file with mode: 0644]
resource/csdk/connectivity/common/src/uthreadpool.c [new file with mode: 0644]
resource/csdk/connectivity/inc/caadapterinterface.h [new file with mode: 0644]
resource/csdk/connectivity/inc/caedradapter.h [new file with mode: 0644]
resource/csdk/connectivity/inc/caerrorcode.h [new file with mode: 0644]
resource/csdk/connectivity/inc/caethernetadapter.h [new file with mode: 0644]
resource/csdk/connectivity/inc/cainterfacecontroller.h [new file with mode: 0644]
resource/csdk/connectivity/inc/caleadapter.h [new file with mode: 0644]
resource/csdk/connectivity/inc/camessagehandler.h [new file with mode: 0644]
resource/csdk/connectivity/inc/canetworkconfigurator.h [new file with mode: 0644]
resource/csdk/connectivity/inc/caprotocolmessage.h [new file with mode: 0644]
resource/csdk/connectivity/inc/caremotehandler.h [new file with mode: 0644]
resource/csdk/connectivity/inc/cawifiadapter.h [new file with mode: 0644]
resource/csdk/connectivity/inc/cawificore.h [new file with mode: 0644]
resource/csdk/connectivity/inc/cawifiethernetadapter.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/.gitignore [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/ChangeLog [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/LICENSE.BSD [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/LICENSE.GPL [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/Makefile [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/Makefile.in [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/README [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/address.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/async.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/async.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/bits.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/block.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/block.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/coap.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/coap_list.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/coap_list.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/coap_time.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/config.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/config.h.in [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/config.log [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/config.status [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/configure [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/configure.in [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/debug.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/debug.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/encode.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/encode.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/examples/Makefile [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/examples/Makefile.in [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/examples/client.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/examples/etsi_iot_01.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/examples/rd.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/examples/server.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/examples/tiny.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/hashkey.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/hashkey.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/mem.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/net.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/net.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/option.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/option.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/pdu.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/pdu.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/prng.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/resource.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/resource.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/str.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/str.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/subscribe.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/subscribe.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/t_list.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/Makefile [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/Makefile.in [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_error_response.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_error_response.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_options.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_options.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_pdu.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_pdu.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_sendqueue.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_sendqueue.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_uri.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_uri.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_wellknown.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_wellknown.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/tests/testdriver.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/uri.c [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/uri.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/uthash.h [new file with mode: 0644]
resource/csdk/connectivity/lib/libcoap-4.1.1/utlist.h [new file with mode: 0644]
resource/csdk/connectivity/samples/linux/.gitignore [new file with mode: 0644]
resource/csdk/connectivity/samples/linux/Makefile [new file with mode: 0644]
resource/csdk/connectivity/samples/linux/README [new file with mode: 0644]
resource/csdk/connectivity/samples/linux/sample.sh [new file with mode: 0644]
resource/csdk/connectivity/samples/linux/sample_main.c [new file with mode: 0644]
resource/csdk/connectivity/samples/linux/threadpool/Makefile [new file with mode: 0644]
resource/csdk/connectivity/samples/linux/threadpool/main.c [new file with mode: 0644]
resource/csdk/connectivity/src/bt_edr_adapter/linux/caedradapter.c [new file with mode: 0644]
resource/csdk/connectivity/src/bt_le_adapter/caleadapter.c [new file with mode: 0644]
resource/csdk/connectivity/src/bt_le_adapter/linux/caleadapter.c [new file with mode: 0644]
resource/csdk/connectivity/src/caconnectivitymanager.c [new file with mode: 0644]
resource/csdk/connectivity/src/cainterfacecontroller.c [new file with mode: 0644]
resource/csdk/connectivity/src/camessagehandler.c [new file with mode: 0644]
resource/csdk/connectivity/src/canetworkconfigurator.c [new file with mode: 0644]
resource/csdk/connectivity/src/caprotocolmessage.c [new file with mode: 0644]
resource/csdk/connectivity/src/caremotehandler.c [new file with mode: 0644]
resource/csdk/connectivity/src/ethernet_adapter/linux/caethernetadapter.c [new file with mode: 0644]
resource/csdk/connectivity/src/wifi_adapter/cawifiethernetadapter.c [new file with mode: 0644]
resource/csdk/connectivity/src/wifi_adapter/linux/cawifiadapter.c [new file with mode: 0644]
resource/csdk/connectivity/src/wifi_adapter/linux/cawificore.c [new file with mode: 0644]
resource/csdk/connectivity/unittests/linux/sample1_unittest.cc [new file with mode: 0644]

diff --git a/resource/csdk/connectivity/RELEASE v0.1 b/resource/csdk/connectivity/RELEASE v0.1
new file mode 100644 (file)
index 0000000..c1f3f27
--- /dev/null
@@ -0,0 +1,69 @@
+Project Name: IoTivity
+Release Version No. / Label Name: CA_v0.1
+API Version: CA_v0.4
+
+Release Description:
+Connectivity Abstraction provides a unified approach to send different OIC messages across multiple transports.
+
+Scope of Release:
+1. Supported APIs ( please check below APIs)
+2. Samples to test Supported APIs.
+3. OIC Coding guidelines followed based on the current CSDK source.
+4. Multi-Threaded Connectivity abstraction
+5. Executed Open Source Verification and Prevent analysis.
+
+The following Connectivity Abstraction API features are supported in this release:
+
+Supported APIs
+CAInitialize()
+CATerminate()
+CAStartListeningServer()
+CAStartDiscoveryServer()
+CARegisterHandler()
+CAhandleRequestResponse()
+FindResource()
+SendRequest()
+SendResponse()
+SelectNetwork()
+UnselectNetwork()
+
+Non Supported APIs
+SendNotification()
+AdvertizeResource()
+CAGenerateToken()
+CADestryToken()
+CAGetNetworkInfo()
+
+Type of Release: Source,
+Platform OS: Ubuntu 12.0.4 and above:
+
+Connectivity: WIFI only
+Preconditions:
+1)gcc 4.6.3 and above.
+2)glib library (sudo apt-get install libglib2.0-dev)
+3)libcoap.a library ( do make @lib/libcoap-4.1.1)
+
+Known and Open Issues:
+1) OIC Log, OIC malloc will be removed once name changes applied to OIC Bases code
+2) Support only WIFI Interface.
+3) URI length is 16 characters.
+
+Nature of Release: Partial
+
+How to Build:
+Follow below steps to execute CA Client / server in different systems
+Step 1: Build Libcoap library
+Make File Location @connectivity\lib\libcoap-4.1.1
+Step 2: Build CA library
+Make File Location @connectivity\build\linux
+Step 3: Samples
+Make File Location @connectivity\samples\linux
+
+NOTE: sample.sh script can be used @connectivity\samples\linux for 3 steps together
+
+Execution:
+linux$ export LD_LIBRARY_PATH=../../build/out/
+linux$ ./out/sample_main
+
+Client Option : d, f, h Client
+Server Option : s, h
diff --git a/resource/csdk/connectivity/api/cacommon.h b/resource/csdk/connectivity/api/cacommon.h
new file mode 100644 (file)
index 0000000..7e4cda1
--- /dev/null
@@ -0,0 +1,265 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+/**
+ * @file cacommon.h
+ * @brief This file contains the common data structures between Resource , CA and adapters
+ */
+#ifndef __CA_COMMON_H_
+#define __CA_COMMON_H_
+
+#include <stdint.h>
+#include <stdlib.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/**
+ @brief IP Address Length
+ */
+#define CA_IPADDR_SIZE 16
+
+/**
+ @brief Mac Address Length for BT
+ */
+#define CA_MACADDR_SIZE 18
+
+/**
+ @brief Max Header Options data length
+ */
+#define CA_MAX_HEADER_OPTION_DATA_LENGTH 16
+
+/**
+ @brief CAPayload_t
+ */
+typedef char* CAPayload_t;
+
+/**
+ @brief CAURI_t
+ */
+typedef char* CAURI_t;
+
+/**
+ @brief CAToken_t
+ */
+typedef char* CAToken_t;
+
+/**
+ @brief CABool_t
+ */
+typedef enum
+{
+    CA_FALSE = 0, CA_TRUE
+} CABool_t;
+
+/**
+ @brief CAConnectivityType_t
+ */
+typedef enum
+{
+    CA_ETHERNET = (1 << 0), CA_WIFI = (1 << 1), CA_EDR = (1 << 2), CA_LE = (1 << 3)
+} CAConnectivityType_t;
+
+/**
+ @brief CANetworkStatus_t
+ */
+typedef enum
+{
+    CA_INTERFACE_UP, CA_INTERFACE_DOWN
+} CANetworkStatus_t;
+
+/**
+ @brief  Address of the local or remote endpoint
+ */
+typedef union
+{
+    /**
+     @brief BT Information
+     */
+    struct
+    {
+        /** @brief Bluettoth Mac Address **/
+        char btMacAddress[CA_MACADDR_SIZE];
+    } BT;
+    /**
+     @brief IP Information
+     */
+    struct
+    {
+        /** Ip address of the interface**/
+        char ipAddress[CA_IPADDR_SIZE];
+        /** port information**/
+        uint32_t port;
+    } IP;
+} CAAddress_t;
+
+/**
+ @brief CAQualityOfService
+ */
+typedef enum
+{
+    CA_LOW_QOS = 0, CA_MEDIUM_QOS, CA_HIGH_QOS, CA_NA_QOS // No Quality is defined, let the stack decide
+} CAQualityOfService_t;
+
+/**
+ @brief CAMethod_t
+ */
+typedef enum
+{
+    CA_GET = 1, CA_POST, CA_PUT, CA_DELETE
+} CAMethod_t;
+
+/**
+ @brief RemoteEndpoint information for connectivities
+ */
+typedef struct
+{
+    /** Resource URI information **/
+    CAURI_t resourceUri;
+    /** Remote Endpoint address **/
+    CAAddress_t addressInfo;
+    /** Connectivity of the endpoint**/
+    CAConnectivityType_t connectivityType;
+} CARemoteEndpoint_t;
+
+/**
+ @brief Local Connectivity information
+ */
+typedef struct
+{
+    /** address of the interface  **/
+    CAAddress_t addressInfo;
+    /** Connectivity type that localconnectivity avaialble **/
+    CAConnectivityType_t type;
+} CALocalConnectivityt_t;
+
+/**
+ @brief Enums for CA return values
+ */
+typedef enum
+{
+    /* Success status code - START HERE */
+    CA_STATUS_OK = 0,
+    CA_STATUS_INVALID_PARAM,
+    CA_DESTINATION_NOT_REACHABLE,
+    CA_SEND_FAILED,
+    CA_RECEVIE_FAILED,
+    CA_MEMORY_ALLOC_FAILED,
+    CA_REQUEST_TIMEOUT,
+    CA_DESTINATION_DISCONNECTED,
+    CA_STATUS_FAILED,
+    CA_NOT_SUPPORTED
+/* Error status code - END HERE */
+} CAResult_t;
+
+/**
+ @brief Enums for CA Response  values
+ */
+typedef enum
+{
+    /* Success status code - START HERE */
+    CA_CREATED = 201,
+    CA_DELETED = 202,
+    CA_VALID = 203,
+    CA_CONTENT = 205,
+    CA_BAD_REQ = 400,
+    CA_BAD_OPT = 402,
+    CA_NOT_FOUND = 404
+/* Error status code - END HERE */
+} CAResponseResult_t;
+
+/**
+ @brief Transport Protocol IDs
+ */
+typedef enum
+{
+    CA_INVALID_ID = (1 << 0), CA_COAP_ID = (1 << 1)
+} CATransportProtocolID_t;
+
+/**
+ * @brief Header options structure to be filled
+ *
+ * This structure is used to hold header information.
+ */
+typedef struct
+{
+    /** The protocol ID this option applies to**/
+    CATransportProtocolID_t protocolID;
+    /** The header option ID which will be added to communication packets**/
+    uint16_t optionID;
+    /** its length   191**/
+    uint16_t optionLength;
+    /** optional data values**/
+    uint8_t optionData[CA_MAX_HEADER_OPTION_DATA_LENGTH];
+} CAHeaderOption_t;
+
+/**
+ * @brief Request Information to be sent
+ *
+ * This structure is used to hold request information
+ */
+
+/**
+ * @brief Base Information received
+ *
+ * This structure is used to hold request & response base information
+ */
+typedef struct
+{
+    /**Qos for the request **/
+    CAQualityOfService_t qos;
+    /** Token for CA**/
+    CAToken_t token;
+    /** Header Options for the request **/
+    CAHeaderOption_t * options;
+    /** Number of Header options**/
+    uint8_t numOptions;
+    /** payload of the request **/
+    CAPayload_t payload;
+} CAInfo_t;
+
+typedef struct
+{
+    /** Name of the Method Allowed **/
+    CAMethod_t method;
+    /** Base Information **/
+    CAInfo_t info;
+} CARequestInfo_t;
+
+/**
+ * @brief Response Information received
+ *
+ * This structure is used to hold response information
+ */
+typedef struct
+{
+    /**Response Result by Resource Model**/
+    CAResponseResult_t result;
+    /**Base Information **/
+    CAInfo_t info;
+} CAResponseInfo_t;
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif //#ifndef __CA_COMMON_H_
diff --git a/resource/csdk/connectivity/api/cainterface.h b/resource/csdk/connectivity/api/cainterface.h
new file mode 100644 (file)
index 0000000..8619f92
--- /dev/null
@@ -0,0 +1,207 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+/**
+ * @file cainterface.h
+ * @brief This file contains the APIs for Resource Model to use
+ */
+
+#ifndef __CA_INTERFACE_H_
+#define __CA_INTERFACE_H_
+
+/**
+ * Connectivity Abstraction Interface Description APIs.
+ */
+#include "cacommon.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/**
+ * @brief   Callback function type for request delivery.
+ *          requestInfo contains different parameters for resource model to understand about the request.
+ * @param   object      [OUT]   Endpoint object from which the request is received. It contains endpoint
+ *                              address based on the connectivity type.
+ * @param   requestInfo [OUT]   Identifier which needs to be sent with request.
+ */
+typedef void (*CARequestCallback)(CARemoteEndpoint_t* object, CARequestInfo_t* requestInfo);
+
+/**
+ * @brief   Callback function type for response delivery.
+ *          responseInfor contains different parameters for resource model to understand about the request.
+ * @param   object          [OUT]   Endpoint object from which the response is received.
+ * @param   responseInfo    [OUT]   Identifier which needs to be mapped with response.
+ */
+typedef void (*CAResponseCallback)(CARemoteEndpoint_t* object, CAResponseInfo_t* responseInfo);
+
+/**
+ * @brief   Initialize the connectivity abstraction module.
+ *          It will initialize adapters, thread pool and other modules based on the platform compilation options.
+ *
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAInitialize();
+
+/**
+ * @brief   Terminate the connectivity abstraction module.
+ *          All threads, data structures are destroyed for next initializations.
+ */
+void CATerminate();
+
+/**
+ * @brief   Starts listening servers.
+ *          This API is used by resource hosting server for listening multicast requests.
+ *          based on the adapters configurations , different kinds of servers are started.
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartListeningServer();
+
+/**
+ * @brief   Starts discovery servers.
+ *          This API is used by resource required clients for listening multicast requests.
+ *          based on the adapters configurations , different kinds of servers are started.
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartDiscoveryServer();
+
+/**
+ * @brief   Register request callbacks and response callbacks.
+ *          requests and responses are delivered these callbacks .
+ * @see     CARequestCallback CAResponseCallback
+ * @param   ReqHandler   [IN]    Request callback ( for GET,PUT ..etc)
+ * @param   RespHandler  [IN]    Response Handler Callback
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CARegisterHandler(CARequestCallback ReqHandler, CAResponseCallback RespHandler);
+
+/**
+ * @brief   Create a Remote endpoint if the URI is available already.
+ *          for FindResource-> unicast requests , this API is used.
+ *          FindResource(URI)-> CACreateRemoteEndpoint , CASendRequest(GET)
+ * @param   uri     [IN]    Absolute URI of the resource to be used to generate the Remote endpoint
+ *                          for ex : coap://10.11.12.13:4545/resource_uri ( for IP)
+ *                          coap://10:11:12:13:45:45/resource_uri ( for BT)
+ * @param   object  [OUT ]  Endpoint object which contains the above parsed data
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CACreateRemoteEndpoint(const CAURI_t uri, CARemoteEndpoint_t** object);
+
+/**
+ * @brief   API Destroy the remote endpoint created
+ * @param   object  [IN]    endpoint object created with CACreateRemoteEndpoint
+ */
+void CADestroyRemoteEndpoint(CARemoteEndpoint_t* object);
+
+/**
+ * @brief   Generating the token for the requests/response.
+ *          Token memory is created and destroyed by the calle.
+ * @param   token   [OUT]   token for the request
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAGenerateToken(CAToken_t* token);
+
+/**
+ * @brief   Destroy the token generated by CAGenerateToken
+ * @param   token   [IN]    token for the request
+ */
+void CADestroyToken(CAToken_t token);
+
+/**
+ * @brief   Find the resource in the network. This API internally sends multicast messages on the
+ *          all connectivity adapters. Responses are delivered via response callbacks.
+ *
+ * @param   resourceUri [IN]    Uri to send multicast search request
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAFindResource(const CAURI_t resourceUri);
+
+/**
+ * @brief   Send control Request on a resource
+ * @param   object      [IN]    Remote Endpoint where the payload need to be sent.
+ *                              This Remote endpoint is delivered with Request or response callback.
+ * @param   requestInfo [IN ]   information for the request.
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CASendRequest(const CARemoteEndpoint_t* object, CARequestInfo_t* requestInfo);
+
+/**
+ * @brief   Sendi the response
+ * @param   object          [IN]    Remote Endpoint where the payload need to be sent.
+ *                                  This Remote endpoint is delivered with Request or response callback
+ * @param   responseInfo    [IN ]   information for the response
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CASendResponse(const CARemoteEndpoint_t* object, CAResponseInfo_t* responseInfo);
+
+/**
+ * @brief   Send notification to the remote object
+ * @param   object          [IN]    Remote Endpoint where the payload need to be sent.
+ *                                  This Remote endpoint is delivered with Request or response callback.
+ * @param   responseInfo    [IN ]   information for the response.
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CASendNotification(const CARemoteEndpoint_t* object, CAResponseInfo_t* responseInfo);
+
+/**
+ * @brief   for advertise the resource
+ * @param   resourceUri [IN]    URI to be advertised
+ * @param   options     [IN]    header options information
+ * @param   numOptions  [IN]    number of options
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAAdvertiseResource(const CAURI_t resourceUri, CAHeaderOption_t* options,
+        uint8_t numOptions);
+
+/**
+ * @brief   Select network to use
+ * @param   interestedNetwork   [IN]    Connectivity Type enum
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CASelectNetwork(const uint32_t interestedNetwork);
+
+/**
+ * @brief   Select network to unuse
+ * @param   nonInterestedNetwork    [IN]    Connectivity Type enum
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAUnSelectNetwork(const uint32_t nonInterestedNetwork);
+
+/**
+ * @brief   Get network information
+ *          It should be destroyed by the caller as its Get Information.
+ * @param   info    [OUT]   LocalConnectivity objects
+ * @param   size    [OUT]   No Of Array objects
+ * @return  CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAGetNetworkInformation(CALocalConnectivityt_t **info, uint32_t* size);
+
+/**
+ * @brief   for usage of singled threaded application.
+ * @return   CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAHandleRequestResponse();
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif
diff --git a/resource/csdk/connectivity/build/linux/Makefile b/resource/csdk/connectivity/build/linux/Makefile
new file mode 100644 (file)
index 0000000..7fb550a
--- /dev/null
@@ -0,0 +1,161 @@
+#/******************************************************************
+# *
+# * Copyright 2014 Samsung Electronics All Rights Reserved.
+# *
+# *
+# *
+# * Licensed under the Apache License, Version 2.0 (the "License");
+# * you may not use this file except in compliance with the License.
+# * You may obtain a copy of the License at
+# *
+# *      http://www.apache.org/licenses/LICENSE-2.0
+# *
+# * Unless required by applicable law or agreed to in writing, software
+# * distributed under the License is distributed on an "AS IS" BASIS,
+# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# * See the License for the specific language governing permissions and
+# * limitations under the License.
+# *
+#******************************************************************/
+
+# override with `make BUILD=debug`
+# default to release build
+# default to build for linux
+BUILD = release
+PLATFORM = linux
+TRANSPORT = ALL
+OBJ_DIR = ./$(BUILD)
+VERSION_MAJOR = 0
+VERSION_MINOR = 1
+VERSION_PATCH = 0
+
+COMMON_MAKE = common.mk
+
+include $(COMMON_MAKE)
+
+#Modify below values to enable/disable the Adapter
+#Suffix "NO_" to disable given adapter  
+EDR = NO_EDR_ADAPTER
+WIFI = WIFI_ADAPTER
+LE = NO_LE_ADAPTER
+ETHERNET = NO_ETHERNET_ADAPTER
+
+#Add Pre processor definitions
+DEFINE_FLAG = -D$(EDR) -D$(LE) -D$(WIFI) -D$(ETHERNET)
+
+#Add Debug flags here
+DEBUG_FLAG = -DTB_LOG
+
+##
+##     definitions
+##
+LIB_PREFIX                             = CA
+ETHERNET_ADAPTER               = ethernet_adapter
+WIFI_ADAPTER                   = wifi_adapter
+BT_ADAPTER                             = bt_edr_adapter
+BLE_ADAPTER                            = bt_le_adapter
+ETHERNET_ADAPTER_PATH  = $(PROJECT_SRC_PATH)/$(ETHERNET_ADAPTER)/$(PLATFORM)
+WIFI_ADAPTER_PATH              = $(PROJECT_SRC_PATH)/$(WIFI_ADAPTER)/$(PLATFORM)
+BT_ADAPTER_PATH                        = $(PROJECT_SRC_PATH)/$(BT_ADAPTER)/$(PLATFORM)
+BLE_ADAPTER_PATH               = $(PROJECT_SRC_PATH)/$(BLE_ADAPTER)/$(PLATFORM)
+TARGET                                 = lib$(PROJECT_NAME).so.$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
+TARGET_ALIAS                   = lib$(PROJECT_NAME).so
+
+##
+##     libcoap
+##
+libcoap_build_dir = $(PROJECT_LIB_PATH)/libcoap-4.1.1
+
+LDFLAGS:=-L$(libcoap_build_dir)
+LDLIBS:=-lcoap
+
+BUILD_FLAG.debug       = $(DEFINE_FLAG) $(DEBUG_FLAG) 
+BUILD_FLAG.release     =       $(DEFINE_FLAG)
+BUILD_FLAG = $(BUILD_FLAG.$(BUILD))
+
+DEBUG_DIR = ./debug
+RELEASE_DIR = ./release
+
+##
+##     file declaration
+##
+COMPONENT_SRCS                 =  \
+logger.c oic_malloc.c oic_logger.c oic_console_logger.c \
+caconnectivitymanager.c caremotehandler.c cainterfacecontroller.c camessagehandler.c   \
+canetworkconfigurator.c caedradapter.c caleadapter.c   \
+caethernetadapter.c cawifiadapter.c \
+caprotocolmessage.c cawificore.c       \
+uqueue.c uarraylist.c umutex.c uthreadpool.c \
+
+COMPONENT_OBJS                 = $(COMPONENT_SRCS:%.c=$(OBJ_DIR)/%.o)
+
+##
+##     compiler flags
+##
+CFLAGS                         =       -g -c -Wall -fPIC `pkg-config --cflags glib-2.0`
+
+LFLAGS                         =       -ldl -lpthread `pkg-config --libs glib-2.0`
+
+IFLAGS                         =       -I$(PROJECT_COMMON_INC_PATH)    \
+                                               -I$(PROJECT_API_PATH)   \
+                                               -I$(PROJECT_INC_PATH)   \
+                                               -I$(ETHERNET_ADAPTER_PATH)      \
+                                               -I$(WIFI_ADAPTER_PATH)  \
+                                               -I$(BT_ADAPTER_PATH)    \
+                                               -I$(BLE_ADAPTER_PATH)   \
+                        -I$(libcoap_build_dir)
+
+DFLAGS                         = -DLINUX               \
+                      -DWITH_POSIX             \
+                      $(BUILD_FLAG)\
+##
+##     compile and link rules
+##
+vpath %.c $(PROJECT_COMMON_SRC_PATH)
+vpath %.c $(ETHERNET_ADAPTER_PATH)
+vpath %.c $(WIFI_ADAPTER_PATH)
+vpath %.c $(BT_ADAPTER_PATH)
+vpath %.c $(BLE_ADAPTER_PATH)
+vpath %.c $(PROJECT_SRC_PATH)
+
+$(OBJ_DIR)/%.o: %.c
+       @$(MAKE_OBJ_PATH)
+       @$(CC) -o $@ $(CFLAGS) $(DFLAGS) $(IFLAGS) $<
+
+all : $(TARGET)
+       @echo   " "
+       @echo   "======================"
+       @echo   "       Success!!"
+       @echo   "======================"
+
+$(TARGET) : $(COMPONENT_OBJS)
+       @$(MAKE_PROJECT_OUT_PATH)
+       @$(CC) -shared -Wl,-soname,$(TARGET) -o $@ $(COMPONENT_OBJS) $(LFLAGS) $(LDFLAGS) $(LDLIBS) 
+       @$(MV) $(TARGET) $(PROJECT_OUT_PATH)/.
+       @$(CD) $(PROJECT_OUT_PATH); $(MAKE_TARGET_ALIAS)
+
+clean :        
+       @$(RM) $(DEBUG_DIR) $(RELEASE_DIR)\
+                       $(PROJECT_OUT_PATH)
+
+install :
+       @$(MAKE_PROJECT_OUT_PATH)
+
+##
+##     macros
+##
+define MAKE_OBJ_PATH
+       @if [ ! -d $(OBJ_DIR) ]; then \
+       mkdir $(OBJ_DIR); \
+       fi
+endef
+
+define MAKE_TARGET_ALIAS
+       if [ ! -f $(TARGET_ALIAS) ]; then \
+       $(LN) -s $(TARGET) $(TARGET_ALIAS); \
+       fi
+endef
+
+.PHONY:        all clean install
+
+
diff --git a/resource/csdk/connectivity/build/linux/common.mk b/resource/csdk/connectivity/build/linux/common.mk
new file mode 100644 (file)
index 0000000..fe66585
--- /dev/null
@@ -0,0 +1,59 @@
+#/******************************************************************
+# *
+# * Copyright 2014 Samsung Electronics All Rights Reserved.
+# *
+# *
+# *
+# * Licensed under the Apache License, Version 2.0 (the "License");
+# * you may not use this file except in compliance with the License.
+# * You may obtain a copy of the License at
+# *
+# *      http://www.apache.org/licenses/LICENSE-2.0
+# *
+# * Unless required by applicable law or agreed to in writing, software
+# * distributed under the License is distributed on an "AS IS" BASIS,
+# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# * See the License for the specific language governing permissions and
+# * limitations under the License.
+# *
+#******************************************************************/
+
+##
+##     Definitions
+##
+SHELL                                          = /bin/bash
+PROJECT_NAME                           = connectivity_abstraction
+PROJECT_ROOT_PATH                      = ../..
+PROJECT_API_PATH                       = $(PROJECT_ROOT_PATH)/api
+PROJECT_INC_PATH                       = $(PROJECT_ROOT_PATH)/inc
+PROJECT_SRC_PATH                       = $(PROJECT_ROOT_PATH)/src
+PROJECT_COMMON_INC_PATH                = $(PROJECT_ROOT_PATH)/common/inc
+PROJECT_COMMON_SRC_PATH                = $(PROJECT_ROOT_PATH)/common/src
+PROJECT_COMMON_PATH                    = $(PROJECT_ROOT_PATH)/common
+PROJECT_OUT_PATH                       = $(PROJECT_ROOT_PATH)/build/out
+PROJECT_LIB_PATH                       = $(PROJECT_ROOT_PATH)/lib
+
+##
+##     macro
+##
+define MAKE_PROJECT_OUT_PATH
+       @if     [ ! -d $(PROJECT_OUT_PATH) ]; then      \
+       mkdir $(PROJECT_OUT_PATH);      \
+       fi
+endef
+
+
+##
+##     Commands
+##
+CC                     = gcc
+CXX                    = g++
+RM                     = rm -rf
+CP                     = cp
+MV                     = mv
+AR                     = ar
+LD                     = ld
+LN                     = ln
+CD                     = cd
+RANLIB         = ranlib
+
diff --git a/resource/csdk/connectivity/common/inc/logger.h b/resource/csdk/connectivity/common/inc/logger.h
new file mode 100644 (file)
index 0000000..b19b037
--- /dev/null
@@ -0,0 +1,178 @@
+//******************************************************************
+//
+// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+#ifndef _U_LOGGER_H_
+#define _U_LOGGER_H_
+
+#include <stdint.h>
+#include <stdio.h>
+#include <stdarg.h>
+#include "oic_logger.h"
+#include "oic_console_logger.h"
+
+#ifdef __ANDROID__
+#include <android/log.h>
+#elif defined ARDUINO
+#include "Arduino.h"
+#include <avr/pgmspace.h>
+#endif
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+// Use the PCF macro to wrap strings stored in FLASH on the Arduino
+// Example:  OC_LOG(INFO, TAG, PCF("Entering function"));
+#ifdef ARDUINO
+#define PCF(str)  ((PROGMEM const char *)(F(str)))
+#else
+#define PCF(str) str
+#endif
+
+// Max buffer size used in variable argument log function
+#define MAX_LOG_V_BUFFER_SIZE (256)
+
+// Log levels
+typedef enum
+{
+    DEBUG = 0, INFO, WARNING, ERROR, FATAL
+} LogLevel;
+
+#ifndef ARDUINO
+
+/**
+ * Configure logger to use a context that defines a custom logger function
+ *
+ * @param ctx - pointer to oc_log_ctx_t struct that defines custom logging functions
+ */
+void OICLogConfig(oic_log_ctx_t *ctx);
+
+/**
+ * Initialize the logger.  Optional on Android and Linux.  Configures serial port on Arduino
+ */
+void OICLogInit();
+
+/**
+ * Called to Free dyamically allocated resources used with custom logging.
+ * Not necessary if default logging is used
+ *
+ */
+void OICLogShutdown();
+
+/**
+ * Output a log string with the specified priority level.
+ * Only defined for Linux and Android
+ *
+ * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag    - Module name
+ * @param logStr - log string
+ */
+void OICLog(LogLevel level, const char * tag, const char * logStr);
+
+/**
+ * Output a variable argument list log string with the specified priority level.
+ * Only defined for Linux and Android
+ *
+ * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag    - Module name
+ * @param format - variadic log string
+ */
+void OICLogv(LogLevel level, const char * tag, const char * format, ...);
+
+/**
+ * Output the contents of the specified buffer (in hex) with the specified priority level.
+ *
+ * @param level      - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag        - Module name
+ * @param buffer     - pointer to buffer of bytes
+ * @param bufferSize - max number of byte in buffer
+ */
+void OICLogBuffer(LogLevel level, const char * tag, const uint8_t * buffer, uint16_t bufferSize);
+#else
+/**
+ * Initialize the serial logger for Arduino
+ * Only defined for Arduino
+ */
+void OICLogInit();
+
+/**
+ * Output a log string with the specified priority level.
+ * Only defined for Arduino.  Uses PROGMEM strings
+ *
+ * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag    - Module name
+ * @param logStr - log string
+ */
+void OICLog(LogLevel level, PROGMEM const char * tag, PROGMEM const char * logStr);
+
+/**
+ * Output the contents of the specified buffer (in hex) with the specified priority level.
+ *
+ * @param level      - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag        - Module name
+ * @param buffer     - pointer to buffer of bytes
+ * @param bufferSize - max number of byte in buffer
+ */
+void OICLogBuffer(LogLevel level, PROGMEM const char * tag, const uint8_t * buffer, uint16_t bufferSize);
+
+/**
+ * Output a variable argument list log string with the specified priority level.
+ *
+ * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag    - Module name
+ * @param format - variadic log string
+ */
+void OICLogv(LogLevel level, const char * tag, const char * format, ...);
+#endif
+
+#ifdef TB_LOG
+// These macros are defined for Linux, Android, and Arduino
+#define OIC_LOG_INIT()    OICLogInit()
+#define OIC_LOG(level, tag, logStr)  OICLog((level), (tag), (logStr))
+#define OIC_LOG_BUFFER(level, tag, buffer, bufferSize)  OICLogBuffer((level), (tag), (buffer), (bufferSize))
+
+#ifdef ARDUINO
+#define OIC_LOG_CONFIG(ctx)
+#define OIC_LOG_SHUTDOWN()
+// Use full namespace for logInit to avoid function name collision
+#define OIC_LOG_INIT()    OICLogInit()
+// Don't define variable argument log function for Arduino
+#define OIC_LOG_V(level, tag, ...) OICLogv((level), (tag), __VA_ARGS__)
+#else
+#define OIC_LOG_CONFIG(ctx)    OICLogConfig((ctx))
+#define OIC_LOG_SHUTDOWN()     OICLogShutdown()
+// Define variable argument log function for Linux and Android
+#define OIC_LOG_V(level, tag, ...)  OICLogv((level), (tag), __VA_ARGS__)
+#endif
+
+#else
+#define OIC_LOG_CONFIG(ctx)
+#define OIC_LOG_SHUTDOWN()
+#define OIC_LOG(level, tag, logStr)
+#define OIC_LOG_V(level, tag, ...)
+#define OIC_LOG_BUFFER(level, tag, buffer, bufferSize)
+#define OIC_LOG_INIT()
+#endif
+
+#ifdef __cplusplus
+}
+#endif // __cplusplus
+#endif /* _U_LOGGER_H_ */
diff --git a/resource/csdk/connectivity/common/inc/oic_console_logger.h b/resource/csdk/connectivity/common/inc/oic_console_logger.h
new file mode 100644 (file)
index 0000000..6ff5894
--- /dev/null
@@ -0,0 +1,44 @@
+//******************************************************************
+//
+// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+#ifndef __OIC_CONSOLE_LOGGER_
+#define __OIC_CONSOLE_LOGGER_
+
+#include "oic_logger_types.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+oic_log_ctx_t *oic_make_console_logger();
+
+int oic_console_logger_init(oic_log_ctx_t *ctx, void *world);
+void oic_console_logger_destroy(oic_log_ctx_t *ctx);
+void oic_console_logger_flush(oic_log_ctx_t *ctx);
+void oic_console_logger_set_level(oic_log_ctx_t *ctx, const int level);
+size_t oic_console_logger_write(oic_log_ctx_t *ctx, const int level, const char *msg);
+int oic_console_logger_set_module(oic_log_ctx_t *ctx, const char *module_name);
+
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
+#endif
diff --git a/resource/csdk/connectivity/common/inc/oic_logger.h b/resource/csdk/connectivity/common/inc/oic_logger.h
new file mode 100644 (file)
index 0000000..df738c2
--- /dev/null
@@ -0,0 +1,48 @@
+//******************************************************************
+//
+// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+#ifndef __OIC_LOGGER_H_
+#define __OIC_LOGGER_H_
+
+#include "oic_logger_types.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/* Basic interface: */
+oic_log_ctx_t *oic_log_make_ctx(void* world, const oic_log_level level, oic_log_init_t init,
+        oic_log_destroy_t destroy, oic_log_flush_t flush, oic_log_set_level_t set_level,
+        oic_log_write_level_t write_level, oic_log_set_module_t set_module);
+
+void oic_log_destroy(oic_log_ctx_t *ctx);
+
+void oic_log_flush(oic_log_ctx_t *ctx);
+void oic_log_set_level(oic_log_ctx_t *ctx, const oic_log_level ll);
+size_t oic_log_write(oic_log_ctx_t *ctx, const char *msg);
+size_t oic_log_write_level(oic_log_ctx_t *ctx, const oic_log_level ll, const char *msg);
+int oic_log_set_module(oic_log_ctx_t *ctx, const char *module_name);
+
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
+#endif
diff --git a/resource/csdk/connectivity/common/inc/oic_logger_types.h b/resource/csdk/connectivity/common/inc/oic_logger_types.h
new file mode 100644 (file)
index 0000000..f372a4c
--- /dev/null
@@ -0,0 +1,86 @@
+//******************************************************************
+//
+// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+#ifndef __OIC_LOGGER_TYPES_H_
+#define __OIC_LOGGER_TYPES_H_
+
+#include <stddef.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+typedef enum
+{
+    __OIC_LOG_MIN__ = -1,
+    OIC_LOG_ALL = 0,
+    OIC_LOG_FATAL,
+    OIC_LOG_ERROR,
+    OIC_LOG_WARNING,
+    OIC_LOG_INFO,
+    OIC_LOG_DEBUG,
+    OIC_LOG_DISABLED,
+    __OIC_LOG_MAX__
+} oic_log_level;
+
+typedef struct _oic_log_ctx
+{
+    void* ctx;
+
+    oic_log_level log_level;
+
+    char* module_name;
+
+    /* Required interface: */
+    int (*init)(struct _oic_log_ctx *, void *);
+    void (*destroy)(struct _oic_log_ctx *);
+    void (*flush)(struct _oic_log_ctx *);
+    void (*set_level)(struct _oic_log_ctx *, const int);
+    size_t (*write_level)(struct _oic_log_ctx *, const int, const char *);
+    int (*set_module)(struct _oic_log_ctx *, const char *);
+
+    /* Optional interface (if one is implemented, all must be implemented): */
+    int (*lock)(struct _oic_log_ctx *);
+    int (*unlock)(struct _oic_log_ctx *);
+    int (*try_lock)(struct _oic_log_ctx *);
+    int (*locked_destroy)(struct _oic_log_ctx *);
+
+} oic_log_ctx_t;
+
+/* Notice that these are all passed the /top level/ ctx-- it's "public" with respect to
+ these functions, they have full access to fiddle with the structure all they want (but,
+ generally should avoid doing that); I could certainly be convinced to go the other direction,
+ and have most functions only take the inner context: */
+typedef int (*oic_log_init_t)(oic_log_ctx_t *, void *);
+typedef void (*oic_log_destroy_t)(oic_log_ctx_t *);
+typedef void (*oic_log_flush_t)(oic_log_ctx_t *);
+typedef void (*oic_log_set_level_t)(oic_log_ctx_t *, const int);
+typedef size_t (*oic_log_write_level_t)(oic_log_ctx_t *, const int, const char *);
+typedef int (*oic_log_set_module_t)(oic_log_ctx_t *, const char *);
+typedef int (*oic_log_lock_t)(oic_log_ctx_t *);
+typedef int (*oic_log_unlock_t)(oic_log_ctx_t *);
+typedef int (*oic_log_try_lock_t)(oic_log_ctx_t *);
+
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
+#endif
diff --git a/resource/csdk/connectivity/common/inc/oic_malloc.h b/resource/csdk/connectivity/common/inc/oic_malloc.h
new file mode 100644 (file)
index 0000000..ae06f14
--- /dev/null
@@ -0,0 +1,84 @@
+//******************************************************************
+//
+// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+#ifndef _OIC_MALLOC_H_
+#define _OIC_MALLOC_H_
+
+// The purpose of this module is to allow custom dynamic memory allocation
+// code to easily be added to the TB Stack by redefining the OICMalloc and
+// OICFree functions.  Examples of when this might be needed are on TB
+// platforms that do not support dynamic allocation or if a memory pool
+// needs to be added.
+//
+// Note that these functions are intended to be used ONLY within the TB
+// stack and NOT by the application code.  The application should be
+// responsible for its own dynamic allocation.
+
+//-----------------------------------------------------------------------------
+// Includes
+//-----------------------------------------------------------------------------
+#include <stdio.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif // __cplusplus
+//-----------------------------------------------------------------------------
+// Defines
+//-----------------------------------------------------------------------------
+
+//-----------------------------------------------------------------------------
+// Typedefs
+//-----------------------------------------------------------------------------
+
+//-----------------------------------------------------------------------------
+// Function prototypes
+//-----------------------------------------------------------------------------
+
+/**
+ * Allocates a block of size bytes, returning a pointer to the beginning of
+ * the allocated block.
+ *
+ * NOTE: This function is intended to be used internally by the TB Stack.
+ *       It is not intended to be used by applications.
+ *
+ * @param size - Size of the memory block in bytes, where size > 0
+ *
+ * @return
+ *     on success, a pointer to the allocated memory block
+ *     on failure, a null pointer is returned
+ */
+void *OICMalloc(size_t size);
+
+/**
+ * Deallocate a block of memory previously allocated by a call to OCMalloc
+ *
+ * NOTE: This function is intended to be used internally by the TB Stack.
+ *       It is not intended to be used by applications.
+ *
+ * @param ptr - Pointer to block of memory previously allocated by OCMalloc.
+ *              If ptr is a null pointer, the function does nothing.
+ */
+void OICFree(void *ptr);
+
+#ifdef __cplusplus
+}
+#endif // __cplusplus
+#endif /* _OIC_MALLOC_H_ */
diff --git a/resource/csdk/connectivity/common/inc/uarraylist.h b/resource/csdk/connectivity/common/inc/uarraylist.h
new file mode 100644 (file)
index 0000000..b26734e
--- /dev/null
@@ -0,0 +1,116 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#ifndef __U_ARRAYLIST_H_
+#define __U_ARRAYLIST_H_
+
+#include <stdint.h>
+#include "cacommon.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/**
+ * Use this default size when initialized
+ */
+#define U_ARRAYLIST_DEFAULT_SIZE 1
+
+/**
+ * @struct u_arraylist_t
+ * @brief array list structure
+ */
+typedef struct u_arraylist_t
+{
+    void **data;
+    uint32_t length;
+    uint32_t size;
+} u_arraylist_t;
+
+/**
+ * @brief API to creates array list and initializes the elements.
+ * @return  u_arraylist_t if Success, NULL otherwise
+ */
+u_arraylist_t* u_arraylist_create();
+
+/**
+ * @brief Resets and deletes the array list
+ * application should free the memory of data in array list
+ * @param u_arraylist_t- u_arraylist pointer
+ * @return CAResult_t
+ * CA_STATUS_OK if Success, CA_STATUS_FAILED otherwise
+ */
+CAResult_t u_arraylist_free(u_arraylist_t *list);
+
+/**
+ * @brief Returns the data of the index from the array list
+ * @param u_arraylist
+ *     [IN] pointer of array list
+ * @param index
+ *     [IN] index of array list
+ * @return void pointer of the data
+ */
+void* u_arraylist_get(const u_arraylist_t *list, uint32_t index);
+
+/**
+ * @brief Add data in the array list
+ * @param u_arraylist
+ *     [IN] pointer of array list
+ * @param data
+ *     [IN] pointer of data
+ * @return CAResult_t
+ * CA_STATUS_OK if Success, CA_STATUS_FAILED otherwise
+ */
+CAResult_t u_arraylist_add(u_arraylist_t *list, void *data);
+
+/**
+ * @brief Remove the data of the index from the array list
+ * @param u_arraylist
+ *     [IN] pointer of array list
+ * @param index
+ *     [IN] index of array list
+ * @return void pointer of the data
+ */
+void* u_arraylist_remove(u_arraylist_t *list, uint32_t index);
+
+/**
+ * @brief Returns the length of the array list
+ * @param u_arraylist
+ *     [IN] pointer of array list
+ * @return length of the array list
+ */
+uint32_t u_arraylist_length(const u_arraylist_t *list);
+
+/**
+ * @brief Returns whether the data exists or not
+ * @param u_arraylist
+ *     [IN] pointer of array list
+ * @param data
+ *     [IN] pointer of data
+ * @return 1 if exists, 0 otherwise
+ */
+uint8_t u_arraylist_contains(const u_arraylist_t *list, void *data);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _U_ARRAYLIST_H_ */
diff --git a/resource/csdk/connectivity/common/inc/umutex.h b/resource/csdk/connectivity/common/inc/umutex.h
new file mode 100644 (file)
index 0000000..30f8336
--- /dev/null
@@ -0,0 +1,143 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+/**
+ * @file    umutex.h
+ * @brief   This file provides APIs related to mutex and semaphores
+ */
+
+#ifndef __UMUTEX_H_
+#define __UMUTEX_H_
+
+#include "cacommon.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+typedef void *u_mutex;
+typedef void *u_cond;
+
+/**
+ * @fn  u_mutex_init
+ * @brief  Initializes the thread system for using other mutex related APIs
+ *
+ */
+void u_mutex_init(void);
+
+/**
+ * @fn  u_mutex_new
+ * @brief  Creates new mutex
+ *
+ * @return  Reference to newly created mutex, otherwise NULL.
+ *
+ * @see u_mutex_Init
+ */
+u_mutex u_mutex_new(void);
+
+/**
+ * @fn  u_mutex_lock
+ * @brief  Lock the mutex
+ *
+ * @param  mutex  The mutex to be locked
+ *
+ */
+void u_mutex_lock(u_mutex mutex);
+
+/**
+ * @fn  u_mutex_trylock
+ * @brief  Checks if the mutex can be locked
+ *
+ * @param  mutex  The mutex to be locked
+ *
+ * @return  CA_TRUE if the mutex is not locked currently, otherwise CA_FALSE.
+ *
+ */
+CABool_t u_mutex_trylock(u_mutex mutex);
+
+/**
+ * @fn  u_mutex_unlock
+ * @brief  Unlock the mutex
+ *
+ * @param  mutex  The mutex to be unlocked
+ *
+ */
+void u_mutex_unlock(u_mutex mutex);
+
+/**
+ * @fn  u_mutex_free
+ * @brief  Free the mutex
+ *
+ * @param  mutex  The mutex to be freed
+ *
+ */
+void u_mutex_free(u_mutex mutex);
+
+/**
+ * @fn  u_cond_new
+ * @brief  Creates new condition
+ *
+ * @return  Reference to newly created @u_cond, otherwise NULL.
+ *
+ * @see u_mutex_Init
+ */
+u_cond u_cond_new(void);
+
+/**
+ * @fn  u_cond_signal
+ * @brief  One of threads is woken up if multiple threads are waiting for @cond
+ *
+ * @param  cond  The condtion to be signaled
+ *
+ */
+void u_cond_signal(u_cond cond);
+
+/**
+ * @fn  u_cond_broadcast
+ * @brief  All of threads are woken up if multiple threads are waiting for @cond
+ *
+ * @param  cond  The condtion to be signaled
+ *
+ */
+void u_cond_broadcast(u_cond cond);
+
+/**
+ * @fn  u_cond_wait
+ * @brief  Waits untill this thread woken up on @cond
+ *
+ * @param  cond  The condtion to be wait for to signal
+ * @param  mutex  The mutex which is currently locked from calling thread
+ *
+ */
+void u_cond_wait(u_cond cond, u_mutex mutex);
+
+/**
+ * @fn  u_cond_free
+ * @brief  Free the condition
+ *
+ * @param  mutex  The condition to be freed
+ *
+ */
+void u_cond_free(u_cond cond);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif /* __cplusplus */
+
+#endif //__UMUTEX_H_
diff --git a/resource/csdk/connectivity/common/inc/uqueue.h b/resource/csdk/connectivity/common/inc/uqueue.h
new file mode 100644 (file)
index 0000000..b40be81
--- /dev/null
@@ -0,0 +1,147 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+/**
+ * @file uqueue.h
+ * @brief This file contains the APIs for queue to be implemented
+ */
+#ifndef __U_QUEUE_H_
+#define __U_QUEUE_H_
+
+#include "cacommon.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+/**
+ * @struct u_queue_message
+ * @brief Queue message format
+ */
+typedef struct u_queue_message_t
+{
+    /* Pointer to message*/
+    void *msg;
+    /* message size */
+    uint32_t size;
+} u_queue_message_t;
+
+typedef struct u_queue_element_t u_queue_element;
+
+/**
+ * @struct u_queue_element
+ * @brief Queue element format
+ */
+struct u_queue_element_t
+{
+    /* pointer to queue message */
+    u_queue_message_t* message;
+    /* Pointer to next queue element*/
+    u_queue_element* next;
+};
+
+/**
+ * @struct u_queue_t
+ * @brief Queue structure
+ */
+typedef struct u_queue_t
+{
+    /* Head of the queue */
+    u_queue_element* element;
+    /* Number of messages in Queue*/
+    uint32_t count;
+} u_queue_t;
+
+/**
+ * @brief API to creates queue and initializes the elements.
+ * @return  u_queue_t pointer if Success, NULL otherwise
+ */
+u_queue_t* u_queue_create();
+
+/**
+ * @fn u_queue_delete
+ * @brief Resets and deletes the queue
+ * @param queue- queue pointer
+ * @return CAResult_t - CA_STATUS_OK, if Success
+ * @return            CA_STATUS_FAILED - otherwise
+ */
+CAResult_t u_queue_delete(u_queue_t* queue);
+
+/**
+ * @fn u_queue_add_element
+ * @brief Adds message at the end of the queue
+ * @param queue - pointer to queue
+ * @param message - Pointer to message
+ * @return CAResult_t - CA_STATUS_OK, if Success
+ * @return            CA_STATUS_FAILED - otherwise
+ */
+CAResult_t u_queue_add_element(u_queue_t* queue, u_queue_message_t *message);
+
+/**
+ * @fn u_queue_get_element
+ * @brief Returns the first message in the queue and removes queue element.
+ * Head is moved to next element.
+ * @param queue - pointer to queue
+ * @return pointer to Message, if Success
+ * @return NULL - otherwise
+ */
+u_queue_message_t* u_queue_get_element(u_queue_t* queue);
+
+/**
+ * @fn u_queueRemoveElement
+ * @brief Removes head element of the queue
+ * @param queue - pointer to queue
+ * @return CAResult_t - CA_STATUS_OK, if Success
+ * @return            CA_STATUS_FAILED - otherwise
+ */
+CAResult_t u_queue_remove_element(u_queue_t* queue);
+
+/**
+ * @fn u_queue_get_size
+ * Returns number of elements in queue
+ * Input : queue - pointer to queue
+ * Return : number of elements in queue
+ */
+uint32_t u_queue_get_size(u_queue_t* queue);
+
+/**
+ * @fn u_queue_reset
+ * @brief Removes all the messages from Queue and reset message count
+ * @param queue - pointer to queue
+ * @return CAResult_t - CA_STATUS_OK, if Success
+ * @return            CA_STATUS_FAILED - otherwise
+ */
+CAResult_t u_queue_reset(u_queue_t* queue);
+
+/**
+ * @fn u_queue_get_head
+ * @brief Returns the first message in queue, but not remove the element
+ * @param queue - pointer to queue
+ * @return pointer to Message, if Success
+ * @return NULL - otherwise
+ */
+u_queue_message_t* u_queue_get_head(u_queue_t* queue);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif /* __cplusplus */
+
+#endif /* _U_QUEUE_H_ */
diff --git a/resource/csdk/connectivity/common/inc/uthreadpool.h b/resource/csdk/connectivity/common/inc/uthreadpool.h
new file mode 100644 (file)
index 0000000..fefb852
--- /dev/null
@@ -0,0 +1,94 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+/**
+ * @file    uthreadpool.h
+ * @brief   This file provides APIs related to thread pool
+ */
+
+#ifndef __UTHREAD_POOL_H_
+#define __UTHREAD_POOL_H_
+
+#include <stdio.h>
+#include <malloc.h>
+#include <glib.h>
+#include <glib/gthreadpool.h>
+
+#include "cacommon.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+/**
+ * @var u_thread_func
+ * @brief Callback type can be registered to thread pool.
+ */
+typedef void (*u_thread_func)(void *);
+
+/**
+ * @struct u_thread_msg_t
+ * @brief Structure to maintain the data which needs to send to task function.
+ */
+typedef struct
+{
+    void *data;
+    u_thread_func func;
+} u_thread_msg_t;
+
+/**
+ * @var u_thread_pool_t
+ * @brief Thread pool type.
+ */
+typedef void *u_thread_pool_t;
+
+/**
+ * This function creates a newly allocated thread pool.
+ *
+ * @param num_of_threads The number of worker thread used in this pool.
+ * @param thread_pool_handle Handle to newly create thread pool.
+ * @return Error code, CA_STATUS_OK if success, else error number.
+ */
+CAResult_t u_thread_pool_init(uint32_t num_of_threads, u_thread_pool_t *thread_pool_handle);
+
+/**
+ * This function adds a routine to be executed by the thread pool at some future time.
+ *
+ * @param pool The thread pool structure.
+ * @param routine The routine to be executed.
+ * @param data The data to be passed to the routine.
+ *
+ * @return CA_STATUS_OK on success.
+ * @return Error on failure.
+ */
+CAResult_t u_thread_pool_add_task(u_thread_pool_t thread_pool, void (*routine)(void *), void *data);
+
+/**
+ * This function stops all the worker threads (stop & exit). And frees all the allocated memory.
+ * Function will return only after joining all threads executing the currently scheduled tasks.
+ *
+ * @param pool The thread pool structure.
+ */
+void u_thread_pool_free(u_thread_pool_t thread_pool);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif /* __cplusplus */
+
+#endif /* __UTHREAD_POOL_H_ */
diff --git a/resource/csdk/connectivity/common/src/logger.c b/resource/csdk/connectivity/common/src/logger.c
new file mode 100644 (file)
index 0000000..0d75266
--- /dev/null
@@ -0,0 +1,377 @@
+//******************************************************************
+//
+// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+#include "logger.h"
+#include "string.h"
+#include "oic_logger.h"
+#include "oic_console_logger.h"
+
+static oic_log_ctx_t *logCtx = 0;
+
+static oic_log_level LEVEL_XTABLE[] =
+{ OIC_LOG_DEBUG, OIC_LOG_INFO, OIC_LOG_WARNING, OIC_LOG_ERROR, OIC_LOG_FATAL };
+
+static const uint16_t LINE_BUFFER_SIZE = (16 * 2) + 16 + 1; // Show 16 bytes, 2 chars/byte, spaces between bytes, null termination
+
+// Convert LogLevel to platform-specific severity level.  Store in PROGMEM on Arduino
+#ifdef __ANDROID__
+static android_LogPriority LEVEL[] =
+{   ANDROID_LOG_DEBUG, ANDROID_LOG_INFO, ANDROID_LOG_WARN, ANDROID_LOG_ERROR, ANDROID_LOG_FATAL};
+#elif defined __linux__
+static const char * LEVEL[] __attribute__ ((unused)) =
+{   "DEBUG", "INFO", "WARNING", "ERROR", "FATAL"};
+#elif defined ARDUINO
+#include <stdarg.h>
+
+PROGMEM const char level0[] = "DEBUG";
+PROGMEM const char level1[] = "INFO";
+PROGMEM const char level2[] = "WARNING";
+PROGMEM const char level3[] = "ERROR";
+PROGMEM const char level4[] = "FATAL";
+
+PROGMEM const char * const LEVEL[] =
+{   level0, level1, level2, level3, level4};
+
+static void OICLogString(LogLevel level, PROGMEM const char * tag, PROGMEM const char * logStr);
+#ifdef ARDUINO_ARCH_AVR
+//Mega2560 and other 8-bit AVR microcontrollers
+#define GET_PROGMEM_BUFFER(buffer, addr) { strcpy_P(buffer, (char*)pgm_read_word(addr));}
+#elif defined ARDUINO_ARCH_SAM
+//Arduino Due and other 32-bit ARM micro-controllers
+#define GET_PROGMEM_BUFFER(buffer, addr) { strcpy_P(buffer, (char*)pgm_read_dword(addr));}
+#else
+#define GET_PROGMEM_BUFFER(buffer, addr) { buffer[0] = '\0';}
+#endif
+#endif // __ANDROID__
+#ifndef ARDUINO
+
+void OICLogConfig(oic_log_ctx_t *ctx)
+{
+    logCtx = ctx;
+}
+
+void OICLogInit()
+{
+
+}
+
+void OICLogShutdown()
+{
+#ifdef __linux__
+    if (logCtx && logCtx->destroy)
+    {
+        logCtx->destroy(logCtx);
+    }
+#endif
+}
+
+/**
+ * Output a log string with the specified priority level.
+ * Only defined for Linux and Android
+ *
+ * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag    - Module name
+ * @param logStr - log string
+ */
+void OICLog(LogLevel level, const char * tag, const char * logStr)
+{
+    if (!logStr || !tag)
+    {
+        return;
+    }
+
+#ifdef __ANDROID__
+    __android_log_write(LEVEL[level], tag, logStr);
+#elif defined __linux__
+    if (logCtx && logCtx->write_level)
+    {
+        logCtx->write_level(logCtx, LEVEL_XTABLE[level], logStr);
+
+    }
+    else
+    {
+        printf("%s: %s: %s\n", LEVEL[level], tag, logStr);
+    }
+#endif
+}
+
+/**
+ * Output a variable argument list log string with the specified priority level.
+ * Only defined for Linux and Android
+ *
+ * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag    - Module name
+ * @param format - variadic log string
+ */
+void OICLogv(LogLevel level, const char * tag, const char * format, ...)
+{
+    if (!format || !tag)
+    {
+        return;
+    }
+    char buffer[MAX_LOG_V_BUFFER_SIZE];
+    memset(buffer, 0, sizeof buffer);
+    va_list args;
+    va_start(args, format);
+    vsnprintf(buffer, sizeof buffer - 1, format, args);
+    va_end(args);
+    OICLog(level, tag, buffer);
+}
+
+/**
+ * Output the contents of the specified buffer (in hex) with the specified priority level.
+ *
+ * @param level      - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag        - Module name
+ * @param buffer     - pointer to buffer of bytes
+ * @param bufferSize - max number of byte in buffer
+ */
+void OICLogBuffer(LogLevel level, const char * tag, const uint8_t * buffer, uint16_t bufferSize)
+{
+    if (!buffer || !tag || (bufferSize == 0))
+    {
+        return;
+    }
+
+    char lineBuffer[LINE_BUFFER_SIZE];
+    memset(lineBuffer, 0, sizeof lineBuffer);
+    int lineIndex = 0;
+    int i;
+    for (i = 0; i < bufferSize; i++)
+    {
+        // Format the buffer data into a line
+        sprintf(&lineBuffer[lineIndex++ * 3], "%02X ", buffer[i]);
+        // Output 16 values per line
+        if (((i + 1) % 16) == 0)
+        {
+            OICLog(level, tag, lineBuffer);
+            memset(lineBuffer, 0, sizeof lineBuffer);
+            lineIndex = 0;
+        }
+    }
+    // Output last values in the line, if any
+    if (bufferSize % 16)
+    {
+        OICLog(level, tag, lineBuffer);
+    }
+}
+
+#else
+/**
+ * Initialize the serial logger for Arduino
+ * Only defined for Arduino
+ */
+void OICLogInit()
+{
+    Serial.begin(115200);
+}
+
+/**
+ * Output a log string with the specified priority level.
+ * Only defined for Arduino.  Only uses PROGMEM strings
+ * for the tag parameter
+ *
+ * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag    - Module name
+ * @param logStr - log string
+ */
+void OICLogString(LogLevel level, PROGMEM const char * tag, const char * logStr)
+{
+    if (!logStr || !tag)
+    {
+        return;
+    }
+
+    char buffer[LINE_BUFFER_SIZE];
+
+    GET_PROGMEM_BUFFER(buffer, &(LEVEL[level]));
+    Serial.print(buffer);
+
+    char c;
+    Serial.print(F(": "));
+    while ((c = pgm_read_byte(tag)))
+    {
+        Serial.write(c);
+        tag++;
+    }
+    Serial.print(F(": "));
+
+    Serial.println(logStr);
+}
+
+/**
+ * Output the contents of the specified buffer (in hex) with the specified priority level.
+ *
+ * @param level      - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag        - Module name
+ * @param buffer     - pointer to buffer of bytes
+ * @param bufferSize - max number of byte in buffer
+ */
+void OICLogBuffer(LogLevel level, PROGMEM const char * tag, const uint8_t * buffer, uint16_t bufferSize)
+{
+    if (!buffer || !tag || (bufferSize == 0))
+    {
+        return;
+    }
+
+    char lineBuffer[LINE_BUFFER_SIZE] =
+    {   0};
+    uint8_t lineIndex = 0;
+    for (uint8_t i = 0; i < bufferSize; i++)
+    {
+        // Format the buffer data into a line
+        sprintf(&lineBuffer[lineIndex++ * 3], "%02X ", buffer[i]);
+        // Output 16 values per line
+        if (((i+1)%16) == 0)
+        {
+            OICLogString(level, tag, lineBuffer);
+            memset(lineBuffer, 0, sizeof lineBuffer);
+            lineIndex = 0;
+        }
+    }
+    // Output last values in the line, if any
+    if (bufferSize % 16)
+    {
+        OICLogString(level, tag, lineBuffer);
+    }
+}
+
+/**
+ * Output a log string with the specified priority level.
+ * Only defined for Arduino.  Uses PROGMEM strings
+ *
+ * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag    - Module name
+ * @param logStr - log string
+ */
+void OICLog(LogLevel level, PROGMEM const char * tag, PROGMEM const char * logStr)
+{
+    if (!logStr || !tag)
+    {
+        return;
+    }
+
+    char buffer[LINE_BUFFER_SIZE];
+
+    GET_PROGMEM_BUFFER(buffer, &(LEVEL[level]));
+    Serial.print(buffer);
+
+    char c;
+    Serial.print(F(": "));
+    while ((c = pgm_read_byte(tag)))
+    {
+        Serial.write(c);
+        tag++;
+    }
+    Serial.print(F(": "));
+
+    while ((c = pgm_read_byte(logStr)))
+    {
+        Serial.write(c);
+        logStr++;
+    }
+    Serial.println();
+}
+
+/**
+ * Output a variable argument list log string with the specified priority level.
+ * Only defined for Arduino as depicted below.
+ *
+ * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag    - Module name
+ * @param format - variadic log string
+ */
+void OICLogv(LogLevel level, PROGMEM const char * tag, const char * format, ...)
+{
+    char buffer[LINE_BUFFER_SIZE];
+    va_list ap;
+    va_start(ap, format);
+
+    GET_PROGMEM_BUFFER(buffer, &(LEVEL[level]));
+    Serial.print(buffer);
+
+    char c;
+    Serial.print(F(": "));
+
+    while ((c = pgm_read_byte(tag)))
+    {
+        Serial.write(c);
+        tag++;
+    }
+    Serial.print(F(": "));
+
+    vsnprintf(buffer, sizeof(buffer), format, ap);
+    for(char *p = &buffer[0]; *p; p++) // emulate cooked mode for newlines
+    {
+        if(*p == '\n')
+        {
+            Serial.write('\r');
+        }
+        Serial.write(*p);
+    }
+    Serial.println();
+    va_end(ap);
+}
+/**
+ * Output a variable argument list log string with the specified priority level.
+ * Only defined for Arduino as depicted below.
+ *
+ * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
+ * @param tag    - Module name
+ * @param format - variadic log string
+ */
+void OICLogv(LogLevel level, PROGMEM const char * tag, const __FlashStringHelper *format, ...)
+{
+    char buffer[LINE_BUFFER_SIZE];
+    va_list ap;
+    va_start(ap, format);
+
+    GET_PROGMEM_BUFFER(buffer, &(LEVEL[level]));
+    Serial.print(buffer);
+
+    char c;
+    Serial.print(F(": "));
+
+    while ((c = pgm_read_byte(tag)))
+    {
+        Serial.write(c);
+        tag++;
+    }
+    Serial.print(F(": "));
+
+#ifdef __AVR__
+    vsnprintf_P(buffer, sizeof(buffer), (const char *)format, ap); // progmem for AVR
+#else
+    vsnprintf(buffer, sizeof(buffer), (const char *)format, ap); // for the rest of the world
+#endif
+    for(char *p = &buffer[0]; *p; p++) // emulate cooked mode for newlines
+    {
+        if(*p == '\n')
+        {
+            Serial.write('\r');
+        }
+        Serial.write(*p);
+    }
+    Serial.println();
+    va_end(ap);
+}
+
+#endif
+
diff --git a/resource/csdk/connectivity/common/src/oic_console_logger.c b/resource/csdk/connectivity/common/src/oic_console_logger.c
new file mode 100644 (file)
index 0000000..500f5a6
--- /dev/null
@@ -0,0 +1,93 @@
+//******************************************************************
+//
+// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+#include "oic_logger.h"
+#include "oic_console_logger.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+
+typedef struct
+{
+    FILE *out;
+} oic_console_logger_ctx;
+
+oic_log_ctx_t *oic_make_console_logger()
+{
+    return oic_log_make_ctx(NULL, OIC_LOG_ALL, oic_console_logger_init, oic_console_logger_destroy,
+            oic_console_logger_flush, oic_console_logger_set_level, oic_console_logger_write,
+            oic_console_logger_set_module);
+}
+
+int oic_console_logger_init(oic_log_ctx_t *ctx, void *world)
+{
+    oic_console_logger_ctx *my_ctx;
+
+    my_ctx = (oic_console_logger_ctx *) malloc(sizeof(oic_console_logger_ctx));
+
+    if (0 == my_ctx)
+        return 0;
+
+    my_ctx->out = stderr;
+
+    ctx->ctx = (void *) my_ctx;
+
+    return 1;
+}
+
+void oic_console_logger_destroy(oic_log_ctx_t *ctx)
+{
+    oic_console_logger_ctx *lctx = (oic_console_logger_ctx *) ctx->ctx;
+
+    fflush(lctx->out);
+
+    free(lctx);
+}
+
+void oic_console_logger_flush(oic_log_ctx_t *ctx)
+{
+    oic_console_logger_ctx *lctx = (oic_console_logger_ctx *) ctx->ctx;
+
+    fflush(lctx->out);
+}
+
+void oic_console_logger_set_level(oic_log_ctx_t *ctx, const int level)
+{
+    /* We don't have any special thing we need to do when a log level changes. */
+    return;
+}
+
+size_t oic_console_logger_write(oic_log_ctx_t *ctx, const int level, const char *msg)
+{
+    oic_console_logger_ctx *lctx = (oic_console_logger_ctx *) ctx->ctx;
+
+    /* A "real" implementation might want to replace the loglevel with a mnemonic: */
+
+    if (0 == ctx->module_name)
+        return 1 + fprintf(lctx->out, "%d: %s\n", level, msg);
+
+    return 1 + fprintf(lctx->out, "%d: [%s]: %s\n", level, ctx->module_name, msg);
+}
+
+int oic_console_logger_set_module(oic_log_ctx_t *ctx, const char *module_name)
+{
+    /* We don't do anything special when the module name changes: */
+    return 1;
+}
diff --git a/resource/csdk/connectivity/common/src/oic_logger.c b/resource/csdk/connectivity/common/src/oic_logger.c
new file mode 100644 (file)
index 0000000..7c1d7e9
--- /dev/null
@@ -0,0 +1,148 @@
+//******************************************************************
+//
+// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+#include "oic_logger.h"
+
+#include <string.h>
+#include <stdlib.h>
+
+oic_log_ctx_t *oic_log_make_ctx(void* world, const oic_log_level level, oic_log_init_t init,
+        oic_log_destroy_t destroy, oic_log_flush_t flush, oic_log_set_level_t set_level,
+        oic_log_write_level_t write_level, oic_log_set_module_t set_module)
+{
+    oic_log_ctx_t *log_ctx;
+
+    if (0 == init || 0 == destroy || 0 == flush || 0 == set_level || 0 == write_level
+            || 0 == set_module)
+        return 0;
+
+    if (__OIC_LOG_MIN__ > level || __OIC_LOG_MAX__ < level)
+        return 0;
+
+    log_ctx = (oic_log_ctx_t *) malloc(sizeof(oic_log_ctx_t));
+
+    if (0 == log_ctx)
+        return 0;
+
+    log_ctx->ctx = 0; /* we'll get to this in a sec... */
+    log_ctx->log_level = level;
+    log_ctx->module_name = 0;
+    log_ctx->init = init;
+    log_ctx->destroy = destroy;
+    log_ctx->flush = flush;
+    log_ctx->set_level = set_level;
+    log_ctx->set_module = set_module;
+
+    log_ctx->write_level = write_level;
+
+    if (0 == log_ctx->init(log_ctx, world))
+    {
+        free(log_ctx);
+        return 0;
+    }
+
+    return log_ctx;
+}
+
+void oic_log_destroy(oic_log_ctx_t *ctx)
+{
+    if (0 == ctx)
+        return;
+
+    ctx->destroy(ctx);
+
+    if (0 != ctx->module_name)
+        free(ctx->module_name);
+
+    free(ctx);
+}
+
+int oic_log_init(oic_log_ctx_t *ctx, void *world)
+{
+    if (0 == ctx)
+        return 0;
+
+    return ctx->init(ctx, world);
+}
+
+void oic_log_flush(oic_log_ctx_t *ctx)
+{
+    if (0 == ctx)
+    {
+        return;
+    }
+    ctx->flush(ctx);
+}
+
+void oic_log_set_level(oic_log_ctx_t *ctx, const oic_log_level ll)
+{
+    if (0 == ctx)
+    {
+        return;
+    }
+    ctx->set_level(ctx, ll);
+}
+
+size_t oic_log_write(oic_log_ctx_t *ctx, const char *msg)
+{
+    if (0 == ctx)
+        return 0;
+
+    return oic_log_write_level(ctx, ctx->log_level, msg);
+}
+
+size_t oic_log_write_level(oic_log_ctx_t *ctx, const oic_log_level ll, const char *msg)
+{
+    if (0 == ctx)
+        return 0;
+
+    ctx->log_level = ll;
+
+    /* Notify: */
+    return ctx->write_level(ctx, ll, msg);
+}
+
+int oic_log_set_module(oic_log_ctx_t *ctx, const char *module_name)
+{
+    char *mn;
+    size_t l;
+
+    if (0 == ctx)
+        return 0;
+
+    /* Swap pointers so that module data's not erased in the event of failure: */
+    l = strlen(module_name);
+
+    mn = (char *) malloc(1 + l);
+
+    if (0 == mn)
+        return 0;
+
+    memcpy(mn, module_name, 1 + l);
+
+    if (0 != ctx->module_name)
+        free(ctx->module_name);
+
+    ctx->module_name = mn;
+
+    /* Notify: */
+    return ctx->set_module(ctx, ctx->module_name);
+}
+
diff --git a/resource/csdk/connectivity/common/src/oic_malloc.c b/resource/csdk/connectivity/common/src/oic_malloc.c
new file mode 100644 (file)
index 0000000..8136c97
--- /dev/null
@@ -0,0 +1,89 @@
+//******************************************************************
+//
+// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+//-----------------------------------------------------------------------------
+// Includes
+//-----------------------------------------------------------------------------
+#include <stdlib.h>
+#include "oic_malloc.h"
+
+// Enable extra debug logging for malloc.  Comment out to disable
+//#define ENABLE_MALLOC_DEBUG  (1)
+
+#ifdef ENABLE_MALLOC_DEBUG
+#include "logger.h"
+#define TAG PCF("OICMalloc")
+#endif
+
+//-----------------------------------------------------------------------------
+// Typedefs
+//-----------------------------------------------------------------------------
+
+//-----------------------------------------------------------------------------
+// Private variables
+//-----------------------------------------------------------------------------
+
+//-----------------------------------------------------------------------------
+// Macros
+//-----------------------------------------------------------------------------
+
+//-----------------------------------------------------------------------------
+// Internal API function
+//-----------------------------------------------------------------------------
+
+//-----------------------------------------------------------------------------
+// Private internal function prototypes
+//-----------------------------------------------------------------------------
+
+//-----------------------------------------------------------------------------
+// Public APIs
+//-----------------------------------------------------------------------------
+
+void *OICMalloc(size_t size)
+{
+#ifdef ENABLE_MALLOC_DEBUG
+    void *ptr = 0;
+
+    if (0 == size)
+    {
+        return NULL;
+    }
+
+    ptr = malloc(size);
+    OIC_LOG_V(INFO, TAG, "malloc: ptr=%p, size=%u", ptr, size);
+    return ptr;
+#else
+    if (0 == size)
+    {
+        return NULL;
+    }
+    return malloc(size);
+#endif
+}
+
+void OICFree(void *ptr)
+{
+#ifdef ENABLE_MALLOC_DEBUG
+    OIC_LOG_V(INFO, TAG, "free: ptr=%p", ptr);
+#endif
+
+    free(ptr);
+}
+
diff --git a/resource/csdk/connectivity/common/src/uarraylist.c b/resource/csdk/connectivity/common/src/uarraylist.c
new file mode 100644 (file)
index 0000000..a618e51
--- /dev/null
@@ -0,0 +1,149 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdlib.h>
+#include <string.h>
+#include "uarraylist.h"
+#include "logger.h"
+#include "oic_malloc.h"
+
+#define TAG PCF("UARRAYLIST")
+
+u_arraylist_t *u_arraylist_create()
+{
+    u_arraylist_t *list = NULL;
+
+    if (!(list = (u_arraylist_t*) OICMalloc(sizeof(u_arraylist_t))))
+    {
+        return NULL;
+    }
+
+    list->size = U_ARRAYLIST_DEFAULT_SIZE;
+    list->length = 0;
+
+    if (!(list->data = (void*) OICMalloc(list->size * sizeof(void*))))
+    {
+        OICFree(list);
+        return NULL;
+    }
+
+    return list;
+}
+
+CAResult_t u_arraylist_free(u_arraylist_t *list)
+{
+    OICFree(list->data);
+    OICFree(list);
+
+    list = NULL;
+
+    return CA_STATUS_OK;
+}
+
+void *u_arraylist_get(const u_arraylist_t *list, uint32_t index)
+{
+    if (index >= list->length)
+    {
+        return NULL;
+    }
+
+    if (list->data)
+    {
+        return list->data[index];
+    }
+
+    return NULL;
+}
+
+CAResult_t u_arraylist_add(u_arraylist_t *list, void *data)
+{
+    uint32_t new_size = 0;
+
+    if (list->size <= list->length)
+    {
+
+        new_size = list->size + 1;
+        if (!(list->data = (void **) realloc(list->data, new_size * sizeof(void *))))
+        {
+            return -1;
+        }
+
+        (void) memset(list->data + list->size, 0, (new_size - list->size) * sizeof(void *));
+        list->size = new_size;
+    }
+
+    list->data[list->length] = data;
+    list->length++;
+
+    return 0;
+}
+
+void *u_arraylist_remove(u_arraylist_t *list, uint32_t index)
+{
+    void *removed = NULL;
+
+    if (index >= list->length)
+    {
+        return NULL;
+    }
+
+    removed = list->data[index];
+
+    if (index < list->length - 1)
+    {
+        memmove(&list->data[index], &list->data[index + 1],
+                (list->length - index - 1) * sizeof(void *));
+    }
+
+    list->size--;
+    list->length--;
+
+    if (!(list->data = (void **) realloc(list->data, list->size * sizeof(void *))))
+    {
+        return NULL;
+    }
+
+    return removed;
+}
+
+uint32_t u_arraylist_length(const u_arraylist_t *list)
+{
+    return list->length;
+}
+
+uint8_t u_arraylist_contains(const u_arraylist_t *list, void *data)
+{
+    uint32_t i = 0;
+
+    for (i = 0; i < u_arraylist_length(list); i++)
+    {
+        if (data == u_arraylist_get(list, i))
+        {
+            return 1;
+        }
+        else
+        {
+            continue;
+        }
+    }
+
+    return 0;
+}
+
diff --git a/resource/csdk/connectivity/common/src/umutex.c b/resource/csdk/connectivity/common/src/umutex.c
new file mode 100644 (file)
index 0000000..6575453
--- /dev/null
@@ -0,0 +1,169 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+/**
+ * @file    umutex.c
+ * @brief   This file provides APIs related to mutex and semaphores
+ */
+
+#include "umutex.h"
+#include <glib.h>
+
+#include "logger.h"
+#define TAG PCF("UMUTEX")
+
+void u_mutex_init(void)
+{
+    /*Initialize the glib thread system if it is not. GMutex works only if the threadsystem is initialized*/
+    if (!g_thread_supported())
+    {
+        g_thread_init(NULL);
+    }
+}
+
+u_mutex u_mutex_new(void)
+{
+    if (!g_thread_supported())
+    {
+        return NULL;
+    }
+
+    GMutex *mutexLock = g_mutex_new();
+    return (u_mutex) mutexLock;
+}
+
+void u_mutex_lock(u_mutex mutex)
+{
+    if (NULL == mutex)
+    {
+        OIC_LOG_V(ERROR, TAG ,"Invalid mutex !");
+        return;
+    }
+
+    GMutex *mutexLock = (GMutex*) mutex;
+    g_mutex_lock(mutexLock);
+}
+
+CABool_t u_mutex_trylock(u_mutex mutex)
+{
+    if (NULL == mutex)
+    {
+        OIC_LOG_V(ERROR, TAG,"Invalid mutex !");
+        return CA_FALSE;
+    }
+
+    GMutex *mutexLock = (GMutex*) mutex;
+    gboolean ret = g_mutex_trylock(mutexLock);
+    if (TRUE == ret)
+    {
+        return CA_TRUE;
+    }
+
+    return CA_FALSE;
+}
+
+void u_mutex_unlock(u_mutex mutex)
+{
+    if (NULL == mutex)
+    {
+        OIC_LOG_V(ERROR, TAG,"Invalid mutex !");
+        return;
+    }
+
+    GMutex *mutexLock = (GMutex*) mutex;
+    g_mutex_unlock(mutexLock);
+}
+
+void u_mutex_free(u_mutex mutex)
+{
+    if (NULL == mutex)
+    {
+        OIC_LOG_V(ERROR, TAG,"Invalid mutex !");
+        return;
+    }
+
+    GMutex *mutexLock = (GMutex*) mutex;
+    g_mutex_free(mutexLock);
+}
+
+u_cond u_cond_new(void)
+{
+    if (!g_thread_supported())
+    {
+        return NULL;
+    }
+
+    GCond *condition = g_cond_new();
+    return (u_cond) condition;
+}
+
+void u_cond_signal(u_cond cond)
+{
+    if (NULL == cond)
+    {
+        OIC_LOG_V(ERROR, TAG,"Invalid condition !");
+        return;
+    }
+
+    GCond *condition = (GCond*) cond;
+    g_cond_signal(condition);
+}
+
+void u_cond_broadcast(u_cond cond)
+{
+    if (NULL == cond)
+    {
+        OIC_LOG_V(ERROR, TAG,"Invalid condition !");
+        return;
+    }
+
+    GCond *condition = (GCond*) cond;
+    g_cond_broadcast(condition);
+}
+
+void u_cond_wait(u_cond cond, u_mutex mutex)
+{
+    if (NULL == mutex)
+    {
+        OIC_LOG_V(ERROR, TAG,"Invalid mutex !");
+        return;
+    }
+
+    if (NULL == cond)
+    {
+        OIC_LOG_V(ERROR, TAG,"Invalid condition !");
+        return;
+    }
+
+    GMutex *mutexLock = (GMutex*) mutex;
+    GCond *condition = (GCond*) cond;
+    g_cond_wait(condition, mutexLock);
+}
+
+void u_cond_free(u_cond cond)
+{
+    if (NULL == cond)
+    {
+        OIC_LOG_V(ERROR, TAG,"Invalid condition !");
+        return;
+    }
+
+    GCond *condition = (GCond*) cond;
+    g_cond_free(condition);
+}
+
diff --git a/resource/csdk/connectivity/common/src/uqueue.c b/resource/csdk/connectivity/common/src/uqueue.c
new file mode 100644 (file)
index 0000000..5b04830
--- /dev/null
@@ -0,0 +1,247 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stddef.h>
+#include <stdlib.h>
+#include <stdio.h>
+
+#include "logger.h"
+#include "uqueue.h"
+#include "oic_malloc.h"
+
+#define NO_MESSAGES 0
+#define TAG PCF("UQUEUE")
+
+u_queue_t* u_queue_create()
+{
+    u_queue_t* queuePtr = (u_queue_t*) OICMalloc(sizeof(u_queue_t));
+    if (NULL == queuePtr)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueCreate FAIL");
+        return NULL;
+    }
+
+    queuePtr->count = NO_MESSAGES;
+    queuePtr->element = NULL;
+
+    return queuePtr;
+}
+
+CAResult_t u_queue_add_element(u_queue_t* queue, u_queue_message_t *message)
+{
+    u_queue_element* element = NULL;
+    u_queue_element* ptr = NULL;
+
+    if (NULL == queue)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueAddElement FAIL, Invalid Queue");
+        return CA_STATUS_FAILED;
+    }
+
+    if (NULL == message)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueAddElement : FAIL, NULL Message");
+        return CA_STATUS_FAILED;
+    }
+
+    element = (u_queue_element*) OICMalloc(sizeof(u_queue_element));
+    if (NULL == element)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueAddElement FAIL, memory allocation failed");
+        return CA_MEMORY_ALLOC_FAILED;
+    }
+
+    element->message = message;
+    element->next = NULL;
+
+    ptr = queue->element;
+
+    if (NULL != ptr)
+    {
+        while (NULL != ptr->next)
+        {
+            ptr = ptr->next;
+        }
+
+        ptr->next = element;
+        queue->count++;
+
+        OIC_LOG_V(DEBUG, TAG, "Queue Count : %d", queue->count);
+    }
+    else
+    {
+        if (NO_MESSAGES != queue->count)
+        {
+            OIC_LOG(DEBUG, TAG, "QueueAddElement : FAIL, count is not zero");
+
+            /* error in queue, free the allocated memory*/
+            OICFree(element);
+            return CA_STATUS_FAILED;
+        }
+
+        queue->element = element;
+        queue->count++;
+        OIC_LOG_V(DEBUG, TAG, "Queue Count : %d", queue->count);
+
+        return CA_STATUS_OK;
+    }
+
+    return CA_STATUS_OK;
+}
+
+u_queue_message_t* u_queue_get_element(u_queue_t* queue)
+{
+    u_queue_element* next = NULL;
+    u_queue_element* element = NULL;
+    u_queue_message_t* message = NULL;
+
+    if (NULL == queue)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueAddElement FAIL, Invalid Queue");
+        return NULL;
+    }
+
+    element = queue->element;
+
+    if (NULL == element)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueGetElement : FAIL, no messages");
+        return NULL;
+    }
+
+    next = element->next;
+    queue->element = next;
+    queue->count--;
+
+    message = element->message;
+    OICFree(element);
+    return message;
+}
+
+CAResult_t u_queue_remove_element(u_queue_t* queue)
+{
+    u_queue_element* next = NULL;
+    u_queue_element* remove = NULL;
+
+    if (NULL == queue)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueRemoveElement FAIL, Invalid Queue");
+        return CA_STATUS_FAILED;
+    }
+
+    remove = queue->element;
+
+    if (NULL == remove)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueRemoveElement : no messages");
+        return CA_STATUS_OK;
+    }
+
+    next = remove->next;
+
+    OICFree(remove->message);
+    OICFree(remove);
+
+    queue->element = next;
+    queue->count--;
+
+    return CA_STATUS_OK;
+}
+
+uint32_t u_queue_get_size(u_queue_t* queue)
+{
+    if (NULL == queue)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueGetSize FAIL, Invalid Queue");
+        return NO_MESSAGES;
+    }
+
+    return queue->count;
+}
+
+CAResult_t u_queue_reset(u_queue_t* queue)
+{
+    CAResult_t error = CA_STATUS_FAILED;
+
+    if (NULL == queue)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueReset FAIL, Invalid Queue");
+        return CA_STATUS_FAILED;
+    }
+
+    if (NO_MESSAGES == queue->count)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueReset, no elements in the queue");
+        return CA_STATUS_OK;
+    }
+
+    while (NULL != queue->element)
+    {
+        error = u_queue_remove_element(queue);
+        if (error == CA_STATUS_FAILED)
+            break;
+    }
+
+    if (NO_MESSAGES != queue->count)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueReset : FAIL, count is non zero");
+        return CA_STATUS_FAILED;
+    }
+
+    return CA_STATUS_OK;
+
+}
+
+CAResult_t u_queue_delete(u_queue_t* queue)
+{
+    CAResult_t error = CA_STATUS_FAILED;
+
+    if (NULL == queue)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueDelete FAIL, Invalid Queue");
+        return CA_STATUS_FAILED;
+    }
+
+    error = u_queue_reset(queue);
+    if (error != CA_STATUS_OK)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueDelete : FAIL, error in QueueReset");
+        return error;
+    }
+
+    OICFree(queue);
+    return (CA_STATUS_OK);
+}
+
+u_queue_message_t* u_queue_get_head(u_queue_t* queue)
+{
+    if (NULL == queue)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueGetHead FAIL, Invalid Queue");
+        return NULL;
+    }
+
+    if (NULL == queue->element)
+    {
+        OIC_LOG(DEBUG, TAG, "QueueGetHead : no messages in queue");
+        return NULL;
+    }
+    return queue->element->message;
+}
diff --git a/resource/csdk/connectivity/common/src/uthreadpool.c b/resource/csdk/connectivity/common/src/uthreadpool.c
new file mode 100644 (file)
index 0000000..477d5fd
--- /dev/null
@@ -0,0 +1,116 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+/**
+ * @file    uthreadpool.c
+ * @brief   This file provides APIs related to thread pool
+ */
+
+#include "uthreadpool.h"
+#include "logger.h"
+#include "oic_malloc.h"
+#define TAG PCF("UTHREADPOOL")
+
+/**
+ * @var gThreadpool
+ * @brief Glib thread pool.
+ */
+static GThreadPool *gThreadpool;
+
+/**
+ * @fn run
+ * @brief function which is registed to glib thread pool.
+ */
+static void run(void *thread_data, void *user_data);
+
+CAResult_t u_thread_pool_init(uint32_t num_of_threads, u_thread_pool_t *thread_pool)
+{
+    OIC_LOG_V(DEBUG, TAG, "IN");
+
+    GError *error = NULL;
+    gThreadpool = g_thread_pool_new(run, NULL, num_of_threads, FALSE, &error);
+    if (NULL == gThreadpool)
+    {
+        OIC_LOG_V(ERROR, TAG, "Error: g_thread_pool_new failed!");
+        if (NULL != error)
+        {
+            OIC_LOG_V(ERROR, TAG, "Error is: %s", error->message);
+            g_error_free(error);
+        }
+        return CA_STATUS_FAILED;
+    }
+    *thread_pool = (u_thread_pool_t) gThreadpool;
+
+    OIC_LOG_V(DEBUG, TAG, "OUT");
+    return CA_STATUS_OK;
+}
+
+CAResult_t u_thread_pool_add_task(u_thread_pool_t thread_pool, void (*routine)(void *), void *data)
+{
+    OIC_LOG_V(DEBUG, TAG, "IN");
+
+    gboolean result = FALSE;
+    if (NULL == routine)
+    {
+        OIC_LOG_V(ERROR, TAG, "Error: routine is NULL!");
+        return CA_STATUS_FAILED;
+    }
+
+    u_thread_msg_t *message = (u_thread_msg_t *) OICMalloc(sizeof(u_thread_msg_t));
+    message->data = data;
+    message->func = routine;
+    result = g_thread_pool_push((GThreadPool *) thread_pool, (void *) message, NULL);
+    if (FALSE == result)
+    {
+        OIC_LOG_V(ERROR, TAG, "Error: Failed to push the task to threadpool!");
+        return CA_STATUS_FAILED;
+    }
+
+    OIC_LOG_V(DEBUG, TAG, "OUT");
+    return CA_STATUS_OK;
+}
+
+void u_thread_pool_free(u_thread_pool_t thread_pool)
+{
+    OIC_LOG_V(DEBUG, TAG, "IN");
+
+    GThreadPool *threadpool = (GThreadPool *) thread_pool;
+    g_thread_pool_free(threadpool, TRUE, TRUE);
+
+    OIC_LOG_V(DEBUG, TAG, "OUT");
+}
+
+void run(void *thread_data, void *user_data)
+{
+    u_thread_msg_t *message = (u_thread_msg_t *) thread_data;
+
+    if (message && message->func)
+    {
+        OIC_LOG_V(DEBUG, TAG, "Calling routine with data as parameter");
+        message->func(message->data);
+    }
+    else
+    {
+        OIC_LOG_V(ERROR, TAG, "Error: Invalid task data");
+        return;
+    }
+
+    //Free message
+    OICFree(message);
+    message = NULL;
+}
diff --git a/resource/csdk/connectivity/inc/caadapterinterface.h b/resource/csdk/connectivity/inc/caadapterinterface.h
new file mode 100644 (file)
index 0000000..67a44cb
--- /dev/null
@@ -0,0 +1,187 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+/**
+ * @file caadapterinterface.h
+ * @brief This file contains the APIs for adapters to be implemented
+ */
+#ifndef __CA_ADAPTER_INTERFACE_H_
+#define __CA_ADAPTER_INTERFACE_H_
+
+#include "cacommon.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/**
+ * @brief Starting connectivity adapters and each adapter have transport specific behavior.
+ *  Transport Specific Behavior:
+ *   WIFI/ETH connectivity Starts unicast server on  all available IPs and defined port number as per specification.
+ *   EDR will not start any specific servers.
+ *   LE will not start any specific servers.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+typedef CAResult_t (*CAAdapterStart)();
+
+/**
+ * @brief Starting listening server for receiving multicast search requests
+ * Transport Specific Behavior:
+ *   WIFI/ETH Starts multicast server on  all available IPs and defined port number and as per specification.
+ *   EDR  Starts RFCOMM Server with prefixed UUID as per specification.
+ *   LE Start GATT Server with prefixed UUID and Characteristics as per OIC Specification.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+typedef CAResult_t (*CAAdapterStartListeningServer)();
+
+/**
+ * @brief for starting discovery servers for receiving multicast advertisements
+ * Transport Specific Behavior:
+ *   WIFI/ETH Starts multicast server on all available IPs and defined port number as per OIC Specification.
+ *   EDR Starts RFCOMM Server with prefixed UUID as per OIC Specification.
+ *   LE Starts GATT Server with prefixed UUID and Characteristics as per OIC Specification.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+typedef CAResult_t (*CAAdapterStartDiscoveryServer)();
+
+/**
+ * @brief Sends data to the endpoint using the adapter connectivity.
+ * Note: length must be > 0.
+ * @param   endpoint    [IN]    Remote Endpoint information (like ipaddress , port, reference uri and connectivity type) to
+ *                              which the unicast data has to be sent.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+typedef uint32_t (*CAAdapterSendUnitcastData)(const CARemoteEndpoint_t* endpoint, void* data,
+        uint32_t dataLen);
+
+/**
+ * @brief Sends Multicast data to the endpoint using the adapter connectivity.
+ * Note: length must be > 0.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+typedef uint32_t (*CAAdapterSendMulticastData)(void* data, uint32_t dataLen);
+
+/**
+ * @brief Starts notification server on adapters.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+typedef CAResult_t (*CAAdapterStartNotificationRecvServer)();
+
+/**
+ * @brief Send notification information to the given endpoint.
+ * Note: length must be > 0.
+ * @param   endpoint    [IN]    Remote Endpoint information (like ipaddress , port, reference uri and connectivity type) to
+ *                              which the unicast data has to be sent.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+typedef uint32_t (*CAAdapterSendNotification)(const CARemoteEndpoint_t* endpoint, void* data,
+        uint32_t dataLen);
+
+/**
+ * @brief Get Network Information
+ * @param   info        [OUT]   Local connectivity information structures
+ * @param   size        [OUT]   Number of local connectivity structures.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+typedef CAResult_t (*CAAdapterGetNetworkInfo)(CALocalConnectivityt_t** info, uint32_t* size);
+
+/**
+ * @brief Read Synchronous API callback.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+typedef CAResult_t (*CAAdapterReadData)();
+
+/**
+ * @brief Stopping the adapters and close socket connections
+ * Transport Specific Behavior:
+ *   WIFI/ETH Stops all listening servers and close sockets.
+ *   EDR Stops all RFCOMM servers and close sockets.
+ *   LE Stops all GATT servers and close sockets.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+typedef CAResult_t (*CAAdapterStop)();
+
+/**
+ * @brief Terminate the connectivity adapter.Configuration information will be deleted from further use
+ */
+typedef void (*CAAdapterTerminate)();
+
+/**
+ * @brief Connectivity handler information for adapter
+ */
+typedef struct
+{
+    /** Start Transport specific functions*/
+    CAAdapterStart startAdapter;
+    /** Listening Server function address*/
+    CAAdapterStartListeningServer startListenServer;
+    /** Discovery Server function address **/
+    CAAdapterStartDiscoveryServer startDiscoverServer;
+    /** Unicast data function address**/
+    CAAdapterSendUnitcastData sendData;
+    /** Multicast data function address**/
+    CAAdapterSendMulticastData sendDataToAll;
+    /** Notify server function address**/
+    CAAdapterStartNotificationRecvServer startNotifyServer;
+    /** Send Notification function address**/
+    CAAdapterSendNotification sendNotification;
+    /** Get Networking information  **/
+    CAAdapterGetNetworkInfo GetnetInfo;
+    /** Read Data function address**/
+    CAAdapterReadData readData;
+    /** Stop Transport specific functions*/
+    CAAdapterStop stopAdapter;
+    /** Terminate function address stored in this pointer**/
+    CAAdapterTerminate terminate;
+
+} CAConnectivityHandler_t;
+
+/**
+ * @brief This will be used during the registration of adapters call backs to the common logic
+ * @see CAConnectivityHandler_t , CAConnectivityType_t
+ */
+typedef void (*CARegisterConnectivityCallback)(CAConnectivityHandler_t handler,
+        CAConnectivityType_t cType);
+
+/**
+ * @brief This will be used during the recive of network requests and response.
+ * @see SendUnitcastData(), SendMulticastData()
+ */
+typedef void (*CANetworkPacketReceivedCallback)(CARemoteEndpoint_t* endPoint, void* data,
+        uint32_t dataLen);
+
+/**
+ * @brief This will be used to intimate network changes to the connectivity common logic layer
+ * @see SendUnitcastData(), SendMulticastData()
+ */
+typedef void (*CANetworkChangeCallback)(CALocalConnectivityt_t* info, CANetworkStatus_t status);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif  // __CA_ADAPTER_INTERFACE_H_
diff --git a/resource/csdk/connectivity/inc/caedradapter.h b/resource/csdk/connectivity/inc/caedradapter.h
new file mode 100644 (file)
index 0000000..2b68a07
--- /dev/null
@@ -0,0 +1,141 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+/**
+ * @file caedradapter.h
+ * @brief This file contains the APIs for EDR adapters to be implemented
+ */
+#ifndef __CA_EDRADAPTER_H_
+#define __CA_EDRADAPTER_H_
+
+/**
+ * BT Interface AP
+ **/
+#include "cacommon.h"
+#include "caadapterinterface.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+#ifndef BLUETOOTH_ADAPTER_TAG
+#define BLUETOOTH_ADAPTER_TAG "CA_EDR"
+#endif //BLUETOOTH_ADAPTER_TAG
+/**
+ * @brief Initialize EDR connectivity interface.
+ * @param registerCallback [IN] To register EDR interfaces to Connectivity Abstraction Layer
+ * @param reqRespCallback [IN] sending responses and discovery messages from unicast , multicast servers
+ * @param netCallback [IN] Intimate the network additions to Connectivity Abstraction Layer.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAInitializeEDR(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback);
+
+/**
+ * @brief Starting EDR connectivity adapters .As its peer to peer it doesnot require to start any servers
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartEDR();
+
+/**
+ * @brief Starting listening server for receiving multicast search requests
+ * Transport Specific Behavior:
+ *   EDR  Starts RFCOMM Server with prefixed UUID as per specification.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartEDRListeningServer();
+
+/**
+ * @brief for starting discovery servers for receiving multicast advertisements
+ * Transport Specific Behavior:
+ *   EDR Starts RFCOMM server with prefixed UUID as per OIC Specification.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartEDRDiscoveryServer();
+
+/**
+ * @brief Sends data to the endpoint using the adapter connectivity.
+ * Note: length must be > 0.
+ * @param   endpoint    [IN]    Remote Endpoint information (like ipaddress , port, reference uri and connectivity type) to
+ *                              which the unicast data has to be sent.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendEDRUnicastData(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen);
+
+/**
+ * @brief Sends Multicast data to the endpoint using the EDR connectivity.
+ * Note: length must be > 0.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendEDRMulticastData(void* data, uint32_t dataLen);
+
+/**
+ * @brief Starts notification server on EDR adapters.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartEDRNotifyServer();
+
+/**
+ * @brief Send notification information.
+ * Note: length must be > 0.
+ * @param   endpoint    [IN]    Remote Endpoint information (like ipaddress , port, reference uri and connectivity type) to
+ *                              which the unicast data has to be sent.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendEDRNotification(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen);
+
+/**
+ * @brief Get EDR Connectivity network information
+ * @param   info        [OUT]   Local connectivity information structures
+ * @param   size        [OUT]   Number of local connectivity structures.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAGetEDRInterfaceInformation(CALocalConnectivityt_t** info, uint32_t* size);
+
+/**
+ * @brief Read Synchronous API callback.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAReadEDRData();
+
+/**
+ * @brief Stopping the adapters and close socket connections
+ *   EDR Stops all RFCOMM servers and close sockets.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStopEDR();
+
+/**
+ * @brief Terminate the EDR connectivity adapter.
+ * Configuration information will be deleted from further use
+ */
+void CATerminateEDR();
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif  //__CA_EDRADAPTER_H_
diff --git a/resource/csdk/connectivity/inc/caerrorcode.h b/resource/csdk/connectivity/inc/caerrorcode.h
new file mode 100644 (file)
index 0000000..80905b4
--- /dev/null
@@ -0,0 +1,65 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#ifndef __CA_ERROR_CODE_H_
+#define __CA_ERROR_CODE_H_
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/**
+ * Declares Stack Results & Errors
+ */
+typedef enum
+{
+    OC_STACK_OK = 0,
+    OC_STACK_INVALID_URI,
+    OC_STACK_INVALID_QUERY,
+    OC_STACK_INVALID_IP,
+    OC_STACK_INVALID_PORT,
+    OC_STACK_INVALID_CALLBACK,
+    OC_STACK_INVALID_METHOD,
+    OC_STACK_INVALID_PARAM,
+    OC_STACK_INVALID_OBSERVE_PARAM,
+    OC_STACK_NO_MEMORY,
+    OC_STACK_COMM_ERROR,
+    OC_STACK_NOTIMPL,
+    OC_STACK_NO_RESOURCE, /* resource not found*/
+    OC_STACK_RESOURCE_ERROR, /*ex: not supported method or interface*/
+    OC_STACK_SLOW_RESOURCE,
+    OC_STACK_NO_OBSERVERS, /* resource has no registered observers */
+    OC_STACK_OBSERVER_NOT_FOUND,
+    OC_STACK_OBSERVER_NOT_ADDED,
+    OC_STACK_OBSERVER_NOT_REMOVED,
+#ifdef WITH_PRESENCE
+    OC_STACK_PRESENCE_NO_UPDATE,
+    OC_STACK_PRESENCE_STOPPED,
+    OC_STACK_PRESENCE_DO_NOT_HANDLE,
+#endif
+    OC_STACK_ERROR
+} OCStackResult;
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif //#ifndef __CA_ERROR_CODE_H_
diff --git a/resource/csdk/connectivity/inc/caethernetadapter.h b/resource/csdk/connectivity/inc/caethernetadapter.h
new file mode 100644 (file)
index 0000000..61e8a4d
--- /dev/null
@@ -0,0 +1,137 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+/**
+ * @file caethernetadapter.h
+ * @brief This file contains the APIs for Ethernet Adapter.
+ */
+#ifndef __CA_ETHERNET_ADAPTER_H__
+#define __CA_ETHERNET_ADAPTER_H__
+
+#include "cacommon.h"
+#include "caadapterinterface.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/**
+ * @brief Initialize Ethernet connectivity interface.
+ * @param registerCallback [IN] To register Ethernet interfaces to Connectivity Abstraction Layer
+ * @param reqRespCallback [IN] sending responses and discovery messages from unicast , multicast servers
+ * @param netCallback [IN] Intimate the network additions to Connectivity Abstraction Layer.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAInitializeEthernet(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback);
+
+/**
+ * @brief Start Ethernet Interface adapter.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartEthernet();
+
+/**
+ * @brief Starting listening server for receiving multicast search requests
+ * Transport Specific Behavior:
+ *   Ethernet Starts Multicast Server on  all available IPs and prefixed port number and as per OIC Specification.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartEthernetListeningServer();
+
+/**
+ * @brief for starting discovery servers for receiving multicast advertisements
+ * Transport Specific Behavior:
+ *  Ethernet Starts Start multicast server on all available IPs and prefixed port number as per OIC Specification
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartEthernetDiscoveryServer();
+
+/**
+ * @brief Sends data to the endpoint using the adapter connectivity.
+ * Note: length must be > 0.
+ * @param   endpoint    [IN]    Remote Endpoint information (like ipaddress , port, reference uri and connectivity type) to
+ *                              which the unicast data has to be sent.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendEthernetUnicastData(const CARemoteEndpoint_t* endpoint, void* data,
+        uint32_t dataLen);
+
+/**
+ * @brief Sends Multicast data to the endpoint using the WIFI connectivity.
+ * Note: length must be > 0.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendEthernetMulticastData(void* data, uint32_t dataLen);
+
+/**
+ * @brief Starts notification server on Ethernet adapters.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartEthernetNotifyServer();
+
+/**
+ * @brief Send notification information.
+ * Note: length must be > 0.
+ * @param   endpoint    [IN]    Remote Endpoint information (like ipaddress , port, reference uri and connectivity type) to
+ *                              which the unicast data has to be sent.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendEthernetNotification(const CARemoteEndpoint_t* endpoint, void* data,
+        uint32_t dataLen);
+/**
+ * @brief Get Ethernet Connectivity network information
+ * @param   info        [OUT]   Local connectivity information structures
+ * @param   size        [OUT]   Number of local connectivity structures.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAGetEthernetInterfaceInformation(CALocalConnectivityt_t** info, uint32_t* size);
+
+/**
+ * @brief Read Synchronous API callback.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAReadEthernetData();
+
+/**
+ * @brief Stopping the adapters and close socket connections
+ *   Ethernet Stops all multicast and unicast servers and close sockets.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStopEthernet();
+
+/**
+ * @brief Terminate the Ethernet connectivity adapter.
+ * Configuration information will be deleted from further use
+ */
+void CATerminateEthernet();
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif
diff --git a/resource/csdk/connectivity/inc/cainterfacecontroller.h b/resource/csdk/connectivity/inc/cainterfacecontroller.h
new file mode 100644 (file)
index 0000000..d2af4d2
--- /dev/null
@@ -0,0 +1,52 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+#ifndef __CA_INTERFACE_CONTROLLER_H_
+#define __CA_INTERFACE_CONTROLLER_H_
+
+#include "caadapterinterface.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+void CAInitializeAdapters();
+
+void CASetPacketReceivedCallback(CANetworkPacketReceivedCallback callback);
+
+void CAStartAdapter(CAConnectivityType_t connectivity);
+
+void CAStopAdapter(CAConnectivityType_t connectivity);
+
+CAResult_t CASendUnicastData(const CARemoteEndpoint_t* endpoint, void* data, uint32_t length);
+
+CAResult_t CASendMulticastData(void* data, uint32_t length);
+
+CAResult_t CAStartListeningServerAdapters();
+
+CAResult_t CAStartDiscoveryServerAdapters();
+
+void CATerminateAdapters();
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif //#ifndef __CA_INTERFACE_CONTROLLER_H_
diff --git a/resource/csdk/connectivity/inc/caleadapter.h b/resource/csdk/connectivity/inc/caleadapter.h
new file mode 100644 (file)
index 0000000..a99d161
--- /dev/null
@@ -0,0 +1,138 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+/**
+ * @file caleadapter.h
+ * @brief This file contains the APIs for LE adapters to be implemented
+ */
+#ifndef _CA_LEADAPTER_H_
+#define _CA_LEADAPTER_H_
+
+#include "cacommon.h"
+#include "caadapterinterface.h"
+
+/**
+ * BLE Interface APIs.
+ */
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/**
+ * @brief Initialize LE connectivity interface.
+ * @param registerCallback [IN] To register LE interfaces to Connectivity Abstraction Layer
+ * @param reqRespCallback [IN] sending responses and discovery messages from unicast , multicast servers
+ * @param netCallback [IN] Intimate the network additions to Connectivity Abstraction Layer.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAInitializeLE(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback);
+/**
+ * @brief Starting LE connectivity adapters .As its peer to peer it doesnot require to start any servers
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartLE();
+
+/**
+ * @brief Starting listening server for receiving multicast search requests
+ * Transport Specific Behavior:
+ *   LE  Starts GATT Server with prefixed UUID and Characteristics as per OIC Specification.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartLEListeningServer();
+
+/**
+ * @brief for starting discovery servers for receiving multicast advertisements
+ * Transport Specific Behavior:
+ *   LE  Starts GATT Server with prefixed UUID and Characteristics as per OIC Specification.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartLEDiscoveryServer();
+
+/**
+ * @brief Sends data to the endpoint using the adapter connectivity.
+ * Note: length must be > 0.
+ * @param   endpoint    [IN]    Remote Endpoint information (like ipaddress , port, reference uri and connectivity type) to
+ *                              which the unicast data has to be sent.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendLEUnicastData(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen);
+
+/**
+ * @brief Sends Multicast data to the endpoint using the LE connectivity.
+ * Note: length must be > 0.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendLEMulticastData(void* data, uint32_t dataLen);
+
+/**
+ * @brief Starts notification server on EDR adapters.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartLENotifyServer();
+
+/**
+ * @brief Send notification information.
+ * Note: length must be > 0.
+ * @param   endpoint    [IN]    Remote Endpoint information (like ipaddress , port, reference uri and connectivity type) to
+ *                              which the unicast data has to be sent.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendLENotification(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen);
+
+/**
+ * @brief Get LE Connectivity network information
+ * @param   info        [OUT]   Local connectivity information structures
+ * @param   size        [OUT]   Number of local connectivity structures.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAGetLEInterfaceInformation(CALocalConnectivityt_t** info, uint32_t* size);
+
+/**
+ * @brief Read Synchronous API callback.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAReadLEData();
+
+/**
+ * @brief Stopping the adapters and close socket connections
+ *   LE Stops all GATT servers and close sockets.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStopLE();
+
+/**
+ * @brief Terminate the LE connectivity adapter.
+ * Configuration information will be deleted from further use
+ */
+void CATerminateLE();
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif //#ifndef _CA_LEADAPTER_H_
diff --git a/resource/csdk/connectivity/inc/camessagehandler.h b/resource/csdk/connectivity/inc/camessagehandler.h
new file mode 100644 (file)
index 0000000..597da7b
--- /dev/null
@@ -0,0 +1,58 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+#ifndef __CA_MESSAGE_HANDLER_H_
+#define __CA_MESSAGE_HANDLER_H_
+
+#include <stdint.h>
+#include "cacommon.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+typedef enum
+{
+    SUCCESS = 0, NETWORK_ERROR, FAIL
+} CADetachErrorCode;
+
+typedef void (*CAMessageHandlerCallback)(int32_t id, CADetachErrorCode code);
+
+int32_t CADetachRequestMessage(const CARemoteEndpoint_t* object, const CARequestInfo_t* request);
+
+int32_t CADetachResponseMessage(const CARemoteEndpoint_t* object, const CAResponseInfo_t* response);
+
+int32_t CADetachMessageResourceUri(const CAURI_t resourceUri);
+
+void CASetMessageHandlerCallback(CAMessageHandlerCallback callback);
+
+void CASetRequestResponseCallbacks(CARequestCallback ReqHandler, CAResponseCallback RespHandler);
+
+CAResult_t CAInitializeMessageHandler();
+
+void CATerminateMessageHandler();
+
+void CAHandleRequestResponseCallbacks();
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif //#ifndef __CA_MESSAGE_HANDLER_H_
diff --git a/resource/csdk/connectivity/inc/canetworkconfigurator.h b/resource/csdk/connectivity/inc/canetworkconfigurator.h
new file mode 100644 (file)
index 0000000..4117bf7
--- /dev/null
@@ -0,0 +1,45 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+#ifndef _NETWORK_CONFIGURATOR_H_
+#define _NETWORK_CONFIGURATOR_H_
+
+#include "uarraylist.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+static uint32_t NETWORK_ETHERNET = CA_ETHERNET;
+static uint32_t NETWORK_WIFI = CA_WIFI;
+static uint32_t NETWORK_EDR = CA_EDR;
+static uint32_t NETWORK_LE = CA_LE;
+
+CAResult_t CAAddNetworkType(uint32_t CAConnectivityType);
+
+CAResult_t CARemoveNetworkType(uint32_t CAConnectivityType);
+
+u_arraylist_t* CAGetSelectedNetworkList();
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif //#ifndef _NETWORK_CONFIGURATOR_H_
diff --git a/resource/csdk/connectivity/inc/caprotocolmessage.h b/resource/csdk/connectivity/inc/caprotocolmessage.h
new file mode 100644 (file)
index 0000000..baeb261
--- /dev/null
@@ -0,0 +1,80 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+#ifndef __CA_PROTOCOL_MESSAGE_H_
+#define __CA_PROTOCOL_MESSAGE_H_
+
+#include "cacommon.h"
+#include "config.h"
+#include "coap.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+uint32_t flags = 0;
+
+uint8_t msgtype = COAP_MESSAGE_CON; /* usually, requests are sent confirmable */
+
+coap_block_t block =
+{   .num = 0, .m = 0, .szx = 6};
+
+typedef uint32_t code_t;
+
+/**
+ * function for generate
+ */
+coap_pdu_t* CAGeneratePdu(const char* uri, const uint32_t code, const CAInfo_t info);
+/**
+ * function for parsing
+ */
+uint32_t CAGetRequestInfoFromPdu(const coap_pdu_t *pdu, CARequestInfo_t* outReqInfo);
+
+uint32_t CAGetResponseInfoFromPdu(const coap_pdu_t *pdu, CAResponseInfo_t* outResInfo);
+
+coap_pdu_t* CACreatePDUforRequest(const code_t code, coap_list_t *options);
+
+coap_pdu_t* CACreatePDUforRequestWithPayload(const code_t code, coap_list_t *optlist,
+        const char* payload);
+
+void CAParseURI(const char* uriInfo, coap_list_t **options);
+
+void CAParseHeadOption(const uint32_t code, const CAInfo_t info, coap_list_t **optlist);
+
+coap_list_t* CACreateNewOptionNode(const uint16_t key, const uint32_t length, const uint8_t *data);
+
+int32_t CAOrderOpts(void *a, void *b);
+
+void CAGetRequestPDUInfo(const coap_pdu_t *pdu, uint32_t* outCode, CAInfo_t* outInfo);
+
+coap_pdu_t* CAParsePDU(const char* data, uint32_t* outCode);
+
+/**
+ * function for token
+ */
+CAResult_t CAGenerateTokenInternal(CAToken_t* token);
+
+void CADestroyTokenInternal(CAToken_t token);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif //#ifndef __CA_PROTOCOL_MESSAGE_H_
diff --git a/resource/csdk/connectivity/inc/caremotehandler.h b/resource/csdk/connectivity/inc/caremotehandler.h
new file mode 100644 (file)
index 0000000..4c3a984
--- /dev/null
@@ -0,0 +1,55 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+#ifndef __CA_REMOTE_HANDLER_H_
+#define __CA_REMOTE_HANDLER_H_
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "cacommon.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+CARemoteEndpoint_t* CACloneRemoteEndpoint(const CARemoteEndpoint_t* rep);
+
+CARemoteEndpoint_t* CACreateRemoteEndpointUriInternal(const CAURI_t uri);
+
+CARemoteEndpoint_t* CACreateRemoteEndpointInternal(const CAURI_t resourceUri,
+        const CAAddress_t addr, const CAConnectivityType_t type);
+
+void CADestroyRemoteEndpointInternal(CARemoteEndpoint_t* rep);
+
+CARequestInfo_t* CACloneRequestInfo(const CARequestInfo_t* rep);
+
+void CADestroyRequestInfoInternal(CARequestInfo_t* rep);
+
+CAResponseInfo_t* CACloneResponseInfo(const CAResponseInfo_t* rep);
+
+void CADestroyResponseInfoInternal(CAResponseInfo_t* rep);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif //#ifndef __CA_REMOTE_HANDLER_H_
diff --git a/resource/csdk/connectivity/inc/cawifiadapter.h b/resource/csdk/connectivity/inc/cawifiadapter.h
new file mode 100644 (file)
index 0000000..07ad36a
--- /dev/null
@@ -0,0 +1,135 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+/**
+ * @file cawifiadapter.h
+ * @brief This file contains the APIs for WiFi Adapter.
+ */
+#ifndef __CA_WIFI_ADAPTER_H__
+#define __CA_WIFI_ADAPTER_H__
+
+#include "cacommon.h"
+#include "caadapterinterface.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/**
+ * @brief API to initialize WiFi Interface.
+ * @param registerCallback [IN] To register WIFI interfaces to Connectivity Abstraction Layer
+ * @param reqRespCallback [IN] sending responses and discovery messages from unicast , multicast servers
+ * @param netCallback [IN] Intimate the network additions to Connectivity Abstraction Layer.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAInitializeWifi(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback);
+
+/**
+ * @brief Start WiFi Interface adapter.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartWIFI();
+
+/**
+ * @brief Starting listening server for receiving multicast search requests
+ * Transport Specific Behavior:
+ *   WIFI Starts Multicast Server on  all available IPs and prefixed port number and as per OIC Specification.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartWIFIListeningServer();
+
+/**
+ * @brief for starting discovery servers for receiving multicast advertisements
+ * Transport Specific Behavior:
+ *   WIFI Starts Start multicast server on all available IPs and prefixed port number as per OIC Specification
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartWIFIDiscoveryServer();
+
+/**
+ * @brief Sends data to the endpoint using the adapter connectivity.
+ * Note: length must be > 0.
+ * @param   endpoint    [IN]    Remote Endpoint information (like ipaddress , port, reference uri and connectivity type) to
+ *                              which the unicast data has to be sent.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendWIFIUnicastData(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen);
+
+/**
+ * @brief Sends Multicast data to the endpoint using the WIFI connectivity.
+ * Note: length must be > 0.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendWIFIMulticastData(void* data, uint32_t dataLen);
+
+/**
+ * @brief Starts notification server on WIFI adapters.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartWIFINotifyRecvServers();
+
+/**
+ * @brief Send notification information.
+ * Note: length must be > 0.
+ * @param   endpoint    [IN]    Remote Endpoint information (like ipaddress , port, reference uri and connectivity type) to
+ *                              which the unicast data has to be sent.
+ * @param   data        [IN]    Data which required to be sent.
+ * @param   dataLen     [IN]    Size of data to be sent.
+ * @return - The number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendWIFINotification(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen);
+/**
+ * @brief Get WIFI Connectivity network information
+ * @param   info        [OUT]   Local connectivity information structures
+ * @param   size        [OUT]   Number of local connectivity structures.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAGetWIFIInterfaceInformation(CALocalConnectivityt_t** info, uint32_t* size);
+
+/**
+ * @brief Read Synchronous API callback.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAReadWIFIData();
+
+/**
+ * @brief Stopping the adapters and close socket connections
+ *   WIFI Stops all multicast and unicast servers and close sockets.
+ * @return CA_STATUS_OK or ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStopWIFI();
+
+/**
+ * @brief Terminate the WIFI connectivity adapter.
+ * Configuration information will be deleted from further use
+ */
+void CATerminateWIfI();
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif//#ifndef __CA_WIFI_ADAPTER_H__
diff --git a/resource/csdk/connectivity/inc/cawificore.h b/resource/csdk/connectivity/inc/cawificore.h
new file mode 100644 (file)
index 0000000..64e7a20
--- /dev/null
@@ -0,0 +1,83 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+/**
+ * @file cawificore.h
+ * @brief This file contains the APIs for Wi-Fi communications.
+ */
+#ifndef __CA_WIFICORE_H_
+#define __CA_WIFICORE_H_
+
+#include "cacommon.h"
+#include "config.h"
+#include "coap.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+typedef void (*CAPacketReceiveCallback)(const char* address, const char* data);
+
+void CAWiFiInitialize();
+
+void CAWiFiTerminate();
+
+int32_t CAWiFiSendUnicastMessage(const char* address, const char* data, int32_t length);
+
+int32_t CAWiFiSendMulticastMessage(const char* m_address, const char* data);
+
+int32_t CAWiFiStartUnicastServer(const char* address, int32_t port);
+
+int32_t CAWiFiStartMulticastServer(const char* m_address, int32_t port);
+
+int32_t CAWiFiStopUnicastServer(int32_t server_id);
+
+int32_t CAWiFiStopMulticastServer(int32_t server_id);
+
+void CAWiFiSetCallback(CAPacketReceiveCallback callback);
+
+void* CAUnicastReceiveThread(void* data);
+
+void* CAUnicastSendThread(void* data);
+
+void CASendUnicastMessage(char* address, void* data);
+
+int32_t CASendUnicastMessageImpl(const char* address, const char* data, int32_t lengh);
+
+void CAStopUnicastSendThread();
+
+void* CAMulticastReceiveThread(void* data);
+
+void* CAMulticastSendThread(void* data);
+
+void CASendMulticastMessage(void* data);
+
+int32_t CASendMulticastMessageImpl(const char* msg);
+
+void CAStopMulticastSendThread();
+
+void CAGetLocalAddress(char* addressBuffer);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif
diff --git a/resource/csdk/connectivity/inc/cawifiethernetadapter.h b/resource/csdk/connectivity/inc/cawifiethernetadapter.h
new file mode 100644 (file)
index 0000000..45dcab8
--- /dev/null
@@ -0,0 +1,137 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+/**
+ * @file cawifiethernetadapter.h
+ * @brief This file contains the APIs for WiFi/Ethernet Adapter.
+ */
+#ifndef __CA_WIFI_ETHERNET_ADAPTER_H__
+#define __CA_WIFI_ETHERNET_ADAPTER_H__
+
+#include "cacommon.h"
+#include "caadapterinterface.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/**
+ * @brief API to initialize WiFi Interface.
+ * @param registerCallback to register WIFI interfaces to things communication
+ * @param reqRespCallback for sending responses and discovery messages from unicast , multicast servers
+ * @param netCallback to intimate the network additions to things communication
+ * @return Error Code
+ */
+CAResult_t CAInitializeWifi(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback);
+
+/**
+ * @brief API to Start WiFi Interface.
+ * @return Error Code
+ */
+CAResult_t CAStartWIFI();
+
+/**
+ * @brief starting listening server
+ * Transport Specific Behaviour
+ *      IP :- Start Multicast Server on  all available IPs and prefixed port number and as per OIC Specification.
+ * @return Error Code CAResult_t.
+ */
+CAResult_t CAStartWIFIListeningServer();
+
+/**
+ * @brief for starting discovery servers.
+ * Transport Specific Behaviour
+ *      IP :- Start Multicast Server on all available IPs and prefixed port number as per OIC Specification.
+ * @return CAResult_t.
+ * CA_STATUS_OK = 0 else ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartWIFIDiscoveryServer();
+
+/**
+ * @brief Send Multicast Data interface API callback.
+ * Note: length must be > 0
+ * @param endpoint - Endpoint information (like ipaddress , port, reference uri and connectivity type) to which the multicast data has to be sent.
+ * @param data - void pointer data which will be sent via client
+ * @param dataLen - size of data to be sent
+ * @return - Will return the number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendWIFIUnicastData(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen);
+
+/**
+ * @brief API to send data to a group of remote addresses.
+ * @param endpoint - Endpoint information (like ipaddress , port, reference uri and connectivity type) to which the multicast data has to be sent.
+ * @param data - void pointer data which will be sent via client
+ * @param dataLen - size of data to be sent
+ * @return - size of data sent or -1 on error
+ */
+uint32_t CASendWIFIMulticastData(void* data, uint32_t dataLen);
+
+/**
+ * @brief Start Notification Server interface API callback.
+ *
+ * @return CAResult_t.
+ * CA_STATUS_OK = 0 else ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAStartWIFINotifyRecvServers();
+
+/**
+ * @brief Send Notification Data interface API callback.
+ * Note: length must be > 0
+ * @param endpoint - remote endpoint having endpoint details
+ *  @param data - data to be sent
+ *  @param dataLen - length of data to be sent
+ *  @return Will return the number of bytes sent on the network. Return value equal to zero indicates error.
+ */
+uint32_t CASendWIFINotification(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen);
+/**
+ * @brief Get Network Information
+ *
+ * @return CAResult_t.
+ * CA_STATUS_OK = 0 else ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAGetWIFIInterfaceInformation(CALocalConnectivityt_t** info, uint32_t* size);
+
+/**
+ * @brief Read Synchronous API callback.
+ * @return Error Code CAResult_t.
+ * @return CAResult_t.
+ * CA_STATUS_OK = 0 else ERROR CODES ( CAResult_t error codes in cacommon.h)
+ */
+CAResult_t CAReadWIFIData();
+
+/**
+ * @brief API to Stop WiFi Interface.
+ * @return CAResult_t
+ */
+CAResult_t CAStopWIFI();
+
+/**
+ * @brief API to terminate WiFi Interface.
+ * @return none.
+ */
+void CATerminateWifi();
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/.gitignore b/resource/csdk/connectivity/lib/libcoap-4.1.1/.gitignore
new file mode 100644 (file)
index 0000000..10301e2
--- /dev/null
@@ -0,0 +1 @@
+*.a
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/ChangeLog b/resource/csdk/connectivity/lib/libcoap-4.1.1/ChangeLog
new file mode 100644 (file)
index 0000000..404e331
--- /dev/null
@@ -0,0 +1,159 @@
+2014-02-04  Olaf Bergmann  <bergmann@tzi.org>
+
+       * resource.c (coap_print_link): This function now takes an offset
+       where printing starts. This is used for generating blocks on the
+       fly.
+
+       * net.c (wellknown_response): Added support for Block2 options
+       when generating a response for .well-known/core.
+
+       * block.h (coap_opt_block_num): Fixed handling of zero-length
+       options. COAP_OPT_BLOCK_LAST now returns NULL when the option
+       value's length is zero.
+
+2014-01-07  Olaf Bergmann  <bergmann@tzi.org>
+
+       * resource.c (coap_print_link): Output partial resource
+       descriptions. The function now provides a sliding window over the
+       textual representation of the resource. Output starts at the given
+       offset and ends at the buffer's upper bound. The meaning of the
+       return value has changed to allow distinguishing whether or not
+       the resource description has been truncated at the buffer's upper
+       bound.
+       (print_wellknown): Support for the new coap_print_link(). An
+       additional parameter now is used to provide the offset into the
+       resource description. The meaning of the return value has been
+       adjusted accordingly.
+
+2013-12-23  Olaf Bergmann  <bergmann@tzi.org>
+
+       * configure.in: merged with LWIP port from chrysn
+       <https://git.gitorious.org/coap-lwip/coap-lwip.git>. This
+       introduces new compiler flags WITH_POSIX and WITH_LWIP to
+       distinguish target platforms.
+
+2013-09-03  Olaf Bergmann  <bergmann@tzi.org>
+
+       * option.h (coap_option_setb): increased size of option type
+       argument
+
+       * tests/test_error_response.c (t_init_error_response_tests): new
+       tests for error response generation
+
+       * tests/test_pdu.c (t_encode_pdu5): fixed number for option Accept
+
+       * net.c (coap_new_error_response): fixed option size calculation
+
+2013-07-04  Olaf Bergmann  <bergmann@tzi.org>
+
+       * net.c (coap_new_context): register critical Accept option
+
+       * pdu.c: option codes for Accept and Size1 according to coap-18
+
+2013-02-01  Olaf Bergmann  <bergmann@tzi.org>
+
+       * coap_time.h (coap_clock_init_impl): fix invalid preprocessor
+       directive. #warning is now only used for gcc only (close sf bug #15)
+
+       * net.c (wellknown_response): applied patch from chrysn to
+       fix bug in generation of .well-known/core representation
+
+2013-01-21  Olaf Bergmann  <bergmann@tzi.org>
+
+       * option.h: renamed option field in coap_opt_iterator_t to
+       next_option to detect erroneous use in old code
+
+2013-01-18  Olaf Bergmann  <bergmann@tzi.org>
+
+       * configure.in: new option --with-tests to enable unit tests
+
+       * tests/testdriver.c: unit tests for parser functions
+
+       * pdu.c (coap_pdu_parse): new PDU parser for Klaus-encoding
+       according to coap-13
+
+       * net.c (coap_read): call coap_pdu_parse() to check PDU integrity
+
+       * option.c: Klaus-encoding for coap-13, including new option
+       iterator interface
+
+2012-11-20  Olaf Bergmann  <bergmann@tzi.org>
+
+       * net.c (next_option_safe): made option parsing more robust in
+       presence of option jumps
+
+       * pdu.h: new option codes from draft-ietf-core-coap-12
+
+       * option.c (coap_opt_setlength): new function to set option length
+
+       * uri.c (make_decoded_option): use coap_opt_setlength() instead of
+       obsolete macro COAP_OPT_SETLENGTH.
+
+2012-11-19  Olaf Bergmann  <bergmann@tzi.org>
+
+       * uri.c (make_decoded_option): use coap_opt_encode() instead of writing
+
+2012-11-03  Olaf Bergmann  <bergmann@tzi.org>
+
+       * net.c (coap_read): read new option encoding
+
+2012-11-01  Olaf Bergmann  <bergmann@tzi.org>
+
+       * option.c (coap_opt_size, coap_opt_value, coap_opt_length):
+       several functions to access fields of options (possibly preceeded
+       by option jump)
+
+2012-10-25  Olaf Bergmann  <bergmann@tzi.org>
+
+       * option.c (coap_opt_encode): new function for option encoding
+       with option jumps
+
+2012-03-23  Olaf Bergmann  <bergmann@tzi.org>
+
+       * examples/client.c (clear_obs): clear observation relationship after
+       user-specified duration
+
+2012-03-21  Olaf Bergmann  <bergmann@tzi.org>
+
+       * resource.c (print_wellknown): filtering by attributes
+
+2012-03-19  Olaf Bergmann  <bergmann@tzi.org>
+
+       * pdu.c (coap_add_option): allow more than 15 options.
+
+2012-03-15  Olaf Bergmann  <bergmann@tzi.org>
+
+       * examples/client.c (cmdline_uri): split path and query here to
+       make it easier to include these options in subsequent requests for
+       block transfer.
+
+2012-03-14  Olaf Bergmann  <bergmann@tzi.org>
+
+       * examples/etsi_iot_01.c: Support for POST, PUT, DELETE on /test
+
+2012-03-13  Olaf Bergmann  <bergmann@tzi.org>
+
+       * encode.c (coap_encode_var_bytes): more efficient coding for 0
+
+2012-03-11  Olaf Bergmann  <bergmann@tzi.org>
+
+       * examples/etsi_iot_01.c: Test cases for 1st ETSI CoAP Plugtest,
+       March 24/25, 2012 in Paris, France.
+
+2012-03-10  Olaf Bergmann  <bergmann@tzi.org>
+
+       * block.c: support for block transfer.
+
+2012-03-07  Olaf Bergmann  <bergmann@tzi.org>
+
+       * examples/client.c (usage): new command line options
+       -B to set timeout after which the main loop is left.
+       -e to specify a payload (incompatible with -f)
+       (message_handler): bugfixes
+
+       * resource.h: (coap_method_handler_t): new API for method handlers.
+
+
+Copyright 2012 Olaf Bergmann, TZI
+Copying and distribution of this file, with or without modification, are
+permitted provided the copyright notice and this notice are preserved.
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/LICENSE.BSD b/resource/csdk/connectivity/lib/libcoap-4.1.1/LICENSE.BSD
new file mode 100644 (file)
index 0000000..2fc333a
--- /dev/null
@@ -0,0 +1,26 @@
+Copyright (c) 2010--2011, Olaf Bergmann
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+  o Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+
+  o Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in
+    the documentation and/or other materials provided with the
+    distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/LICENSE.GPL b/resource/csdk/connectivity/lib/libcoap-4.1.1/LICENSE.GPL
new file mode 100644 (file)
index 0000000..d8cf7d4
--- /dev/null
@@ -0,0 +1,280 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+                            NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+                     END OF TERMS AND CONDITIONS
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/Makefile b/resource/csdk/connectivity/lib/libcoap-4.1.1/Makefile
new file mode 100644 (file)
index 0000000..23475f8
--- /dev/null
@@ -0,0 +1,113 @@
+# Makefile for libcoap
+#
+# Copyright (C) 2010--2013 Olaf Bergmann <bergmann@tzi.org>
+#
+# This file is part of the CoAP library libcoap. Please see
+# README for terms of use. 
+
+# the library's version
+VERSION:=4.1.1
+
+# tools
+
+RANLIB=ranlib
+SHELL = /bin/sh
+MKDIR = mkdir
+ETAGS = /bin/false
+
+abs_builddir = /connectivity/connectivity/src/bt_edr_adapter/libcoap-4.1.1
+top_builddir = .
+package = libcoap-4.1.1
+
+# files and flags
+SOURCES:= pdu.c net.c debug.c encode.c uri.c coap_list.c resource.c hashkey.c \
+        str.c option.c async.c subscribe.c block.c
+OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
+HEADERS:=coap.h config.h debug.h pdu.h net.h encode.h uri.h coap_list.h mem.h \
+       str.h option.h bits.h uthash.h utlist.h resource.h hashkey.h async.h \
+       subscribe.h block.h address.h prng.h coap_time.h t_list.h
+CFLAGS:=-Wall -Wextra -std=c99 -pedantic -g -O2
+CPPFLAGS:= -DWITH_POSIX
+DISTDIR=$(top_builddir)/$(package)
+SUBDIRS:=#examples #doc tests
+FILES:=ChangeLog README LICENSE.BSD LICENSE.GPL Makefile.in configure configure.in config.h.in $(SOURCES) $(HEADERS)
+LIB:=libcoap.a
+LDSOFLAGS=-shared
+LDFLAGS:=
+ARFLAGS:=cru
+examples:=examples
+doc:=doc
+
+
+ifdef BUILD_SO
+  MACHINE?=$(shell $(CC) -dumpmachine)
+  ifeq ($(findstring Darwin, $(MACHINE)), Darwin)
+    LDSOFLAGS=-dynamiclib
+    LIBSO=libcoap.dylib
+  endif
+  ifeq ($(findstring Windows, $(MACHINE)), Windows)
+    LIBSO=libcoap.dll
+  endif
+  # more platforms go here
+  ifndef LIBSO
+    LIBSO=libcoap.so
+  endif
+  ifndef PICFLAG
+    CFLAGS+=-fPIC
+  else
+    CFLAGS+=$(PICFLAG)
+  endif
+endif
+
+.PHONY: all dirs clean distclean .gitignore doc TAGS
+
+.SUFFIXES:
+.SUFFIXES:      .c .o
+
+all:   $(LIB) $(LIBSO) dirs
+
+check: 
+       echo DISTDIR: $(DISTDIR)
+       echo top_builddir: $(top_builddir)
+       $(MAKE) -C examples check
+
+dirs:  $(SUBDIRS)
+       for dir in $^; do \
+               $(MAKE) -C $$dir ; \
+       done
+
+$(LIB):        $(OBJECTS)
+       $(AR) $(ARFLAGS) $@ $^ 
+       $(RANLIB) $@
+
+$(LIBSO):      $(OBJECTS)
+       $(LD) $(LDSOFLAGS) $(LDFLAGS) -o $@ $^
+
+clean:
+       @rm -f $(PROGRAM) main.o $(LIB) $(LIBSO) $(OBJECTS)
+       for dir in $(SUBDIRS); do \
+               $(MAKE) -C $$dir clean ; \
+       done
+
+doc:   
+       $(MAKE) -C doc
+
+distclean:     clean
+       @rm -rf $(DISTDIR)
+       @rm -f *~ $(DISTDIR).tar.gz
+
+dist:  $(FILES) $(SUBDIRS)
+       test -d $(DISTDIR) || mkdir $(DISTDIR)
+       cp $(FILES) $(DISTDIR)
+       for dir in $(SUBDIRS); do \
+               $(MAKE) -C $$dir dist; \
+       done
+       tar czf $(package).tar.gz $(DISTDIR)
+
+TAGS:  
+       $(ETAGS) -o $@.new $(SOURCES) 
+       $(ETAGS) -a -o $@.new $(HEADERS) 
+       mv $@.new $@
+
+.gitignore:
+       echo "core\n*~\n*.[oa]\n*.gz\n*.cap\n$(PROGRAM)\n$(DISTDIR)\n.gitignore" >$@
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/Makefile.in b/resource/csdk/connectivity/lib/libcoap-4.1.1/Makefile.in
new file mode 100644 (file)
index 0000000..d9b1c55
--- /dev/null
@@ -0,0 +1,113 @@
+# Makefile for libcoap
+#
+# Copyright (C) 2010--2013 Olaf Bergmann <bergmann@tzi.org>
+#
+# This file is part of the CoAP library libcoap. Please see
+# README for terms of use. 
+
+# the library's version
+VERSION:=@PACKAGE_VERSION@
+
+# tools
+@SET_MAKE@
+RANLIB=@RANLIB@
+SHELL = /bin/sh
+MKDIR = mkdir
+ETAGS = @ETAGS@
+
+abs_builddir = @abs_builddir@
+top_builddir = @top_builddir@
+package = @PACKAGE_TARNAME@-@PACKAGE_VERSION@
+
+# files and flags
+SOURCES:= pdu.c net.c debug.c encode.c uri.c coap_list.c resource.c hashkey.c \
+        str.c option.c async.c subscribe.c block.c
+OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
+HEADERS:=coap.h config.h debug.h pdu.h net.h encode.h uri.h coap_list.h mem.h \
+       str.h option.h bits.h uthash.h utlist.h resource.h hashkey.h async.h \
+       subscribe.h block.h address.h prng.h coap_time.h t_list.h
+CFLAGS:=-Wall -Wextra -std=c99 -pedantic @CFLAGS@
+CPPFLAGS:=@CPPFLAGS@
+DISTDIR=$(top_builddir)/$(package)
+SUBDIRS:=examples doc tests
+FILES:=ChangeLog README LICENSE.BSD LICENSE.GPL Makefile.in configure configure.in config.h.in $(SOURCES) $(HEADERS)
+LIB:=libcoap.a
+LDSOFLAGS=-shared
+LDFLAGS:=@LIBS@
+ARFLAGS:=cru
+examples:=examples
+doc:=doc
+@BUILD_SO@
+
+ifdef BUILD_SO
+  MACHINE?=$(shell $(CC) -dumpmachine)
+  ifeq ($(findstring Darwin, $(MACHINE)), Darwin)
+    LDSOFLAGS=-dynamiclib
+    LIBSO=libcoap.dylib
+  endif
+  ifeq ($(findstring Windows, $(MACHINE)), Windows)
+    LIBSO=libcoap.dll
+  endif
+  # more platforms go here
+  ifndef LIBSO
+    LIBSO=libcoap.so
+  endif
+  ifndef PICFLAG
+    CFLAGS+=-fPIC
+  else
+    CFLAGS+=$(PICFLAG)
+  endif
+endif
+
+.PHONY: all dirs clean distclean .gitignore doc TAGS
+
+.SUFFIXES:
+.SUFFIXES:      .c .o
+
+all:   $(LIB) $(LIBSO) dirs
+
+check: 
+       echo DISTDIR: $(DISTDIR)
+       echo top_builddir: $(top_builddir)
+       $(MAKE) -C examples check
+
+dirs:  $(SUBDIRS)
+       for dir in $^; do \
+               $(MAKE) -C $$dir ; \
+       done
+
+$(LIB):        $(OBJECTS)
+       $(AR) $(ARFLAGS) $@ $^ 
+       $(RANLIB) $@
+
+$(LIBSO):      $(OBJECTS)
+       $(LD) $(LDSOFLAGS) $(LDFLAGS) -o $@ $^
+
+clean:
+       @rm -f $(PROGRAM) main.o $(LIB) $(LIBSO) $(OBJECTS)
+       for dir in $(SUBDIRS); do \
+               $(MAKE) -C $$dir clean ; \
+       done
+
+doc:   
+       $(MAKE) -C doc
+
+distclean:     clean
+       @rm -rf $(DISTDIR)
+       @rm -f *~ $(DISTDIR).tar.gz
+
+dist:  $(FILES) $(SUBDIRS)
+       test -d $(DISTDIR) || mkdir $(DISTDIR)
+       cp $(FILES) $(DISTDIR)
+       for dir in $(SUBDIRS); do \
+               $(MAKE) -C $$dir dist; \
+       done
+       tar czf $(package).tar.gz $(DISTDIR)
+
+TAGS:  
+       $(ETAGS) -o $@.new $(SOURCES) 
+       $(ETAGS) -a -o $@.new $(HEADERS) 
+       mv $@.new $@
+
+.gitignore:
+       echo "core\n*~\n*.[oa]\n*.gz\n*.cap\n$(PROGRAM)\n$(DISTDIR)\n.gitignore" >$@
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/README b/resource/csdk/connectivity/lib/libcoap-4.1.1/README
new file mode 100644 (file)
index 0000000..5faa3dc
--- /dev/null
@@ -0,0 +1,27 @@
+libcoap: A C implementation of IETF Core Application protocol
+
+Copyright (C) 2010--2013 by Olaf Bergmann <bergmann@tzi.org>
+
+ABOUT LIBCOAP 
+
+libcoap is a C implementation of a lightweight application-protocol
+for devices that are constrained their resources such as computing
+power, RF range, memory, bandwith, or network packet sizes. This
+protocol, CoAP, is developed in the IETF working group "Constrained
+RESTful Environments (core)", see <http://6lowapp.net>.
+
+PACKAGE CONTENTS
+
+This directory contains a protocol parser and basic networking
+functions for platform with support for malloc() and BSD-style
+sockets. The examples directory contains a client and a server to
+demonstrate the use of this library. 
+
+LICENSE INFORMATION
+
+This library is published as open-source software without any warranty
+of any kind. Use is permitted under the terms of the GNU General
+Public License (GPL), Version 2 or higher, OR the revised BSD
+license. Please refer to LICENSE.GPL oder LICENSE.BSD for further
+details.
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/address.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/address.h
new file mode 100644 (file)
index 0000000..24ebce7
--- /dev/null
@@ -0,0 +1,176 @@
+/* address.h -- representation of network addresses
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+/** 
+ * @file address.h
+ * @brief representation of network addresses
+ */
+
+#ifndef _COAP_ADDRESS_H_
+#define _COAP_ADDRESS_H_
+
+#include "config.h"
+
+#ifdef HAVE_ASSERT_H
+#include <assert.h>
+#else
+#ifndef assert
+#warning "assertions are disabled"
+#  define assert(x)
+#endif
+#endif
+
+#include <string.h>
+#include <stdint.h>
+
+#ifdef HAVE_NETINET_IN_H
+#include <netinet/in.h>
+#endif
+
+#ifdef HAVE_NETINET_IN_H
+#include <sys/socket.h>
+#endif
+
+#ifdef WITH_LWIP
+#include <lwip/ip_addr.h>
+
+typedef struct coap_address_t
+{
+    uint16_t port;
+    ip_addr_t addr;
+}coap_address_t;
+
+/* FIXME oversimplification: just assuming it's an ipv4 address instead of
+ * looking up the appropraite lwip function */
+
+#define _coap_address_equals_impl(A, B) ((A)->addr.addr == (B)->addr.addr && A->port == B->port)
+
+/* FIXME sure there is something in lwip */
+
+#define _coap_is_mcast_impl(Address) 0
+
+#endif /* WITH_LWIP */
+#ifdef WITH_CONTIKI
+#include "uip.h"
+
+typedef struct coap_address_t
+{
+    unsigned char size;
+    uip_ipaddr_t addr;
+    unsigned short port;
+}coap_address_t;
+
+#define _coap_address_equals_impl(A,B)                         \
+  ((A)->size == (B)->size                                      \
+   && (A)->port == (B)->port                                   \
+   && uip_ipaddr_cmp(&((A)->addr),&((B)->addr)))
+
+#define _coap_is_mcast_impl(Address) uip_is_addr_mcast(&((Address)->addr))
+#endif /* WITH_CONTIKI */
+#ifdef WITH_POSIX
+
+/** multi-purpose address abstraction */
+typedef struct coap_address_t
+{
+    socklen_t size; /**< size of addr */
+    union
+    {
+        struct sockaddr sa;
+        struct sockaddr_storage st;
+        struct sockaddr_in sin;
+        struct sockaddr_in6 sin6;
+    }addr;
+}coap_address_t;
+
+static inline int
+_coap_address_equals_impl(const coap_address_t *a,
+        const coap_address_t *b)
+{
+    if (a->size != b->size || a->addr.sa.sa_family != b->addr.sa.sa_family)
+    return 0;
+
+    /* need to compare only relevant parts of sockaddr_in6 */
+    switch (a->addr.sa.sa_family)
+    {
+        case AF_INET:
+        return
+        a->addr.sin.sin_port == b->addr.sin.sin_port &&
+        memcmp(&a->addr.sin.sin_addr, &b->addr.sin.sin_addr,
+                sizeof(struct in_addr)) == 0;
+        case AF_INET6:
+        return a->addr.sin6.sin6_port == b->addr.sin6.sin6_port &&
+        memcmp(&a->addr.sin6.sin6_addr, &b->addr.sin6.sin6_addr,
+                sizeof(struct in6_addr)) == 0;
+        default: /* fall through and signal error */
+        ;
+    }
+    return 0;
+}
+
+static inline int
+_coap_is_mcast_impl(const coap_address_t *a)
+{
+    if (!a)
+    {
+        printf("[COAP] address - coap_address_t is false\n");
+        return 0;
+    }
+    switch (a->addr.sa.sa_family)
+    {
+        case AF_INET:
+        printf("[COAP] address - local address : %s\n", a->addr.sin.sin_addr.s_addr);
+        return IN_MULTICAST(a->addr.sin.sin_addr.s_addr);
+        case AF_INET6:
+        return IN6_IS_ADDR_MULTICAST(&a->addr.sin6.sin6_addr);
+        default: /* fall through and signal error */
+        printf("[COAP] address - sa_family is default value\n");
+        ;
+    }
+    return 0;
+}
+#endif /* WITH_POSIX */
+
+/** 
+ * Resets the given coap_address_t object @p addr to its default
+ * values.  In particular, the member size must be initialized to the
+ * available size for storing addresses.
+ * 
+ * @param addr The coap_address_t object to initialize.
+ */
+static inline void coap_address_init(coap_address_t *addr)
+{
+    assert(addr);
+    memset(addr, 0, sizeof(coap_address_t));
+#ifndef WITH_LWIP
+    /* lwip has constandt address sizes and doesn't need the .size part */
+    addr->size = sizeof(addr->addr);
+#endif
+}
+
+/**
+ * Compares given address objects @p a and @p b. This function returns
+ * @c 1 if addresses are equal, @c 0 otherwise. The parameters @p a
+ * and @p b must not be @c NULL;
+ */
+static inline int coap_address_equals(const coap_address_t *a, const coap_address_t *b)
+{
+    assert(a);
+    assert(b);
+    return _coap_address_equals_impl(a, b);
+}
+
+/**
+ * Checks if given address @p a denotes a multicast address.  This
+ * function returns @c 1 if @p a is multicast, @c 0 otherwise.
+ */
+static inline int coap_is_mcast(const coap_address_t *a)
+{
+    return a && _coap_is_mcast_impl(a);
+}
+
+#endif /* _COAP_ADDRESS_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/async.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/async.c
new file mode 100644 (file)
index 0000000..8c6ec26
--- /dev/null
@@ -0,0 +1,105 @@
+/* async.c -- state management for asynchronous messages
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+/** 
+ * @file async.c
+ * @brief state management for asynchronous messages
+ */
+
+#ifndef WITHOUT_ASYNC
+
+#include "config.h"
+
+#include "utlist.h"
+
+#include "mem.h"
+#include "debug.h"
+#include "async.h"
+
+coap_async_state_t *
+coap_register_async(coap_context_t *context, coap_address_t *peer, coap_pdu_t *request,
+        unsigned char flags, void *data)
+{
+    coap_async_state_t *s;
+    coap_tid_t id;
+
+    coap_transaction_id(peer, request, &id);
+    LL_SEARCH_SCALAR(context->async_state, s, id, id);
+
+    if (s != NULL)
+    {
+        /* We must return NULL here as the caller must know that he is
+         * responsible for releasing @p data. */
+        debug("asynchronous state for transaction %d already registered\n", id);
+        return NULL;
+    }
+
+    /* store information for handling the asynchronous task */
+    s = (coap_async_state_t *) coap_malloc(sizeof(coap_async_state_t) +
+            request->hdr->token_length);
+    if (!s)
+    {
+        coap_log(LOG_CRIT, "coap_register_async: insufficient memory\n");
+        return NULL;
+    }
+
+    memset(s, 0, sizeof(coap_async_state_t) + request->hdr->token_length);
+
+    /* set COAP_ASYNC_CONFIRM according to request's type */
+    s->flags = flags & ~COAP_ASYNC_CONFIRM;
+    if (request->hdr->type == COAP_MESSAGE_CON)
+        s->flags |= COAP_ASYNC_CONFIRM;
+
+    s->appdata = data;
+
+    memcpy(&s->peer, peer, sizeof(coap_address_t));
+
+    if (request->hdr->token_length)
+    {
+        s->tokenlen = request->hdr->token_length;
+        memcpy(s->token, request->hdr->token, request->hdr->token_length);
+    }
+
+    memcpy(&s->id, &id, sizeof(coap_tid_t));
+
+    coap_touch_async(s);
+
+    LL_PREPEND(context->async_state, s);
+
+    return s;
+}
+
+coap_async_state_t *
+coap_find_async(coap_context_t *context, coap_tid_t id)
+{
+    coap_async_state_t *tmp;
+    LL_SEARCH_SCALAR(context->async_state, tmp, id, id);
+    return tmp;
+}
+
+int coap_remove_async(coap_context_t *context, coap_tid_t id, coap_async_state_t **s)
+{
+    coap_async_state_t *tmp = coap_find_async(context, id);
+
+    if (tmp)
+        LL_DELETE(context->async_state, tmp);
+
+    *s = tmp;
+    return tmp != NULL;
+}
+
+void coap_free_async(coap_async_state_t *s)
+{
+    if (s && (s->flags & COAP_ASYNC_RELEASE_DATA) != 0)
+        coap_free(s->appdata);
+    coap_free(s);
+}
+
+#else
+void does_not_exist(); /* make some compilers happy */
+#endif /* WITHOUT_ASYNC */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/async.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/async.h
new file mode 100644 (file)
index 0000000..9f6c7b0
--- /dev/null
@@ -0,0 +1,148 @@
+/* async.h -- state management for asynchronous messages
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+/** 
+ * @file async.h
+ * @brief state management for asynchronous messages
+ */
+
+#ifndef _COAP_ASYNC_H_
+#define _COAP_ASYNC_H_
+
+#include "config.h"
+#include "net.h"
+
+#ifndef WITHOUT_ASYNC
+
+/**
+ * @defgroup coap_async Asynchronous Messaging
+ * @{
+ * Structure for managing asynchronous state of CoAP resources. A
+ * coap_resource_t object holds a list of coap_async_state_t objects
+ * that can be used to generate a separate response in case a result
+ * of an operation cannot be delivered in time, or the resource has
+ * been explicitly subscribed to with the option @c observe.
+ */
+typedef struct coap_async_state_t
+{
+    unsigned char flags; /**< holds the flags to control behaviour */
+
+    /** 
+     * Holds the internal time when the object was registered with a
+     * resource. This field will be updated whenever
+     * coap_register_async() is called for a specific resource.
+     */
+    coap_tick_t created;
+
+    /**
+     * This field can be used to register opaque application data with
+     * the asynchronous state object. */
+    void *appdata;
+
+    unsigned short message_id; /**< id of last message seen */
+    coap_tid_t id; /**< transaction id */
+
+    struct coap_async_state_t *next; /**< internally used for linking */
+
+    coap_address_t peer; /**< the peer to notify */
+    size_t tokenlen; /**< length of the token */
+    unsigned char token[]; /**< the token to use in a response */
+} coap_async_state_t;
+
+/* Definitions for Async Status Flags These flags can be used to
+ * control the behaviour of asynchronous response generation. */
+#define COAP_ASYNC_CONFIRM   0x01 /**< send confirmable response */
+#define COAP_ASYNC_SEPARATE  0x02 /**< send separate response */
+#define COAP_ASYNC_OBSERVED  0x04 /**< the resource is being observed */
+
+/** release application data on destruction */
+#define COAP_ASYNC_RELEASE_DATA  0x08
+
+/** 
+ * Allocates a new coap_async_state_t object and fills its fields
+ * according to the given @p request. The @p flags are used to control
+ * generation of empty ACK responses to stop retransmissions and to
+ * release registered @p data when the resource is deleted by
+ * coap_free_async().  This function returns a pointer to the registered
+ * coap_async_t object or @c NULL on error. Note that this function will
+ * return @c NULL in case that an object with the same identifier is
+ * already registered.
+ * 
+ * @param context  The context to use.
+ * @param peer     The remote peer that is to be asynchronously notified.
+ * @param request  The request that is handled asynchronously.
+ * @param flags    Flags to control state management.
+ * @param data     Opaque application data to register. Note that the
+ *                 storage occupied by @p data is released on destruction
+ *                 only if flag COAP_ASYNC_RELEASE_DATA is set.
+ * 
+ * @return A pointer to the registered coap_async_state_t object or
+ * @c NULL in case of an error.
+ */
+coap_async_state_t *
+coap_register_async(coap_context_t *context, coap_address_t *peer, coap_pdu_t *request,
+        unsigned char flags, void *data);
+
+/** 
+ * Removes the state object identified by @p id from @p context. The
+ * removed object is returned in @p s, if found. Otherwise, @p s is
+ * undefined. This function returns @c 1 if the object was removed, @c
+ * 0 otherwise. Note that the storage allocated for the stored object
+ * is not released by this functions. You will have to call
+ * coap_free_async() to do so.
+ * 
+ * @param context The context where the async object is registered.
+ * @param id      The identifier of the asynchronous transaction.
+ * @param s       Will be set to the object identified by @p id 
+ * after removal.
+ * 
+ * @return @c 1 if object was removed and @p s updated, or @c 0 if no
+ * object was found with the given id. @p s is valid only if the
+ * return value is @c 1.
+ */
+int coap_remove_async(coap_context_t *context, coap_tid_t id, coap_async_state_t **s);
+
+/** 
+ * Releases the memory that was allocated by coap_async_state_init()
+ * for the object @p s. The registered application data will be
+ * released automatically if COAP_ASYNC_RELEASE_DATA is set.
+ * 
+ * @param s The object to delete.
+ */
+void
+coap_free_async(coap_async_state_t *state);
+
+/** 
+ * Retrieves the object identified by @p id from the list of asynchronous
+ * transactions that are registered with @p context. This function returns
+ * a pointer to that object or @c NULL if not found.
+ * 
+ * @param context The context where the asynchronous objects are 
+ * registered with.
+ * @param id      The id of the object to retrieve.
+ * 
+ * @return A pointer to the object identified by @p id or @c NULL if
+ * not found.
+ */
+coap_async_state_t *coap_find_async(coap_context_t *context, coap_tid_t id);
+
+/** 
+ * Updates the time stamp of @p s.
+ * 
+ * @param s The state object to update.
+ */
+static inline void coap_touch_async(coap_async_state_t *s)
+{
+    coap_ticks(&s->created);
+}
+
+/** @} */
+
+#endif /*  WITHOUT_ASYNC */
+
+#endif /* _COAP_ASYNC_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/bits.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/bits.h
new file mode 100644 (file)
index 0000000..487af39
--- /dev/null
@@ -0,0 +1,79 @@
+/*
+ * bits.h -- bit vector manipulation
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+/**
+ * @file bits.h
+ * @brief bit vector manipulation
+ */
+
+#ifndef _BITS_H_
+#define _BITS_H_
+
+#include <sys/types.h>
+#include <stdint.h>
+
+/** 
+ * Sets the bit @p bit in bit-vector @p vec. This function returns @c
+ * 1 if bit was set or @c -1 on error (i.e. when the given bit does
+ * not fit in the vector).
+ * 
+ * @param vec  The bit-vector to change.
+ * @param size The size of @p vec in bytes.
+ * @param bit  The bit to set in @p vec.
+ * 
+ * @return @c -1 if @p bit does not fit into @p vec, @c 1 otherwise.
+ */
+inline static int bits_setb(uint8_t *vec, size_t size, uint8_t bit)
+{
+    if (size <= (bit >> 3))
+        return -1;
+
+    *(vec + (bit >> 3)) |= (uint8_t)(1 << (bit & 0x07));
+    return 1;
+}
+
+/** 
+ * Clears the bit @p bit from bit-vector @p vec. This function returns
+ * @c 1 if bit was cleared or @c -1 on error (i.e. when the given bit
+ * does not fit in the vector).
+ * 
+ * @param vec  The bit-vector to change.
+ * @param size The size of @p vec in bytes.
+ * @param bit  The bit to clear from @p vec.
+ * 
+ * @return @c -1 if @p bit does not fit into @p vec, @c 1 otherwise.
+ */
+inline static int bits_clrb(uint8_t *vec, size_t size, uint8_t bit)
+{
+    if (size <= (bit >> 3))
+        return -1;
+
+    *(vec + (bit >> 3)) &= (uint8_t)(~(1 << (bit & 0x07)));
+    return 1;
+}
+
+/** 
+ * Gets the status of bit @p bit from bit-vector @p vec. This function returns
+ * @c 1 if the bit is set, @c 0 otherwise (even in case of an error)..
+ * 
+ * @param vec  The bit-vector to read from..
+ * @param size The size of @p vec in bytes.
+ * @param bit  The bit to get from @p vec.
+ * 
+ * @return @c 1 if the bit is set, @c 0 otherwise.
+ */
+inline static int bits_getb(const uint8_t *vec, size_t size, uint8_t bit)
+{
+    if (size <= (bit >> 3))
+        return -1;
+
+    return (*(vec + (bit >> 3)) & (1 << (bit & 0x07))) != 0;
+}
+
+#endif /* _BITS_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/block.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/block.c
new file mode 100644 (file)
index 0000000..3ad47e3
--- /dev/null
@@ -0,0 +1,140 @@
+/* block.c -- block transfer
+ *
+ * Copyright (C) 2010--2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+
+#if defined(HAVE_ASSERT_H) && !defined(assert)
+# include <assert.h>
+#endif
+
+#include "debug.h"
+#include "block.h"
+
+#define min(a,b) ((a) < (b) ? (a) : (b))
+
+#ifndef WITHOUT_BLOCK
+unsigned int coap_opt_block_num(const coap_opt_t *block_opt)
+{
+    unsigned int num = 0;
+    unsigned short len;
+
+    len = coap_opt_length(block_opt);
+
+    if (len == 0)
+    {
+        return 0;
+    }
+
+    if (len > 1)
+    {
+        num = coap_decode_var_bytes(COAP_OPT_VALUE(block_opt), COAP_OPT_LENGTH(block_opt) - 1);
+    }
+
+    return (num << 4) | ((*COAP_OPT_BLOCK_LAST(block_opt) & 0xF0) >> 4);
+}
+
+int coap_get_block(coap_pdu_t *pdu, unsigned short type, coap_block_t *block)
+{
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *option;
+
+    assert(block);
+    memset(block, 0, sizeof(coap_block_t));
+
+    if (pdu && (option = coap_check_option(pdu, type, &opt_iter)))
+    {
+        block->szx = COAP_OPT_BLOCK_SZX(option);
+        if (COAP_OPT_BLOCK_MORE(option))
+            block->m = 1;
+        block->num = coap_opt_block_num(option);
+        return 1;
+    }
+
+    return 0;
+}
+
+int coap_write_block_opt(coap_block_t *block, unsigned short type, coap_pdu_t *pdu,
+        size_t data_length)
+{
+    size_t start, want, avail;
+    unsigned char buf[3];
+
+    assert(pdu);
+
+    /* Block2 */
+    if (type != COAP_OPTION_BLOCK2)
+    {
+        warn("coap_write_block_opt: skipped unknown option\n");
+        return -1;
+    }
+
+    start = block->num << (block->szx + 4);
+    if (data_length <= start)
+    {
+        debug("illegal block requested\n");
+        return -2;
+    }
+
+    avail = pdu->max_size - pdu->length - 4;
+    want = 1 << (block->szx + 4);
+
+    /* check if entire block fits in message */
+    if (want <= avail)
+    {
+        block->m = want < data_length - start;
+    }
+    else
+    {
+        /* Sender has requested a block that is larger than the remaining
+         * space in pdu. This is ok if the remaining data fits into the pdu
+         * anyway. The block size needs to be adjusted only if there is more
+         * data left that cannot be delivered in this message. */
+
+        if (data_length - start <= avail)
+        {
+
+            /* it's the final block and everything fits in the message */
+            block->m = 0;
+        }
+        else
+        {
+            unsigned char szx;
+
+            /* we need to decrease the block size */
+            if (avail < 16)
+            { /* bad luck, this is the smallest block size */
+                debug("not enough space, even the smallest block does not fit");
+                return -3;
+            }
+            debug("decrease block size for %d to %d\n", avail, coap_fls(avail) - 5);
+            szx = block->szx;
+            block->szx = coap_fls(avail) - 5;
+            block->m = 1;
+            block->num <<= szx - block->szx;
+        }
+    }
+
+    /* to re-encode the block option */
+    coap_add_option(pdu, type,
+            coap_encode_var_bytes(buf, ((block->num << 4) | (block->m << 3) | block->szx)), buf);
+
+    return 1;
+}
+
+int coap_add_block(coap_pdu_t *pdu, unsigned int len, const unsigned char *data,
+        unsigned int block_num, unsigned char block_szx)
+{
+    size_t start;
+    start = block_num << (block_szx + 4);
+
+    if (len <= start)
+        return 0;
+
+    return coap_add_data(pdu, min(len - start, (unsigned int)(1 << (block_szx + 4))), data + start);
+}
+#endif /* WITHOUT_BLOCK  */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/block.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/block.h
new file mode 100644 (file)
index 0000000..6451383
--- /dev/null
@@ -0,0 +1,138 @@
+/* block.h -- block transfer
+ *
+ * Copyright (C) 2010--2012,2014 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _COAP_BLOCK_H_
+#define _COAP_BLOCK_H_
+
+#include "option.h"
+#include "encode.h"
+#include "pdu.h"
+
+/**
+ * @defgroup block Block Transfer
+ * @{
+ */
+
+#ifndef COAP_MAX_BLOCK_SZX
+/**
+ * The largest value for the SZX component in a Block option. Note
+ * that 1 << (COAP_MAX_BLOCK_SZX + 4) should not exceed
+ * COAP_MAX_PDU_SIZE.
+ */
+#define COAP_MAX_BLOCK_SZX      4
+#endif /* COAP_MAX_BLOCK_SZX */
+
+#if (COAP_MAX_PDU_SIZE - 6) < (1 << (COAP_MAX_BLOCK_SZX + 4))
+#error "COAP_MAX_BLOCK_SZX too large"
+#endif
+
+/**
+ * Structure of Block options. 
+ */
+typedef struct
+{
+    unsigned int num :20; /**< block number */
+    unsigned int m :1; /**< 1 if more blocks follow, 0 otherwise */
+    unsigned int szx :3; /**< block size */
+} coap_block_t;
+
+/**
+ * Returns the value of the least significant byte of a Block option @p opt. 
+ * For zero-length options (i.e. num == m == szx == 0), COAP_OPT_BLOCK_LAST
+ * returns @c NULL.
+ */
+#define COAP_OPT_BLOCK_LAST(opt) \
+  (COAP_OPT_LENGTH(opt) ? (COAP_OPT_VALUE(opt) + (COAP_OPT_LENGTH(opt)-1)) : 0)
+
+/** Returns the value of the More-bit of a Block option @p opt. */
+#define COAP_OPT_BLOCK_MORE(opt) \
+  (COAP_OPT_LENGTH(opt) ? (*COAP_OPT_BLOCK_LAST(opt) & 0x08) : 0)
+
+/** Returns the value of the SZX-field of a Block option @p opt. */
+#define COAP_OPT_BLOCK_SZX(opt)  \
+  (COAP_OPT_LENGTH(opt) ? (*COAP_OPT_BLOCK_LAST(opt) & 0x07) : 0)
+
+/**
+ * Returns the value of field @c num in the given block option @p
+ * block_opt.
+ */
+unsigned int coap_opt_block_num(const coap_opt_t *block_opt);
+
+/**
+ * Checks if more than @p num blocks are required to deliver @p data_len
+ * bytes of data for a block size of 1 << (@p szx + 4).
+ */
+static inline int coap_more_blocks(size_t data_len, unsigned int num, unsigned short szx)
+{
+    return ((num + 1) << (szx + 4)) < data_len;
+}
+
+/** Sets the More-bit in @p block_opt */
+static inline void coap_opt_block_set_m(coap_opt_t *block_opt, int m)
+{
+    if (m)
+        *(COAP_OPT_VALUE(block_opt) + (COAP_OPT_LENGTH(block_opt) - 1)) |= 0x08;
+    else
+        *(COAP_OPT_VALUE(block_opt) + (COAP_OPT_LENGTH(block_opt) - 1)) &= ~0x08;
+}
+
+/**
+ * Initializes @p block from @p pdu. @p type must be either COAP_OPTION_BLOCK1
+ * or COAP_OPTION_BLOCK2. When option @p type was found in @p pdu, @p block
+ * is initialized with values from this option and the function returns the
+ * value @c 1. Otherwise, @c 0 is returned.
+ *
+ * @param pdu   The pdu to search for option @p type.
+ * @param type  The option to search for (must be COAP_OPTION_BLOCK1 or 
+ *              COAP_OPTION_BLOCK2)
+ * @param block The block structure to initilize.
+ * @return @c 1 on success, @c 0 otherwise.
+ */
+int coap_get_block(coap_pdu_t *pdu, unsigned short type, coap_block_t *block);
+
+/**
+ * Writes a block option of type @p type to message @p pdu. If the
+ * requested block size is too large to fit in @p pdu, it is reduced
+ * accordingly. An exception is made for the final block when less
+ * space is required. The actual length of the resource is specified
+ * in @p data_length.
+ *
+ * This function may change *block to reflect the values written to 
+ * @p pdu. As the function takes into consideration the remaining space
+ * @p pdu, no more options should be added after coap_write_block_opt() 
+ * has returned.
+ *
+ * @param block      The block structure to use. On return, this object
+ *                   is updated according to the values that have been
+ *                   written to @p pdu.
+ * @param type       COAP_OPTION_BLOCK1 or COAP_OPTION_BLOCK2
+ * @param pdu        The message where the block option should be
+ *                   written.
+ * @param data_length The length of the actual data that will be added
+ *                   the @p pdu by calling coap_add_block().
+ * @return @c 1 on success, or a negative value on error.
+ */
+int coap_write_block_opt(coap_block_t *block, unsigned short type, coap_pdu_t *pdu,
+        size_t data_length);
+
+/** 
+ * Adds the @p block_num block of size 1 << (@p block_szx + 4) from
+ * source @p data to @p pdu.
+ *
+ * @param pdu    The message to add the block
+ * @param len    The length of @p data.
+ * @param data   The source data to fill the block with
+ * @param block_num The actual block number
+ * @param block_szx Encoded size of block @p block_number
+ * @return @c 1 on success, @c 0 otherwise.
+ */
+int coap_add_block(coap_pdu_t *pdu, unsigned int len, const unsigned char *data,
+        unsigned int block_num, unsigned char block_szx);
+/**@}*/
+
+#endif /* _COAP_BLOCK_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/coap.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/coap.h
new file mode 100644 (file)
index 0000000..d4bf9c5
--- /dev/null
@@ -0,0 +1,36 @@
+/* coap.h -- main header file for CoAP stack
+ *
+ * Copyright (C) 2010--2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _COAP_H_
+#define _COAP_H_
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+#include "config.h"
+#include "debug.h"
+#include "mem.h"
+#include "coap_list.h"
+#include "pdu.h"
+#include "option.h"
+#include "net.h"
+#include "encode.h"
+#include "str.h"
+#include "uri.h"
+#include "async.h"
+#include "resource.h"
+#include "subscribe.h"
+#include "block.h"
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _COAP_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/coap_list.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/coap_list.c
new file mode 100644 (file)
index 0000000..ba31c54
--- /dev/null
@@ -0,0 +1,92 @@
+/* coap_list.c -- CoAP list structures
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+
+#include <stdio.h>
+#include <string.h>
+
+#include "debug.h"
+#include "mem.h"
+#include "coap_list.h"
+
+int coap_insert(coap_list_t **queue, coap_list_t *node, int (*order)(void *, void *node))
+{
+    coap_list_t *p, *q;
+    if (!queue || !node)
+        return 0;
+
+    /* set queue head if empty */
+    if (!*queue)
+    {
+        *queue = node;
+        return 1;
+    }
+
+    /* replace queue head if new node has to be added before the existing queue head */
+    q = *queue;
+    if (order(node->data, q->data) < 0)
+    {
+        node->next = q;
+        *queue = node;
+        return 1;
+    }
+
+    /* search for right place to insert */
+    do
+    {
+        p = q;
+        q = q->next;
+    } while (q && order(node->data, q->data) >= 0);
+
+    /* insert new item */
+    node->next = q;
+    p->next = node;
+    return 1;
+}
+
+int coap_delete(coap_list_t *node)
+{
+    if (!node)
+        return 0;
+
+    if (node->delete_func)
+        node->delete_func(node->data);
+    coap_free( node->data);
+    coap_free( node);
+
+    return 1;
+}
+
+void coap_delete_list(coap_list_t *queue)
+{
+    if (!queue)
+        return;
+
+    coap_delete_list(queue->next);
+    coap_delete(queue);
+}
+
+coap_list_t *
+coap_new_listnode(void *data, void (*delete_func)(void *))
+{
+    coap_list_t *node = coap_malloc( sizeof(coap_list_t) );
+    if (!node)
+    {
+#ifndef NDEBUG
+        coap_log(LOG_CRIT, "coap_new_listnode: malloc\n");
+#endif
+        return NULL;
+    }
+
+    memset(node, 0, sizeof(coap_list_t));
+    node->data = data;
+    node->delete_func = delete_func;
+    return node;
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/coap_list.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/coap_list.h
new file mode 100644 (file)
index 0000000..0c1334b
--- /dev/null
@@ -0,0 +1,45 @@
+/* coap_list.h -- CoAP list structures
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _COAP_LIST_H_
+#define _COAP_LIST_H_
+
+struct coap_linkedlistnode
+{
+    struct coap_linkedlistnode *next;
+    void *data;
+
+    /**
+     * Callback function that is called from coap_delete to release
+     * additional memory allocated by data Set to NULL if you do not
+     * need this. Note that data is free'd automatically. */
+    void (*delete_func)(void *);
+};
+
+typedef struct coap_linkedlistnode coap_list_t;
+
+/**
+ * Adds node to given queue, ordered by specified order function. Returns 1
+ * when insert was successful, 0 otherwise.
+ */
+int coap_insert(coap_list_t **queue, coap_list_t *node, int (*order)(void *, void *));
+
+/* destroys specified node */
+int coap_delete(coap_list_t *node);
+
+/* removes all items from given queue and frees the allocated storage */
+void coap_delete_list(coap_list_t *queue);
+
+/**
+ * Creates a new list node and adds the given data object. The memory allocated
+ * by data will be released by coap_delete() with the new node. Returns the
+ * new list node.
+ */
+coap_list_t *coap_new_listnode(void *data, void (*delete_func)(void *));
+
+#endif /* _COAP_LIST_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/coap_time.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/coap_time.h
new file mode 100644 (file)
index 0000000..041d9a8
--- /dev/null
@@ -0,0 +1,167 @@
+/* coap_time.h -- Clock Handling
+ *
+ * Copyright (C) 2010--2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+/** 
+ * @file coap_time.h
+ * @brief Clock Handling
+ */
+
+#ifndef _COAP_TIME_H_
+#define _COAP_TIME_H_
+
+/*
+ ** Make sure we can call this stuff from C++.
+ */
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+#include "config.h"
+
+    /**
+     * @defgroup clock Clock Handling
+     * Default implementation of internal clock. You should redefine this if
+     * you do not have time() and gettimeofday().
+     * @{
+     */
+
+#ifdef WITH_LWIP
+
+#include <stdint.h>
+#include <lwip/sys.h>
+
+    /* lwIP provides ms in sys_now */
+#define COAP_TICKS_PER_SECOND 1000
+
+    typedef uint32_t coap_tick_t;
+
+    static inline void coap_ticks_impl(coap_tick_t *t)
+    {
+        *t = sys_now();
+    }
+
+    static inline void coap_clock_init_impl(void)
+    {
+    }
+
+#define coap_clock_init coap_clock_init_impl
+
+#define coap_ticks coap_ticks_impl
+
+#endif
+#ifdef WITH_CONTIKI
+#include "clock.h"
+
+    typedef clock_time_t coap_tick_t;
+
+    /**
+     * This data type is used to represent the difference between two
+     * clock_tick_t values. This data type must have the same size in
+     * memory as coap_tick_t to allow wrapping.
+     */
+    typedef int coap_tick_diff_t;
+
+#define COAP_TICKS_PER_SECOND CLOCK_SECOND
+
+    /** Set at startup to initialize the internal clock (time in seconds). */
+    extern clock_time_t clock_offset;
+
+    static inline void
+    contiki_clock_init_impl(void)
+    {
+        clock_init();
+        clock_offset = clock_time();
+    }
+
+#define coap_clock_init contiki_clock_init_impl
+
+    static inline void
+    contiki_ticks_impl(coap_tick_t *t)
+    {
+        *t = clock_time();
+    }
+
+#define coap_ticks contiki_ticks_impl
+
+#endif /* WITH_CONTIKI */
+#ifdef WITH_POSIX
+    typedef unsigned int coap_tick_t;
+
+    /**
+     * This data type is used to represent the difference between two
+     * clock_tick_t values. This data type must have the same size in
+     * memory as coap_tick_t to allow wrapping.
+     */
+    typedef int coap_tick_diff_t;
+
+#define COAP_TICKS_PER_SECOND 1024
+
+    /** Set at startup to initialize the internal clock (time in seconds). */
+    extern time_t clock_offset;
+#endif /* WITH_POSIX */
+
+#ifndef coap_clock_init
+    static inline void coap_clock_init_impl(void)
+    {
+#ifdef HAVE_TIME_H
+        clock_offset = time(NULL);
+#else
+#  ifdef __GNUC__
+        /* Issue a warning when using gcc. Other prepropressors do 
+         *  not seem to have a similar feature. */
+#   warning "cannot initialize clock"
+#  endif
+        clock_offset = 0;
+#endif
+    }
+#define coap_clock_init coap_clock_init_impl
+#endif /* coap_clock_init */
+
+#ifndef coap_ticks
+    static inline void coap_ticks_impl(coap_tick_t *t)
+    {
+#ifdef HAVE_SYS_TIME_H
+        struct timeval tv;
+        gettimeofday(&tv, NULL);
+        *t = (tv.tv_sec - clock_offset) * COAP_TICKS_PER_SECOND
+                + (tv.tv_usec * COAP_TICKS_PER_SECOND / 1000000);
+#else
+#error "clock not implemented"
+#endif
+    }
+#define coap_ticks coap_ticks_impl
+#endif /* coap_ticks */
+
+    /**
+     * Returns @c 1 if and only if @p a is less than @p b where less is
+     * defined on a signed data type.
+     */
+    static inline
+    int coap_time_lt(coap_tick_t a, coap_tick_t b)
+    {
+        return ((coap_tick_diff_t)(a - b)) < 0;
+    }
+
+    /**
+     * Returns @c 1 if and only if @p a is less than or equal @p b where
+     * less is defined on a signed data type.
+     */
+    static inline
+    int coap_time_le(coap_tick_t a, coap_tick_t b)
+    {
+        return a == b || coap_time_lt(a, b);
+    }
+
+/** @} */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _COAP_TIME_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/config.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/config.h
new file mode 100644 (file)
index 0000000..654c4ea
--- /dev/null
@@ -0,0 +1,132 @@
+/* config.h.  Generated from config.h.in by configure.  */
+/* config.h.in.  Generated from configure.in by autoheader.  */
+
+/* Define if building universal (internal helper macro) */
+/* #undef AC_APPLE_UNIVERSAL_BUILD */
+
+/* Define to 1 if you have the <arpa/inet.h> header file. */
+#define HAVE_ARPA_INET_H 1
+
+/* Define to 1 if you have the <assert.h> header file. */
+#define HAVE_ASSERT_H 1
+
+/* Define to 1 if you have the `getaddrinfo' function. */
+#define HAVE_GETADDRINFO 1
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+#define HAVE_INTTYPES_H 1
+
+/* Define to 1 if you have the `coap' library (-lcoap). */
+/* #undef HAVE_LIBCOAP */
+
+/* Define to 1 if you have the <limits.h> header file. */
+#define HAVE_LIMITS_H 1
+
+/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
+ to 0 otherwise. */
+#define HAVE_MALLOC 1
+
+/* Define to 1 if you have the <memory.h> header file. */
+#define HAVE_MEMORY_H 1
+
+/* Define to 1 if you have the `memset' function. */
+#define HAVE_MEMSET 1
+
+/* Define to 1 if you have the <netdb.h> header file. */
+#define HAVE_NETDB_H 1
+
+/* Define to 1 if you have the <netinet/in.h> header file. */
+#define HAVE_NETINET_IN_H 1
+
+/* Define to 1 if you have the `select' function. */
+#define HAVE_SELECT 1
+
+/* Define to 1 if you have the `socket' function. */
+#define HAVE_SOCKET 1
+
+/* Define to 1 if you have the <stdint.h> header file. */
+#define HAVE_STDINT_H 1
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if you have the `strcasecmp' function. */
+#define HAVE_STRCASECMP 1
+
+/* Define to 1 if you have the <strings.h> header file. */
+#define HAVE_STRINGS_H 1
+
+/* Define to 1 if you have the <string.h> header file. */
+#define HAVE_STRING_H 1
+
+/* Define to 1 if you have the `strnlen' function. */
+#define HAVE_STRNLEN 1
+
+/* Define to 1 if you have the `strrchr' function. */
+#define HAVE_STRRCHR 1
+
+/* Define to 1 if you have the <syslog.h> header file. */
+#define HAVE_SYSLOG_H 1
+
+/* Define to 1 if you have the <sys/socket.h> header file. */
+#define HAVE_SYS_SOCKET_H 1
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the <sys/time.h> header file. */
+#define HAVE_SYS_TIME_H 1
+
+/* Define to 1 if you have the <sys/types.h> header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Define to 1 if you have the <sys/unistd.h> header file. */
+#define HAVE_SYS_UNISTD_H 1
+
+/* Define to 1 if you have the <time.h> header file. */
+#define HAVE_TIME_H 1
+
+/* Define to 1 if you have the <unistd.h> header file. */
+#define HAVE_UNISTD_H 1
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT ""
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME "libcoap"
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING "libcoap 4.1.1"
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME "libcoap"
+
+/* Define to the home page for this package. */
+#define PACKAGE_URL ""
+
+/* Define to the version of this package. */
+#define PACKAGE_VERSION "4.1.1"
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
+ significant byte first (like Motorola and SPARC, unlike Intel). */
+#if defined AC_APPLE_UNIVERSAL_BUILD
+# if defined __BIG_ENDIAN__
+#  define WORDS_BIGENDIAN 1
+# endif
+#else
+# ifndef WORDS_BIGENDIAN
+/* #  undef WORDS_BIGENDIAN */
+# endif
+#endif
+
+/* Define to rpl_malloc if the replacement function should be used. */
+/* #undef malloc */
+
+/* Define to `unsigned int' if <sys/types.h> does not define. */
+/* #undef size_t */
+
+/* Define to `int' if <sys/types.h> does not define. */
+/* #undef ssize_t */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/config.h.in b/resource/csdk/connectivity/lib/libcoap-4.1.1/config.h.in
new file mode 100644 (file)
index 0000000..4a0f3c6
--- /dev/null
@@ -0,0 +1,131 @@
+/* config.h.in.  Generated from configure.in by autoheader.  */
+
+/* Define if building universal (internal helper macro) */
+#undef AC_APPLE_UNIVERSAL_BUILD
+
+/* Define to 1 if you have the <arpa/inet.h> header file. */
+#undef HAVE_ARPA_INET_H
+
+/* Define to 1 if you have the <assert.h> header file. */
+#undef HAVE_ASSERT_H
+
+/* Define to 1 if you have the `getaddrinfo' function. */
+#undef HAVE_GETADDRINFO
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+#undef HAVE_INTTYPES_H
+
+/* Define to 1 if you have the `coap' library (-lcoap). */
+#undef HAVE_LIBCOAP
+
+/* Define to 1 if you have the <limits.h> header file. */
+#undef HAVE_LIMITS_H
+
+/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
+   to 0 otherwise. */
+#undef HAVE_MALLOC
+
+/* Define to 1 if you have the <memory.h> header file. */
+#undef HAVE_MEMORY_H
+
+/* Define to 1 if you have the `memset' function. */
+#undef HAVE_MEMSET
+
+/* Define to 1 if you have the <netdb.h> header file. */
+#undef HAVE_NETDB_H
+
+/* Define to 1 if you have the <netinet/in.h> header file. */
+#undef HAVE_NETINET_IN_H
+
+/* Define to 1 if you have the `select' function. */
+#undef HAVE_SELECT
+
+/* Define to 1 if you have the `socket' function. */
+#undef HAVE_SOCKET
+
+/* Define to 1 if you have the <stdint.h> header file. */
+#undef HAVE_STDINT_H
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#undef HAVE_STDLIB_H
+
+/* Define to 1 if you have the `strcasecmp' function. */
+#undef HAVE_STRCASECMP
+
+/* Define to 1 if you have the <strings.h> header file. */
+#undef HAVE_STRINGS_H
+
+/* Define to 1 if you have the <string.h> header file. */
+#undef HAVE_STRING_H
+
+/* Define to 1 if you have the `strnlen' function. */
+#undef HAVE_STRNLEN
+
+/* Define to 1 if you have the `strrchr' function. */
+#undef HAVE_STRRCHR
+
+/* Define to 1 if you have the <syslog.h> header file. */
+#undef HAVE_SYSLOG_H
+
+/* Define to 1 if you have the <sys/socket.h> header file. */
+#undef HAVE_SYS_SOCKET_H
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#undef HAVE_SYS_STAT_H
+
+/* Define to 1 if you have the <sys/time.h> header file. */
+#undef HAVE_SYS_TIME_H
+
+/* Define to 1 if you have the <sys/types.h> header file. */
+#undef HAVE_SYS_TYPES_H
+
+/* Define to 1 if you have the <sys/unistd.h> header file. */
+#undef HAVE_SYS_UNISTD_H
+
+/* Define to 1 if you have the <time.h> header file. */
+#undef HAVE_TIME_H
+
+/* Define to 1 if you have the <unistd.h> header file. */
+#undef HAVE_UNISTD_H
+
+/* Define to the address where bug reports for this package should be sent. */
+#undef PACKAGE_BUGREPORT
+
+/* Define to the full name of this package. */
+#undef PACKAGE_NAME
+
+/* Define to the full name and version of this package. */
+#undef PACKAGE_STRING
+
+/* Define to the one symbol short name of this package. */
+#undef PACKAGE_TARNAME
+
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
+
+/* Define to the version of this package. */
+#undef PACKAGE_VERSION
+
+/* Define to 1 if you have the ANSI C header files. */
+#undef STDC_HEADERS
+
+/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
+   significant byte first (like Motorola and SPARC, unlike Intel). */
+#if defined AC_APPLE_UNIVERSAL_BUILD
+# if defined __BIG_ENDIAN__
+#  define WORDS_BIGENDIAN 1
+# endif
+#else
+# ifndef WORDS_BIGENDIAN
+#  undef WORDS_BIGENDIAN
+# endif
+#endif
+
+/* Define to rpl_malloc if the replacement function should be used. */
+#undef malloc
+
+/* Define to `unsigned int' if <sys/types.h> does not define. */
+#undef size_t
+
+/* Define to `int' if <sys/types.h> does not define. */
+#undef ssize_t
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/config.log b/resource/csdk/connectivity/lib/libcoap-4.1.1/config.log
new file mode 100644 (file)
index 0000000..c2b19ac
--- /dev/null
@@ -0,0 +1,824 @@
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+
+It was created by libcoap configure 4.1.1, which was
+generated by GNU Autoconf 2.69.  Invocation command line was
+
+  $ ./configure 
+
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = jihwan-Q35-Q36
+uname -m = i686
+uname -r = 3.5.0-54-generic
+uname -s = Linux
+uname -v = #81~precise1-Ubuntu SMP Tue Jul 15 04:05:58 UTC 2014
+
+/usr/bin/uname -p = unknown
+/bin/uname -X     = unknown
+
+/bin/arch              = unknown
+/usr/bin/arch -k       = unknown
+/usr/convex/getsysinfo = unknown
+/usr/bin/hostinfo      = unknown
+/bin/machine           = unknown
+/usr/bin/oslevel       = unknown
+/bin/universe          = unknown
+
+PATH: /usr/local/sbin
+PATH: /usr/local/bin
+PATH: /usr/sbin
+PATH: /usr/bin
+PATH: /sbin
+PATH: /bin
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+configure:2175: checking whether make sets $(MAKE)
+configure:2197: result: yes
+configure:2254: checking for gcc
+configure:2270: found /usr/bin/gcc
+configure:2281: result: gcc
+configure:2510: checking for C compiler version
+configure:2519: gcc --version >&5
+gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
+Copyright (C) 2011 Free Software Foundation, Inc.
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+configure:2530: $? = 0
+configure:2519: gcc -v >&5
+Using built-in specs.
+COLLECT_GCC=gcc
+COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6/lto-wrapper
+Target: i686-linux-gnu
+Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
+Thread model: posix
+gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) 
+configure:2530: $? = 0
+configure:2519: gcc -V >&5
+gcc: error: unrecognized option '-V'
+gcc: fatal error: no input files
+compilation terminated.
+configure:2530: $? = 4
+configure:2519: gcc -qversion >&5
+gcc: error: unrecognized option '-qversion'
+gcc: fatal error: no input files
+compilation terminated.
+configure:2530: $? = 4
+configure:2550: checking whether the C compiler works
+configure:2572: gcc    conftest.c  >&5
+configure:2576: $? = 0
+configure:2624: result: yes
+configure:2627: checking for C compiler default output file name
+configure:2629: result: a.out
+configure:2635: checking for suffix of executables
+configure:2642: gcc -o conftest    conftest.c  >&5
+configure:2646: $? = 0
+configure:2668: result: 
+configure:2690: checking whether we are cross compiling
+configure:2698: gcc -o conftest    conftest.c  >&5
+configure:2702: $? = 0
+configure:2709: ./conftest
+configure:2713: $? = 0
+configure:2728: result: no
+configure:2733: checking for suffix of object files
+configure:2755: gcc -c   conftest.c >&5
+configure:2759: $? = 0
+configure:2780: result: o
+configure:2784: checking whether we are using the GNU C compiler
+configure:2803: gcc -c   conftest.c >&5
+configure:2803: $? = 0
+configure:2812: result: yes
+configure:2821: checking whether gcc accepts -g
+configure:2841: gcc -c -g  conftest.c >&5
+configure:2841: $? = 0
+configure:2882: result: yes
+configure:2899: checking for gcc option to accept ISO C89
+configure:2962: gcc  -c -g -O2  conftest.c >&5
+configure:2962: $? = 0
+configure:2975: result: none needed
+configure:3038: checking for ranlib
+configure:3054: found /usr/bin/ranlib
+configure:3065: result: ranlib
+configure:3089: checking for doxygen
+configure:3120: result: :
+configure:3130: checking for etags
+configure:3161: result: /bin/false
+configure:3176: checking how to run the C preprocessor
+configure:3207: gcc -E  conftest.c
+configure:3207: $? = 0
+configure:3221: gcc -E  conftest.c
+conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
+compilation terminated.
+configure:3221: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME "libcoap"
+| #define PACKAGE_TARNAME "libcoap"
+| #define PACKAGE_VERSION "4.1.1"
+| #define PACKAGE_STRING "libcoap 4.1.1"
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:3246: result: gcc -E
+configure:3266: gcc -E  conftest.c
+configure:3266: $? = 0
+configure:3280: gcc -E  conftest.c
+conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
+compilation terminated.
+configure:3280: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME "libcoap"
+| #define PACKAGE_TARNAME "libcoap"
+| #define PACKAGE_VERSION "4.1.1"
+| #define PACKAGE_STRING "libcoap 4.1.1"
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:3309: checking for grep that handles long lines and -e
+configure:3367: result: /bin/grep
+configure:3372: checking for egrep
+configure:3434: result: /bin/grep -E
+configure:3439: checking for ANSI C header files
+configure:3459: gcc -c -g -O2  conftest.c >&5
+configure:3459: $? = 0
+configure:3532: gcc -o conftest -g -O2   conftest.c  >&5
+configure:3532: $? = 0
+configure:3532: ./conftest
+configure:3532: $? = 0
+configure:3543: result: yes
+configure:3556: checking for sys/types.h
+configure:3556: gcc -c -g -O2  conftest.c >&5
+configure:3556: $? = 0
+configure:3556: result: yes
+configure:3556: checking for sys/stat.h
+configure:3556: gcc -c -g -O2  conftest.c >&5
+configure:3556: $? = 0
+configure:3556: result: yes
+configure:3556: checking for stdlib.h
+configure:3556: gcc -c -g -O2  conftest.c >&5
+configure:3556: $? = 0
+configure:3556: result: yes
+configure:3556: checking for string.h
+configure:3556: gcc -c -g -O2  conftest.c >&5
+configure:3556: $? = 0
+configure:3556: result: yes
+configure:3556: checking for memory.h
+configure:3556: gcc -c -g -O2  conftest.c >&5
+configure:3556: $? = 0
+configure:3556: result: yes
+configure:3556: checking for strings.h
+configure:3556: gcc -c -g -O2  conftest.c >&5
+configure:3556: $? = 0
+configure:3556: result: yes
+configure:3556: checking for inttypes.h
+configure:3556: gcc -c -g -O2  conftest.c >&5
+configure:3556: $? = 0
+configure:3556: result: yes
+configure:3556: checking for stdint.h
+configure:3556: gcc -c -g -O2  conftest.c >&5
+configure:3556: $? = 0
+configure:3556: result: yes
+configure:3556: checking for unistd.h
+configure:3556: gcc -c -g -O2  conftest.c >&5
+configure:3556: $? = 0
+configure:3556: result: yes
+configure:3568: checking whether byte ordering is bigendian
+configure:3583: gcc -c -g -O2  conftest.c >&5
+conftest.c:20:9: error: unknown type name 'not'
+conftest.c:20:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
+conftest.c:20:15: error: unknown type name 'universal'
+configure:3583: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME "libcoap"
+| #define PACKAGE_TARNAME "libcoap"
+| #define PACKAGE_VERSION "4.1.1"
+| #define PACKAGE_STRING "libcoap 4.1.1"
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| #define STDC_HEADERS 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_MEMORY_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_INTTYPES_H 1
+| #define HAVE_STDINT_H 1
+| #define HAVE_UNISTD_H 1
+| /* end confdefs.h.  */
+| #ifndef __APPLE_CC__
+|             not a universal capable compiler
+|           #endif
+|           typedef int dummy;
+| 
+configure:3628: gcc -c -g -O2  conftest.c >&5
+configure:3628: $? = 0
+configure:3646: gcc -c -g -O2  conftest.c >&5
+conftest.c: In function 'main':
+conftest.c:26:4: error: unknown type name 'not'
+conftest.c:26:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
+configure:3646: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME "libcoap"
+| #define PACKAGE_TARNAME "libcoap"
+| #define PACKAGE_VERSION "4.1.1"
+| #define PACKAGE_STRING "libcoap 4.1.1"
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| #define STDC_HEADERS 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_MEMORY_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_INTTYPES_H 1
+| #define HAVE_STDINT_H 1
+| #define HAVE_UNISTD_H 1
+| /* end confdefs.h.  */
+| #include <sys/types.h>
+|              #include <sys/param.h>
+| 
+| int
+| main ()
+| {
+| #if BYTE_ORDER != BIG_ENDIAN
+|               not big endian
+|              #endif
+| 
+|   ;
+|   return 0;
+| }
+configure:3774: result: no
+configure:3794: checking for coap_new_pdu in -lcoap
+configure:3819: gcc -o conftest -g -O2   conftest.c -lcoap   >&5
+/usr/bin/ld: cannot find -lcoap
+collect2: ld returned 1 exit status
+configure:3819: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME "libcoap"
+| #define PACKAGE_TARNAME "libcoap"
+| #define PACKAGE_VERSION "4.1.1"
+| #define PACKAGE_STRING "libcoap 4.1.1"
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| #define STDC_HEADERS 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_MEMORY_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_INTTYPES_H 1
+| #define HAVE_STDINT_H 1
+| #define HAVE_UNISTD_H 1
+| /* end confdefs.h.  */
+| 
+| /* Override any GCC internal prototype to avoid an error.
+|    Use char because int might match the return type of a GCC
+|    builtin and then its argument prototype would still apply.  */
+| #ifdef __cplusplus
+| extern "C"
+| #endif
+| char coap_new_pdu ();
+| int
+| main ()
+| {
+| return coap_new_pdu ();
+|   ;
+|   return 0;
+| }
+configure:3828: result: no
+configure:3840: checking for library containing gethostbyname
+configure:3871: gcc -o conftest -g -O2   conftest.c  >&5
+configure:3871: $? = 0
+configure:3888: result: none required
+configure:3896: checking for library containing socket
+configure:3927: gcc -o conftest -g -O2   conftest.c  >&5
+configure:3927: $? = 0
+configure:3944: result: none required
+configure:4011: checking assert.h usability
+configure:4011: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking assert.h presence
+configure:4011: gcc -E  -DWITH_POSIX conftest.c
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking for assert.h
+configure:4011: result: yes
+configure:4011: checking arpa/inet.h usability
+configure:4011: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking arpa/inet.h presence
+configure:4011: gcc -E  -DWITH_POSIX conftest.c
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking for arpa/inet.h
+configure:4011: result: yes
+configure:4011: checking limits.h usability
+configure:4011: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking limits.h presence
+configure:4011: gcc -E  -DWITH_POSIX conftest.c
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking for limits.h
+configure:4011: result: yes
+configure:4011: checking netdb.h usability
+configure:4011: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking netdb.h presence
+configure:4011: gcc -E  -DWITH_POSIX conftest.c
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking for netdb.h
+configure:4011: result: yes
+configure:4011: checking netinet/in.h usability
+configure:4011: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking netinet/in.h presence
+configure:4011: gcc -E  -DWITH_POSIX conftest.c
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking for netinet/in.h
+configure:4011: result: yes
+configure:4011: checking for stdlib.h
+configure:4011: result: yes
+configure:4011: checking for string.h
+configure:4011: result: yes
+configure:4011: checking for strings.h
+configure:4011: result: yes
+configure:4011: checking sys/socket.h usability
+configure:4011: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking sys/socket.h presence
+configure:4011: gcc -E  -DWITH_POSIX conftest.c
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking for sys/socket.h
+configure:4011: result: yes
+configure:4011: checking sys/time.h usability
+configure:4011: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking sys/time.h presence
+configure:4011: gcc -E  -DWITH_POSIX conftest.c
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking for sys/time.h
+configure:4011: result: yes
+configure:4011: checking time.h usability
+configure:4011: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking time.h presence
+configure:4011: gcc -E  -DWITH_POSIX conftest.c
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking for time.h
+configure:4011: result: yes
+configure:4011: checking for unistd.h
+configure:4011: result: yes
+configure:4011: checking sys/unistd.h usability
+configure:4011: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking sys/unistd.h presence
+configure:4011: gcc -E  -DWITH_POSIX conftest.c
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking for sys/unistd.h
+configure:4011: result: yes
+configure:4011: checking syslog.h usability
+configure:4011: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking syslog.h presence
+configure:4011: gcc -E  -DWITH_POSIX conftest.c
+configure:4011: $? = 0
+configure:4011: result: yes
+configure:4011: checking for syslog.h
+configure:4011: result: yes
+configure:4023: checking for size_t
+configure:4023: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4023: $? = 0
+configure:4023: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+conftest.c: In function 'main':
+conftest.c:69:21: error: expected expression before ')' token
+configure:4023: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME "libcoap"
+| #define PACKAGE_TARNAME "libcoap"
+| #define PACKAGE_VERSION "4.1.1"
+| #define PACKAGE_STRING "libcoap 4.1.1"
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| #define STDC_HEADERS 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_MEMORY_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_INTTYPES_H 1
+| #define HAVE_STDINT_H 1
+| #define HAVE_UNISTD_H 1
+| #define HAVE_ASSERT_H 1
+| #define HAVE_ARPA_INET_H 1
+| #define HAVE_LIMITS_H 1
+| #define HAVE_NETDB_H 1
+| #define HAVE_NETINET_IN_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_SYS_SOCKET_H 1
+| #define HAVE_SYS_TIME_H 1
+| #define HAVE_TIME_H 1
+| #define HAVE_UNISTD_H 1
+| #define HAVE_SYS_UNISTD_H 1
+| #define HAVE_SYSLOG_H 1
+| /* end confdefs.h.  */
+| #include <stdio.h>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| int
+| main ()
+| {
+| if (sizeof ((size_t)))
+|          return 0;
+|   ;
+|   return 0;
+| }
+configure:4023: result: yes
+configure:4034: checking for ssize_t
+configure:4034: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+configure:4034: $? = 0
+configure:4034: gcc -c -g -O2  -DWITH_POSIX conftest.c >&5
+conftest.c: In function 'main':
+conftest.c:69:22: error: expected expression before ')' token
+configure:4034: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME "libcoap"
+| #define PACKAGE_TARNAME "libcoap"
+| #define PACKAGE_VERSION "4.1.1"
+| #define PACKAGE_STRING "libcoap 4.1.1"
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| #define STDC_HEADERS 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_MEMORY_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_INTTYPES_H 1
+| #define HAVE_STDINT_H 1
+| #define HAVE_UNISTD_H 1
+| #define HAVE_ASSERT_H 1
+| #define HAVE_ARPA_INET_H 1
+| #define HAVE_LIMITS_H 1
+| #define HAVE_NETDB_H 1
+| #define HAVE_NETINET_IN_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_SYS_SOCKET_H 1
+| #define HAVE_SYS_TIME_H 1
+| #define HAVE_TIME_H 1
+| #define HAVE_UNISTD_H 1
+| #define HAVE_SYS_UNISTD_H 1
+| #define HAVE_SYSLOG_H 1
+| /* end confdefs.h.  */
+| #include <stdio.h>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| int
+| main ()
+| {
+| if (sizeof ((ssize_t)))
+|          return 0;
+|   ;
+|   return 0;
+| }
+configure:4034: result: yes
+configure:4049: checking for stdlib.h
+configure:4049: result: yes
+configure:4059: checking for GNU libc compatible malloc
+configure:4083: gcc -o conftest -g -O2  -DWITH_POSIX  conftest.c  >&5
+configure:4083: $? = 0
+configure:4083: ./conftest
+configure:4083: $? = 0
+configure:4093: result: yes
+configure:4117: checking for memset
+configure:4117: gcc -o conftest -g -O2  -DWITH_POSIX  conftest.c  >&5
+conftest.c:58:6: warning: conflicting types for built-in function 'memset' [enabled by default]
+configure:4117: $? = 0
+configure:4117: result: yes
+configure:4117: checking for select
+configure:4117: gcc -o conftest -g -O2  -DWITH_POSIX  conftest.c  >&5
+configure:4117: $? = 0
+configure:4117: result: yes
+configure:4117: checking for socket
+configure:4117: gcc -o conftest -g -O2  -DWITH_POSIX  conftest.c  >&5
+configure:4117: $? = 0
+configure:4117: result: yes
+configure:4117: checking for strcasecmp
+configure:4117: gcc -o conftest -g -O2  -DWITH_POSIX  conftest.c  >&5
+conftest.c:61:6: warning: conflicting types for built-in function 'strcasecmp' [enabled by default]
+configure:4117: $? = 0
+configure:4117: result: yes
+configure:4117: checking for strrchr
+configure:4117: gcc -o conftest -g -O2  -DWITH_POSIX  conftest.c  >&5
+conftest.c:62:6: warning: conflicting types for built-in function 'strrchr' [enabled by default]
+configure:4117: $? = 0
+configure:4117: result: yes
+configure:4117: checking for getaddrinfo
+configure:4117: gcc -o conftest -g -O2  -DWITH_POSIX  conftest.c  >&5
+configure:4117: $? = 0
+configure:4117: result: yes
+configure:4117: checking for strnlen
+configure:4117: gcc -o conftest -g -O2  -DWITH_POSIX  conftest.c  >&5
+configure:4117: $? = 0
+configure:4117: result: yes
+configure:4250: creating ./config.status
+
+## ---------------------- ##
+## Running config.status. ##
+## ---------------------- ##
+
+This file was extended by libcoap config.status 4.1.1, which was
+generated by GNU Autoconf 2.69.  Invocation command line was
+
+  CONFIG_FILES    = 
+  CONFIG_HEADERS  = 
+  CONFIG_LINKS    = 
+  CONFIG_COMMANDS = 
+  $ ./config.status 
+
+on jihwan-Q35-Q36
+
+config.status:830: creating Makefile
+config.status:830: creating doc/Makefile
+config.status:830: creating doc/Doxyfile
+config.status:830: creating examples/Makefile
+config.status:830: creating tests/Makefile
+config.status:830: creating config.h
+config.status:1000: config.h is unchanged
+
+## ---------------- ##
+## Cache variables. ##
+## ---------------- ##
+
+ac_cv_c_bigendian=no
+ac_cv_c_compiler_gnu=yes
+ac_cv_env_CC_set=
+ac_cv_env_CC_value=
+ac_cv_env_CFLAGS_set=
+ac_cv_env_CFLAGS_value=
+ac_cv_env_CPPFLAGS_set=
+ac_cv_env_CPPFLAGS_value=
+ac_cv_env_CPP_set=
+ac_cv_env_CPP_value=
+ac_cv_env_LDFLAGS_set=
+ac_cv_env_LDFLAGS_value=
+ac_cv_env_LIBS_set=
+ac_cv_env_LIBS_value=
+ac_cv_env_build_alias_set=
+ac_cv_env_build_alias_value=
+ac_cv_env_host_alias_set=
+ac_cv_env_host_alias_value=
+ac_cv_env_target_alias_set=
+ac_cv_env_target_alias_value=
+ac_cv_func_getaddrinfo=yes
+ac_cv_func_malloc_0_nonnull=yes
+ac_cv_func_memset=yes
+ac_cv_func_select=yes
+ac_cv_func_socket=yes
+ac_cv_func_strcasecmp=yes
+ac_cv_func_strnlen=yes
+ac_cv_func_strrchr=yes
+ac_cv_header_arpa_inet_h=yes
+ac_cv_header_assert_h=yes
+ac_cv_header_inttypes_h=yes
+ac_cv_header_limits_h=yes
+ac_cv_header_memory_h=yes
+ac_cv_header_netdb_h=yes
+ac_cv_header_netinet_in_h=yes
+ac_cv_header_stdc=yes
+ac_cv_header_stdint_h=yes
+ac_cv_header_stdlib_h=yes
+ac_cv_header_string_h=yes
+ac_cv_header_strings_h=yes
+ac_cv_header_sys_socket_h=yes
+ac_cv_header_sys_stat_h=yes
+ac_cv_header_sys_time_h=yes
+ac_cv_header_sys_types_h=yes
+ac_cv_header_sys_unistd_h=yes
+ac_cv_header_syslog_h=yes
+ac_cv_header_time_h=yes
+ac_cv_header_unistd_h=yes
+ac_cv_lib_coap_coap_new_pdu=no
+ac_cv_objext=o
+ac_cv_path_DOXYGEN=:
+ac_cv_path_EGREP='/bin/grep -E'
+ac_cv_path_ETAGS=/bin/false
+ac_cv_path_GREP=/bin/grep
+ac_cv_prog_CPP='gcc -E'
+ac_cv_prog_ac_ct_CC=gcc
+ac_cv_prog_ac_ct_RANLIB=ranlib
+ac_cv_prog_cc_c89=
+ac_cv_prog_cc_g=yes
+ac_cv_prog_make_make_set=yes
+ac_cv_search_gethostbyname='none required'
+ac_cv_search_socket='none required'
+ac_cv_type_size_t=yes
+ac_cv_type_ssize_t=yes
+
+## ----------------- ##
+## Output variables. ##
+## ----------------- ##
+
+BUILD_SO=''
+CC='gcc'
+CFLAGS='-g -O2'
+CPP='gcc -E'
+CPPFLAGS=' -DWITH_POSIX'
+DEFS='-DHAVE_CONFIG_H'
+DOXYGEN=':'
+ECHO_C=''
+ECHO_N='-n'
+ECHO_T=''
+EGREP='/bin/grep -E'
+ETAGS='/bin/false'
+EXEEXT=''
+GREP='/bin/grep'
+LDFLAGS=''
+LIBOBJS=''
+LIBS=''
+LTLIBOBJS=''
+OBJEXT='o'
+PACKAGE_BUGREPORT=''
+PACKAGE_NAME='libcoap'
+PACKAGE_STRING='libcoap 4.1.1'
+PACKAGE_TARNAME='libcoap'
+PACKAGE_URL=''
+PACKAGE_VERSION='4.1.1'
+PATH_SEPARATOR=':'
+RANLIB='ranlib'
+SET_MAKE=''
+SHELL='/bin/bash'
+TESTS=''
+ac_ct_CC='gcc'
+bindir='${exec_prefix}/bin'
+build_alias=''
+datadir='${datarootdir}'
+datarootdir='${prefix}/share'
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
+dvidir='${docdir}'
+exec_prefix='${prefix}'
+host_alias=''
+htmldir='${docdir}'
+includedir='${prefix}/include'
+infodir='${datarootdir}/info'
+libdir='${exec_prefix}/lib'
+libexecdir='${exec_prefix}/libexec'
+localedir='${datarootdir}/locale'
+localstatedir='${prefix}/var'
+mandir='${datarootdir}/man'
+oldincludedir='/usr/include'
+pdfdir='${docdir}'
+prefix='/usr/local'
+program_transform_name='s,x,x,'
+psdir='${docdir}'
+sbindir='${exec_prefix}/sbin'
+sharedstatedir='${prefix}/com'
+sysconfdir='${prefix}/etc'
+target_alias=''
+
+## ----------- ##
+## confdefs.h. ##
+## ----------- ##
+
+/* confdefs.h */
+#define PACKAGE_NAME "libcoap"
+#define PACKAGE_TARNAME "libcoap"
+#define PACKAGE_VERSION "4.1.1"
+#define PACKAGE_STRING "libcoap 4.1.1"
+#define PACKAGE_BUGREPORT ""
+#define PACKAGE_URL ""
+#define STDC_HEADERS 1
+#define HAVE_SYS_TYPES_H 1
+#define HAVE_SYS_STAT_H 1
+#define HAVE_STDLIB_H 1
+#define HAVE_STRING_H 1
+#define HAVE_MEMORY_H 1
+#define HAVE_STRINGS_H 1
+#define HAVE_INTTYPES_H 1
+#define HAVE_STDINT_H 1
+#define HAVE_UNISTD_H 1
+#define HAVE_ASSERT_H 1
+#define HAVE_ARPA_INET_H 1
+#define HAVE_LIMITS_H 1
+#define HAVE_NETDB_H 1
+#define HAVE_NETINET_IN_H 1
+#define HAVE_STDLIB_H 1
+#define HAVE_STRING_H 1
+#define HAVE_STRINGS_H 1
+#define HAVE_SYS_SOCKET_H 1
+#define HAVE_SYS_TIME_H 1
+#define HAVE_TIME_H 1
+#define HAVE_UNISTD_H 1
+#define HAVE_SYS_UNISTD_H 1
+#define HAVE_SYSLOG_H 1
+#define HAVE_STDLIB_H 1
+#define HAVE_MALLOC 1
+#define HAVE_MEMSET 1
+#define HAVE_SELECT 1
+#define HAVE_SOCKET 1
+#define HAVE_STRCASECMP 1
+#define HAVE_STRRCHR 1
+#define HAVE_GETADDRINFO 1
+#define HAVE_STRNLEN 1
+
+configure: exit 0
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/config.status b/resource/csdk/connectivity/lib/libcoap-4.1.1/config.status
new file mode 100644 (file)
index 0000000..4984732
--- /dev/null
@@ -0,0 +1,1020 @@
+#! /bin/bash
+# Generated by configure.
+# Run this file to recreate the current configuration.
+# Compiler output produced by configure, useful for debugging
+# configure, is in config.log if it exists.
+
+debug=false
+ac_cs_recheck=false
+ac_cs_silent=false
+
+SHELL=${CONFIG_SHELL-/bin/bash}
+export SHELL
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
+  emulate sh
+  NULLCMD=:
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+  # is contrary to our usage.  Disable this feature.
+  alias -g '${1+"$@"}'='"$@"'
+  setopt NO_GLOB_SUBST
+else
+  case `(set -o) 2>/dev/null` in #(
+  *posix*) :
+    set -o posix ;; #(
+  *) :
+     ;;
+esac
+fi
+
+
+as_nl='
+'
+export as_nl
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
+# Prefer a ksh shell builtin over an external printf program on Solaris,
+# but without wasting forks for bash or zsh.
+if test -z "$BASH_VERSION$ZSH_VERSION" \
+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
+  as_echo='print -r --'
+  as_echo_n='print -rn --'
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
+  as_echo='printf %s\n'
+  as_echo_n='printf %s'
+else
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
+    as_echo_n='/usr/ucb/echo -n'
+  else
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
+    as_echo_n_body='eval
+      arg=$1;
+      case $arg in #(
+      *"$as_nl"*)
+       expr "X$arg" : "X\\(.*\\)$as_nl";
+       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
+      esac;
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
+    '
+    export as_echo_n_body
+    as_echo_n='sh -c $as_echo_n_body as_echo'
+  fi
+  export as_echo_body
+  as_echo='sh -c $as_echo_body as_echo'
+fi
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+  PATH_SEPARATOR=:
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+      PATH_SEPARATOR=';'
+  }
+fi
+
+
+# IFS
+# We need space, tab and new line, in precisely that order.  Quoting is
+# there to prevent editors from complaining about space-tab.
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
+# splitting by setting IFS to empty value.)
+IFS=" ""       $as_nl"
+
+# Find who we are.  Look in the path if we contain no directory separator.
+as_myself=
+case $0 in #((
+  *[\\/]* ) as_myself=$0 ;;
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+  done
+IFS=$as_save_IFS
+
+     ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+  as_myself=$0
+fi
+if test ! -f "$as_myself"; then
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+  exit 1
+fi
+
+# Unset variables that we do not need and which cause bugs (e.g. in
+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
+# suppresses any "Segmentation fault" message there.  '((' could
+# trigger a bug in pdksh 5.2.14.
+for as_var in BASH_ENV ENV MAIL MAILPATH
+do eval test x\${$as_var+set} = xset \
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+# script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+  as_status=$1; test $as_status -eq 0 && as_status=1
+  if test "$4"; then
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
+  fi
+  $as_echo "$as_me: error: $2" >&2
+  as_fn_exit $as_status
+} # as_fn_error
+
+
+# as_fn_set_status STATUS
+# -----------------------
+# Set $? to STATUS, without forking.
+as_fn_set_status ()
+{
+  return $1
+} # as_fn_set_status
+
+# as_fn_exit STATUS
+# -----------------
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+  set +e
+  as_fn_set_status $1
+  exit $1
+} # as_fn_exit
+
+# as_fn_unset VAR
+# ---------------
+# Portably unset VAR.
+as_fn_unset ()
+{
+  { eval $1=; unset $1;}
+}
+as_unset=as_fn_unset
+# as_fn_append VAR VALUE
+# ----------------------
+# Append the text in VALUE to the end of the definition contained in VAR. Take
+# advantage of any shell optimizations that allow amortized linear growth over
+# repeated appends, instead of the typical quadratic growth present in naive
+# implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
+  eval 'as_fn_append ()
+  {
+    eval $1+=\$2
+  }'
+else
+  as_fn_append ()
+  {
+    eval $1=\$$1\$2
+  }
+fi # as_fn_append
+
+# as_fn_arith ARG...
+# ------------------
+# Perform arithmetic evaluation on the ARGs, and store the result in the
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
+# must be portable across $(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
+  eval 'as_fn_arith ()
+  {
+    as_val=$(( $* ))
+  }'
+else
+  as_fn_arith ()
+  {
+    as_val=`expr "$@" || test $? -eq 1`
+  }
+fi # as_fn_arith
+
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
+  as_expr=expr
+else
+  as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+  as_basename=basename
+else
+  as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+  as_dirname=dirname
+else
+  as_dirname=false
+fi
+
+as_me=`$as_basename -- "$0" ||
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+        X"$0" : 'X\(//\)$' \| \
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$0" |
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
+           s//\1/
+           q
+         }
+         /^X\/\(\/\/\)$/{
+           s//\1/
+           q
+         }
+         /^X\/\(\/\).*/{
+           s//\1/
+           q
+         }
+         s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+  case `echo 'xy\c'` in
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
+  xy)  ECHO_C='\c';;
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
+       ECHO_T='        ';;
+  esac;;
+*)
+  ECHO_N='-n';;
+esac
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+  rm -f conf$$.dir/conf$$.file
+else
+  rm -f conf$$.dir
+  mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
+    as_ln_s='ln -s'
+    # ... but there are two gotchas:
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+    # In both cases, we have to default to `cp -pR'.
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+      as_ln_s='cp -pR'
+  elif ln conf$$.file conf$$ 2>/dev/null; then
+    as_ln_s=ln
+  else
+    as_ln_s='cp -pR'
+  fi
+else
+  as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+
+# as_fn_mkdir_p
+# -------------
+# Create "$as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+  case $as_dir in #(
+  -*) as_dir=./$as_dir;;
+  esac
+  test -d "$as_dir" || eval $as_mkdir_p || {
+    as_dirs=
+    while :; do
+      case $as_dir in #(
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+      *) as_qdir=$as_dir;;
+      esac
+      as_dirs="'$as_qdir' $as_dirs"
+      as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+        X"$as_dir" : 'X\(//\)[^/]' \| \
+        X"$as_dir" : 'X\(//\)$' \| \
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_dir" |
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)[^/].*/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\).*/{
+           s//\1/
+           q
+         }
+         s/.*/./; q'`
+      test -d "$as_dir" && break
+    done
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} # as_fn_mkdir_p
+if mkdir -p . 2>/dev/null; then
+  as_mkdir_p='mkdir -p "$as_dir"'
+else
+  test -d ./-p && rmdir ./-p
+  as_mkdir_p=false
+fi
+
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+  test -f "$1" && test -x "$1"
+} # as_fn_executable_p
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+exec 6>&1
+## ----------------------------------- ##
+## Main body of $CONFIG_STATUS script. ##
+## ----------------------------------- ##
+# Save the log message, to keep $0 and so on meaningful, and to
+# report actual input values of CONFIG_FILES etc. instead of their
+# values after options handling.
+ac_log="
+This file was extended by libcoap $as_me 4.1.1, which was
+generated by GNU Autoconf 2.69.  Invocation command line was
+
+  CONFIG_FILES    = $CONFIG_FILES
+  CONFIG_HEADERS  = $CONFIG_HEADERS
+  CONFIG_LINKS    = $CONFIG_LINKS
+  CONFIG_COMMANDS = $CONFIG_COMMANDS
+  $ $0 $@
+
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
+"
+
+# Files that config.status was made for.
+config_files=" Makefile doc/Makefile doc/Doxyfile examples/Makefile tests/Makefile"
+config_headers=" config.h"
+
+ac_cs_usage="\
+\`$as_me' instantiates files and other configuration actions
+from templates according to the current configuration.  Unless the files
+and actions are specified as TAGs, all are instantiated by default.
+
+Usage: $0 [OPTION]... [TAG]...
+
+  -h, --help       print this help, then exit
+  -V, --version    print version number and configuration settings, then exit
+      --config     print configuration, then exit
+  -q, --quiet, --silent
+                   do not print progress messages
+  -d, --debug      don't remove temporary files
+      --recheck    update $as_me by reconfiguring in the same conditions
+      --file=FILE[:TEMPLATE]
+                   instantiate the configuration file FILE
+      --header=FILE[:TEMPLATE]
+                   instantiate the configuration header FILE
+
+Configuration files:
+$config_files
+
+Configuration headers:
+$config_headers
+
+Report bugs to the package provider."
+
+ac_cs_config=""
+ac_cs_version="\
+libcoap config.status 4.1.1
+configured by ./configure, generated by GNU Autoconf 2.69,
+  with options \"$ac_cs_config\"
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+This config.status script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it."
+
+ac_pwd='/connectivity/connectivity/src/bt_edr_adapter/libcoap-4.1.1'
+srcdir='.'
+test -n "$AWK" || AWK=awk
+# The default lists apply if the user does not specify any file.
+ac_need_defaults=:
+while test $# != 0
+do
+  case $1 in
+  --*=?*)
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
+    ac_shift=:
+    ;;
+  --*=)
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
+    ac_optarg=
+    ac_shift=:
+    ;;
+  *)
+    ac_option=$1
+    ac_optarg=$2
+    ac_shift=shift
+    ;;
+  esac
+
+  case $ac_option in
+  # Handling of the options.
+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+    ac_cs_recheck=: ;;
+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
+    $as_echo "$ac_cs_version"; exit ;;
+  --config | --confi | --conf | --con | --co | --c )
+    $as_echo "$ac_cs_config"; exit ;;
+  --debug | --debu | --deb | --de | --d | -d )
+    debug=: ;;
+  --file | --fil | --fi | --f )
+    $ac_shift
+    case $ac_optarg in
+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+    '') as_fn_error $? "missing file argument" ;;
+    esac
+    as_fn_append CONFIG_FILES " '$ac_optarg'"
+    ac_need_defaults=false;;
+  --header | --heade | --head | --hea )
+    $ac_shift
+    case $ac_optarg in
+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+    esac
+    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
+    ac_need_defaults=false;;
+  --he | --h)
+    # Conflict between --help and --header
+    as_fn_error $? "ambiguous option: \`$1'
+Try \`$0 --help' for more information.";;
+  --help | --hel | -h )
+    $as_echo "$ac_cs_usage"; exit ;;
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
+    ac_cs_silent=: ;;
+
+  # This is an error.
+  -*) as_fn_error $? "unrecognized option: \`$1'
+Try \`$0 --help' for more information." ;;
+
+  *) as_fn_append ac_config_targets " $1"
+     ac_need_defaults=false ;;
+
+  esac
+  shift
+done
+
+ac_configure_extra_args=
+
+if $ac_cs_silent; then
+  exec 6>/dev/null
+  ac_configure_extra_args="$ac_configure_extra_args --silent"
+fi
+
+if $ac_cs_recheck; then
+  set X /bin/bash './configure'  $ac_configure_extra_args --no-create --no-recursion
+  shift
+  $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
+  CONFIG_SHELL='/bin/bash'
+  export CONFIG_SHELL
+  exec "$@"
+fi
+
+exec 5>>config.log
+{
+  echo
+  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+## Running $as_me. ##
+_ASBOX
+  $as_echo "$ac_log"
+} >&5
+
+
+# Handling of arguments.
+for ac_config_target in $ac_config_targets
+do
+  case $ac_config_target in
+    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+    "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
+    "doc/Doxyfile") CONFIG_FILES="$CONFIG_FILES doc/Doxyfile" ;;
+    "examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;;
+    "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
+
+  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+  esac
+done
+
+
+# If the user did not use the arguments to specify the items to instantiate,
+# then the envvar interface is used.  Set only those that are not.
+# We use the long form for the default assignment because of an extremely
+# bizarre bug on SunOS 4.1.3.
+if $ac_need_defaults; then
+  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
+  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
+fi
+
+# Have a temporary directory for convenience.  Make it in the build tree
+# simply because there is no reason against having it here, and in addition,
+# creating and moving files from /tmp can sometimes cause problems.
+# Hook for its removal unless debugging.
+# Note that there is a small window in which the directory will not be cleaned:
+# after its creation but before its name has been assigned to `$tmp'.
+$debug ||
+{
+  tmp= ac_tmp=
+  trap 'exit_status=$?
+  : "${ac_tmp:=$tmp}"
+  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
+' 0
+  trap 'as_fn_exit 1' 1 2 13 15
+}
+# Create a (secure) tmp directory for tmp files.
+
+{
+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+  test -d "$tmp"
+}  ||
+{
+  tmp=./conf$$-$RANDOM
+  (umask 077 && mkdir "$tmp")
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
+ac_tmp=$tmp
+
+# Set up the scripts for CONFIG_FILES section.
+# No need to generate them if there are no CONFIG_FILES.
+# This happens for instance with `./config.status config.h'.
+if test -n "$CONFIG_FILES"; then
+
+
+ac_cr=`echo X | tr X '\015'`
+# On cygwin, bash can eat \r inside `` if the user requested igncr.
+# But we know of no other shell where ac_cr would be empty at this
+# point, so we can use a bashism as a fallback.
+if test "x$ac_cr" = x; then
+  eval ac_cr=\$\'\\r\'
+fi
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
+  ac_cs_awk_cr='\\r'
+else
+  ac_cs_awk_cr=$ac_cr
+fi
+
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
+cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
+S["LTLIBOBJS"]=""
+S["BUILD_SO"]=""
+S["TESTS"]=""
+S["LIBOBJS"]=""
+S["EGREP"]="/bin/grep -E"
+S["GREP"]="/bin/grep"
+S["CPP"]="gcc -E"
+S["ETAGS"]="/bin/false"
+S["DOXYGEN"]=":"
+S["RANLIB"]="ranlib"
+S["OBJEXT"]="o"
+S["EXEEXT"]=""
+S["ac_ct_CC"]="gcc"
+S["CPPFLAGS"]=" -DWITH_POSIX"
+S["LDFLAGS"]=""
+S["CFLAGS"]="-g -O2"
+S["CC"]="gcc"
+S["SET_MAKE"]=""
+S["target_alias"]=""
+S["host_alias"]=""
+S["build_alias"]=""
+S["LIBS"]=""
+S["ECHO_T"]=""
+S["ECHO_N"]="-n"
+S["ECHO_C"]=""
+S["DEFS"]="-DHAVE_CONFIG_H"
+S["mandir"]="${datarootdir}/man"
+S["localedir"]="${datarootdir}/locale"
+S["libdir"]="${exec_prefix}/lib"
+S["psdir"]="${docdir}"
+S["pdfdir"]="${docdir}"
+S["dvidir"]="${docdir}"
+S["htmldir"]="${docdir}"
+S["infodir"]="${datarootdir}/info"
+S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
+S["oldincludedir"]="/usr/include"
+S["includedir"]="${prefix}/include"
+S["localstatedir"]="${prefix}/var"
+S["sharedstatedir"]="${prefix}/com"
+S["sysconfdir"]="${prefix}/etc"
+S["datadir"]="${datarootdir}"
+S["datarootdir"]="${prefix}/share"
+S["libexecdir"]="${exec_prefix}/libexec"
+S["sbindir"]="${exec_prefix}/sbin"
+S["bindir"]="${exec_prefix}/bin"
+S["program_transform_name"]="s,x,x,"
+S["prefix"]="/usr/local"
+S["exec_prefix"]="${prefix}"
+S["PACKAGE_URL"]=""
+S["PACKAGE_BUGREPORT"]=""
+S["PACKAGE_STRING"]="libcoap 4.1.1"
+S["PACKAGE_VERSION"]="4.1.1"
+S["PACKAGE_TARNAME"]="libcoap"
+S["PACKAGE_NAME"]="libcoap"
+S["PATH_SEPARATOR"]=":"
+S["SHELL"]="/bin/bash"
+_ACAWK
+cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
+  for (key in S) S_is_set[key] = 1
+  FS = "\a"
+
+}
+{
+  line = $ 0
+  nfields = split(line, field, "@")
+  substed = 0
+  len = length(field[1])
+  for (i = 2; i < nfields; i++) {
+    key = field[i]
+    keylen = length(key)
+    if (S_is_set[key]) {
+      value = S[key]
+      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
+      len += length(value) + length(field[++i])
+      substed = 1
+    } else
+      len += 1 + keylen
+  }
+
+  print line
+}
+
+_ACAWK
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
+  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
+else
+  cat
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
+  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
+fi # test -n "$CONFIG_FILES"
+
+# Set up the scripts for CONFIG_HEADERS section.
+# No need to generate them if there are no CONFIG_HEADERS.
+# This happens for instance with `./config.status Makefile'.
+if test -n "$CONFIG_HEADERS"; then
+cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
+BEGIN {
+D["PACKAGE_NAME"]=" \"libcoap\""
+D["PACKAGE_TARNAME"]=" \"libcoap\""
+D["PACKAGE_VERSION"]=" \"4.1.1\""
+D["PACKAGE_STRING"]=" \"libcoap 4.1.1\""
+D["PACKAGE_BUGREPORT"]=" \"\""
+D["PACKAGE_URL"]=" \"\""
+D["STDC_HEADERS"]=" 1"
+D["HAVE_SYS_TYPES_H"]=" 1"
+D["HAVE_SYS_STAT_H"]=" 1"
+D["HAVE_STDLIB_H"]=" 1"
+D["HAVE_STRING_H"]=" 1"
+D["HAVE_MEMORY_H"]=" 1"
+D["HAVE_STRINGS_H"]=" 1"
+D["HAVE_INTTYPES_H"]=" 1"
+D["HAVE_STDINT_H"]=" 1"
+D["HAVE_UNISTD_H"]=" 1"
+D["HAVE_ASSERT_H"]=" 1"
+D["HAVE_ARPA_INET_H"]=" 1"
+D["HAVE_LIMITS_H"]=" 1"
+D["HAVE_NETDB_H"]=" 1"
+D["HAVE_NETINET_IN_H"]=" 1"
+D["HAVE_STDLIB_H"]=" 1"
+D["HAVE_STRING_H"]=" 1"
+D["HAVE_STRINGS_H"]=" 1"
+D["HAVE_SYS_SOCKET_H"]=" 1"
+D["HAVE_SYS_TIME_H"]=" 1"
+D["HAVE_TIME_H"]=" 1"
+D["HAVE_UNISTD_H"]=" 1"
+D["HAVE_SYS_UNISTD_H"]=" 1"
+D["HAVE_SYSLOG_H"]=" 1"
+D["HAVE_STDLIB_H"]=" 1"
+D["HAVE_MALLOC"]=" 1"
+D["HAVE_MEMSET"]=" 1"
+D["HAVE_SELECT"]=" 1"
+D["HAVE_SOCKET"]=" 1"
+D["HAVE_STRCASECMP"]=" 1"
+D["HAVE_STRRCHR"]=" 1"
+D["HAVE_GETADDRINFO"]=" 1"
+D["HAVE_STRNLEN"]=" 1"
+  for (key in D) D_is_set[key] = 1
+  FS = "\a"
+}
+/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
+  line = $ 0
+  split(line, arg, " ")
+  if (arg[1] == "#") {
+    defundef = arg[2]
+    mac1 = arg[3]
+  } else {
+    defundef = substr(arg[1], 2)
+    mac1 = arg[2]
+  }
+  split(mac1, mac2, "(") #)
+  macro = mac2[1]
+  prefix = substr(line, 1, index(line, defundef) - 1)
+  if (D_is_set[macro]) {
+    # Preserve the white space surrounding the "#".
+    print prefix "define", macro P[macro] D[macro]
+    next
+  } else {
+    # Replace #undef with comments.  This is necessary, for example,
+    # in the case of _POSIX_SOURCE, which is predefined and required
+    # on some systems where configure will not decide to define it.
+    if (defundef == "undef") {
+      print "/*", prefix defundef, macro, "*/"
+      next
+    }
+  }
+}
+{ print }
+_ACAWK
+  as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
+fi # test -n "$CONFIG_HEADERS"
+
+
+eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    "
+shift
+for ac_tag
+do
+  case $ac_tag in
+  :[FHLC]) ac_mode=$ac_tag; continue;;
+  esac
+  case $ac_mode$ac_tag in
+  :[FHL]*:*);;
+  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
+  :[FH]-) ac_tag=-:-;;
+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
+  esac
+  ac_save_IFS=$IFS
+  IFS=:
+  set x $ac_tag
+  IFS=$ac_save_IFS
+  shift
+  ac_file=$1
+  shift
+
+  case $ac_mode in
+  :L) ac_source=$1;;
+  :[FH])
+    ac_file_inputs=
+    for ac_f
+    do
+      case $ac_f in
+      -) ac_f="$ac_tmp/stdin";;
+      *) # Look for the file first in the build tree, then in the source tree
+        # (if the path is not absolute).  The absolute path cannot be DOS-style,
+        # because $ac_f cannot contain `:'.
+        test -f "$ac_f" ||
+          case $ac_f in
+          [\\/$]*) false;;
+          *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
+          esac ||
+          as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+      esac
+      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
+      as_fn_append ac_file_inputs " '$ac_f'"
+    done
+
+    # Let's still pretend it is `configure' which instantiates (i.e., don't
+    # use $as_me), people would be surprised to read:
+    #    /* config.h.  Generated by config.status.  */
+    configure_input='Generated from '`
+         $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
+       `' by configure.'
+    if test x"$ac_file" != x-; then
+      configure_input="$ac_file.  $configure_input"
+      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
+$as_echo "$as_me: creating $ac_file" >&6;}
+    fi
+    # Neutralize special characters interpreted by sed in replacement strings.
+    case $configure_input in #(
+    *\&* | *\|* | *\\* )
+       ac_sed_conf_input=`$as_echo "$configure_input" |
+       sed 's/[\\\\&|]/\\\\&/g'`;; #(
+    *) ac_sed_conf_input=$configure_input;;
+    esac
+
+    case $ac_tag in
+    *:-:* | *:-) cat >"$ac_tmp/stdin" \
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
+    esac
+    ;;
+  esac
+
+  ac_dir=`$as_dirname -- "$ac_file" ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+        X"$ac_file" : 'X\(//\)[^/]' \| \
+        X"$ac_file" : 'X\(//\)$' \| \
+        X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$ac_file" |
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)[^/].*/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\).*/{
+           s//\1/
+           q
+         }
+         s/.*/./; q'`
+  as_dir="$ac_dir"; as_fn_mkdir_p
+  ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
+  # A ".." for each directory in $ac_dir_suffix.
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+  case $ac_top_builddir_sub in
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+  esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+  .)  # We are building in place.
+    ac_srcdir=.
+    ac_top_srcdir=$ac_top_builddir_sub
+    ac_abs_top_srcdir=$ac_pwd ;;
+  [\\/]* | ?:[\\/]* )  # Absolute name.
+    ac_srcdir=$srcdir$ac_dir_suffix;
+    ac_top_srcdir=$srcdir
+    ac_abs_top_srcdir=$srcdir ;;
+  *) # Relative name.
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+
+  case $ac_mode in
+  :F)
+  #
+  # CONFIG_FILE
+  #
+
+# If the template does not know about datarootdir, expand it.
+# FIXME: This hack should be removed a few years after 2.60.
+ac_datarootdir_hack=; ac_datarootdir_seen=
+ac_sed_dataroot='
+/datarootdir/ {
+  p
+  q
+}
+/@datadir@/p
+/@docdir@/p
+/@infodir@/p
+/@localedir@/p
+/@mandir@/p'
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
+*datarootdir*) ac_datarootdir_seen=yes;;
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
+  ac_datarootdir_hack='
+  s&@datadir@&${datarootdir}&g
+  s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
+  s&@infodir@&${datarootdir}/info&g
+  s&@localedir@&${datarootdir}/locale&g
+  s&@mandir@&${datarootdir}/man&g
+  s&\${datarootdir}&${prefix}/share&g' ;;
+esac
+ac_sed_extra="/^[       ]*VPATH[        ]*=[    ]*/{
+h
+s///
+s/^/:/
+s/[     ]*$/:/
+s/:\$(srcdir):/:/g
+s/:\${srcdir}:/:/g
+s/:@srcdir@:/:/g
+s/^:*//
+s/:*$//
+x
+s/\(=[  ]*\).*/\1/
+G
+s/\n//
+s/^[^=]*=[      ]*$//
+}
+
+:t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+s|@configure_input@|$ac_sed_conf_input|;t t
+s&@top_builddir@&$ac_top_builddir_sub&;t t
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
+s&@srcdir@&$ac_srcdir&;t t
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
+s&@top_srcdir@&$ac_top_srcdir&;t t
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
+s&@builddir@&$ac_builddir&;t t
+s&@abs_builddir@&$ac_abs_builddir&;t t
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
+$ac_datarootdir_hack
+"
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
+  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
+  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
+  { ac_out=`sed -n '/^[         ]*datarootdir[  ]*:*=/p' \
+      "$ac_tmp/out"`; test -z "$ac_out"; } &&
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined.  Please make sure it is defined" >&5
+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined.  Please make sure it is defined" >&2;}
+
+  rm -f "$ac_tmp/stdin"
+  case $ac_file in
+  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
+  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
+  esac \
+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+ ;;
+  :H)
+  #
+  # CONFIG_HEADER
+  #
+  if test x"$ac_file" != x-; then
+    {
+      $as_echo "/* $configure_input  */" \
+      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
+    } >"$ac_tmp/config.h" \
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+    if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
+      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
+$as_echo "$as_me: $ac_file is unchanged" >&6;}
+    else
+      rm -f "$ac_file"
+      mv "$ac_tmp/config.h" "$ac_file" \
+       || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+    fi
+  else
+    $as_echo "/* $configure_input  */" \
+      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
+      || as_fn_error $? "could not create -" "$LINENO" 5
+  fi
+ ;;
+
+
+  esac
+
+done # for ac_tag
+
+
+as_fn_exit 0
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/configure b/resource/csdk/connectivity/lib/libcoap-4.1.1/configure
new file mode 100644 (file)
index 0000000..b6f5dad
--- /dev/null
@@ -0,0 +1,5411 @@
+#! /bin/sh
+# Guess values for system-dependent variables and create Makefiles.
+# Generated by GNU Autoconf 2.69 for libcoap 4.1.1.
+#
+#
+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
+#
+#
+# This configure script is free software; the Free Software Foundation
+# gives unlimited permission to copy, distribute and modify it.
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
+  emulate sh
+  NULLCMD=:
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+  # is contrary to our usage.  Disable this feature.
+  alias -g '${1+"$@"}'='"$@"'
+  setopt NO_GLOB_SUBST
+else
+  case `(set -o) 2>/dev/null` in #(
+  *posix*) :
+    set -o posix ;; #(
+  *) :
+     ;;
+esac
+fi
+
+
+as_nl='
+'
+export as_nl
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
+# Prefer a ksh shell builtin over an external printf program on Solaris,
+# but without wasting forks for bash or zsh.
+if test -z "$BASH_VERSION$ZSH_VERSION" \
+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
+  as_echo='print -r --'
+  as_echo_n='print -rn --'
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
+  as_echo='printf %s\n'
+  as_echo_n='printf %s'
+else
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
+    as_echo_n='/usr/ucb/echo -n'
+  else
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
+    as_echo_n_body='eval
+      arg=$1;
+      case $arg in #(
+      *"$as_nl"*)
+       expr "X$arg" : "X\\(.*\\)$as_nl";
+       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
+      esac;
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
+    '
+    export as_echo_n_body
+    as_echo_n='sh -c $as_echo_n_body as_echo'
+  fi
+  export as_echo_body
+  as_echo='sh -c $as_echo_body as_echo'
+fi
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+  PATH_SEPARATOR=:
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+      PATH_SEPARATOR=';'
+  }
+fi
+
+
+# IFS
+# We need space, tab and new line, in precisely that order.  Quoting is
+# there to prevent editors from complaining about space-tab.
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
+# splitting by setting IFS to empty value.)
+IFS=" ""       $as_nl"
+
+# Find who we are.  Look in the path if we contain no directory separator.
+as_myself=
+case $0 in #((
+  *[\\/]* ) as_myself=$0 ;;
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+  done
+IFS=$as_save_IFS
+
+     ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+  as_myself=$0
+fi
+if test ! -f "$as_myself"; then
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+  exit 1
+fi
+
+# Unset variables that we do not need and which cause bugs (e.g. in
+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
+# suppresses any "Segmentation fault" message there.  '((' could
+# trigger a bug in pdksh 5.2.14.
+for as_var in BASH_ENV ENV MAIL MAILPATH
+do eval test x\${$as_var+set} = xset \
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+# Use a proper internal environment variable to ensure we don't fall
+  # into an infinite loop, continuously re-executing ourselves.
+  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
+    _as_can_reexec=no; export _as_can_reexec;
+    # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+  *v*x* | *x*v* ) as_opts=-vx ;;
+  *v* ) as_opts=-v ;;
+  *x* ) as_opts=-x ;;
+  * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
+as_fn_exit 255
+  fi
+  # We don't want this to propagate to other subprocesses.
+          { _as_can_reexec=; unset _as_can_reexec;}
+if test "x$CONFIG_SHELL" = x; then
+  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
+  emulate sh
+  NULLCMD=:
+  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
+  # is contrary to our usage.  Disable this feature.
+  alias -g '\${1+\"\$@\"}'='\"\$@\"'
+  setopt NO_GLOB_SUBST
+else
+  case \`(set -o) 2>/dev/null\` in #(
+  *posix*) :
+    set -o posix ;; #(
+  *) :
+     ;;
+esac
+fi
+"
+  as_required="as_fn_return () { (exit \$1); }
+as_fn_success () { as_fn_return 0; }
+as_fn_failure () { as_fn_return 1; }
+as_fn_ret_success () { return 0; }
+as_fn_ret_failure () { return 1; }
+
+exitcode=0
+as_fn_success || { exitcode=1; echo as_fn_success failed.; }
+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
+if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
+
+else
+  exitcode=1; echo positional parameters were not saved.
+fi
+test x\$exitcode = x0 || exit 1
+test -x / || exit 1"
+  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
+  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
+  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
+  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
+test \$(( 1 + 1 )) = 2 || exit 1"
+  if (eval "$as_required") 2>/dev/null; then :
+  as_have_required=yes
+else
+  as_have_required=no
+fi
+  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
+
+else
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+as_found=false
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+  as_found=:
+  case $as_dir in #(
+        /*)
+          for as_base in sh bash ksh sh5; do
+            # Try only shells that exist, to save several forks.
+            as_shell=$as_dir/$as_base
+            if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
+                   { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
+  CONFIG_SHELL=$as_shell as_have_required=yes
+                  if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
+  break 2
+fi
+fi
+          done;;
+       esac
+  as_found=false
+done
+$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
+             { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
+  CONFIG_SHELL=$SHELL as_have_required=yes
+fi; }
+IFS=$as_save_IFS
+
+
+      if test "x$CONFIG_SHELL" != x; then :
+  export CONFIG_SHELL
+             # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+  *v*x* | *x*v* ) as_opts=-vx ;;
+  *v* ) as_opts=-v ;;
+  *x* ) as_opts=-x ;;
+  * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
+exit 255
+fi
+
+    if test x$as_have_required = xno; then :
+  $as_echo "$0: This script requires a shell more modern than all"
+  $as_echo "$0: the shells that I found on your system."
+  if test x${ZSH_VERSION+set} = xset ; then
+    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
+    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
+  else
+    $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
+$0: including any error possibly output before this
+$0: message. Then install a modern shell, or manually run
+$0: the script under such a shell if you do have one."
+  fi
+  exit 1
+fi
+fi
+fi
+SHELL=${CONFIG_SHELL-/bin/sh}
+export SHELL
+# Unset more variables known to interfere with behavior of common tools.
+CLICOLOR_FORCE= GREP_OPTIONS=
+unset CLICOLOR_FORCE GREP_OPTIONS
+
+## --------------------- ##
+## M4sh Shell Functions. ##
+## --------------------- ##
+# as_fn_unset VAR
+# ---------------
+# Portably unset VAR.
+as_fn_unset ()
+{
+  { eval $1=; unset $1;}
+}
+as_unset=as_fn_unset
+
+# as_fn_set_status STATUS
+# -----------------------
+# Set $? to STATUS, without forking.
+as_fn_set_status ()
+{
+  return $1
+} # as_fn_set_status
+
+# as_fn_exit STATUS
+# -----------------
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+  set +e
+  as_fn_set_status $1
+  exit $1
+} # as_fn_exit
+
+# as_fn_mkdir_p
+# -------------
+# Create "$as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+  case $as_dir in #(
+  -*) as_dir=./$as_dir;;
+  esac
+  test -d "$as_dir" || eval $as_mkdir_p || {
+    as_dirs=
+    while :; do
+      case $as_dir in #(
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+      *) as_qdir=$as_dir;;
+      esac
+      as_dirs="'$as_qdir' $as_dirs"
+      as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+        X"$as_dir" : 'X\(//\)[^/]' \| \
+        X"$as_dir" : 'X\(//\)$' \| \
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_dir" |
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)[^/].*/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\).*/{
+           s//\1/
+           q
+         }
+         s/.*/./; q'`
+      test -d "$as_dir" && break
+    done
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} # as_fn_mkdir_p
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+  test -f "$1" && test -x "$1"
+} # as_fn_executable_p
+# as_fn_append VAR VALUE
+# ----------------------
+# Append the text in VALUE to the end of the definition contained in VAR. Take
+# advantage of any shell optimizations that allow amortized linear growth over
+# repeated appends, instead of the typical quadratic growth present in naive
+# implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
+  eval 'as_fn_append ()
+  {
+    eval $1+=\$2
+  }'
+else
+  as_fn_append ()
+  {
+    eval $1=\$$1\$2
+  }
+fi # as_fn_append
+
+# as_fn_arith ARG...
+# ------------------
+# Perform arithmetic evaluation on the ARGs, and store the result in the
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
+# must be portable across $(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
+  eval 'as_fn_arith ()
+  {
+    as_val=$(( $* ))
+  }'
+else
+  as_fn_arith ()
+  {
+    as_val=`expr "$@" || test $? -eq 1`
+  }
+fi # as_fn_arith
+
+
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+# script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+  as_status=$1; test $as_status -eq 0 && as_status=1
+  if test "$4"; then
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
+  fi
+  $as_echo "$as_me: error: $2" >&2
+  as_fn_exit $as_status
+} # as_fn_error
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
+  as_expr=expr
+else
+  as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+  as_basename=basename
+else
+  as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+  as_dirname=dirname
+else
+  as_dirname=false
+fi
+
+as_me=`$as_basename -- "$0" ||
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+        X"$0" : 'X\(//\)$' \| \
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$0" |
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
+           s//\1/
+           q
+         }
+         /^X\/\(\/\/\)$/{
+           s//\1/
+           q
+         }
+         /^X\/\(\/\).*/{
+           s//\1/
+           q
+         }
+         s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+
+  as_lineno_1=$LINENO as_lineno_1a=$LINENO
+  as_lineno_2=$LINENO as_lineno_2a=$LINENO
+  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
+  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
+  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
+  sed -n '
+    p
+    /[$]LINENO/=
+  ' <$as_myself |
+    sed '
+      s/[$]LINENO.*/&-/
+      t lineno
+      b
+      :lineno
+      N
+      :loop
+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
+      t loop
+      s/-\n.*//
+    ' >$as_me.lineno &&
+  chmod +x "$as_me.lineno" ||
+    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
+
+  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
+  # already done that, so ensure we don't try to do so again and fall
+  # in an infinite loop.  This has already happened in practice.
+  _as_can_reexec=no; export _as_can_reexec
+  # Don't try to exec as it changes $[0], causing all sort of problems
+  # (the dirname of $[0] is not the place where we might find the
+  # original and so on.  Autoconf is especially sensitive to this).
+  . "./$as_me.lineno"
+  # Exit status is that of the last command.
+  exit
+}
+
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+  case `echo 'xy\c'` in
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
+  xy)  ECHO_C='\c';;
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
+       ECHO_T='        ';;
+  esac;;
+*)
+  ECHO_N='-n';;
+esac
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+  rm -f conf$$.dir/conf$$.file
+else
+  rm -f conf$$.dir
+  mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
+    as_ln_s='ln -s'
+    # ... but there are two gotchas:
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+    # In both cases, we have to default to `cp -pR'.
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+      as_ln_s='cp -pR'
+  elif ln conf$$.file conf$$ 2>/dev/null; then
+    as_ln_s=ln
+  else
+    as_ln_s='cp -pR'
+  fi
+else
+  as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+if mkdir -p . 2>/dev/null; then
+  as_mkdir_p='mkdir -p "$as_dir"'
+else
+  test -d ./-p && rmdir ./-p
+  as_mkdir_p=false
+fi
+
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+test -n "$DJDIR" || exec 7<&0 </dev/null
+exec 6>&1
+
+# Name of the host.
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
+# so uname gets run too.
+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
+
+#
+# Initializations.
+#
+ac_default_prefix=/usr/local
+ac_clean_files=
+ac_config_libobj_dir=.
+LIBOBJS=
+cross_compiling=no
+subdirs=
+MFLAGS=
+MAKEFLAGS=
+
+# Identity of this package.
+PACKAGE_NAME='libcoap'
+PACKAGE_TARNAME='libcoap'
+PACKAGE_VERSION='4.1.1'
+PACKAGE_STRING='libcoap 4.1.1'
+PACKAGE_BUGREPORT=''
+PACKAGE_URL=''
+
+ac_unique_file="coap.h"
+# Factoring default headers for most tests.
+ac_includes_default="\
+#include <stdio.h>
+#ifdef HAVE_SYS_TYPES_H
+# include <sys/types.h>
+#endif
+#ifdef HAVE_SYS_STAT_H
+# include <sys/stat.h>
+#endif
+#ifdef STDC_HEADERS
+# include <stdlib.h>
+# include <stddef.h>
+#else
+# ifdef HAVE_STDLIB_H
+#  include <stdlib.h>
+# endif
+#endif
+#ifdef HAVE_STRING_H
+# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+#  include <memory.h>
+# endif
+# include <string.h>
+#endif
+#ifdef HAVE_STRINGS_H
+# include <strings.h>
+#endif
+#ifdef HAVE_INTTYPES_H
+# include <inttypes.h>
+#endif
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#endif
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif"
+
+ac_subst_vars='LTLIBOBJS
+BUILD_SO
+TESTS
+LIBOBJS
+EGREP
+GREP
+CPP
+ETAGS
+DOXYGEN
+RANLIB
+OBJEXT
+EXEEXT
+ac_ct_CC
+CPPFLAGS
+LDFLAGS
+CFLAGS
+CC
+SET_MAKE
+target_alias
+host_alias
+build_alias
+LIBS
+ECHO_T
+ECHO_N
+ECHO_C
+DEFS
+mandir
+localedir
+libdir
+psdir
+pdfdir
+dvidir
+htmldir
+infodir
+docdir
+oldincludedir
+includedir
+localstatedir
+sharedstatedir
+sysconfdir
+datadir
+datarootdir
+libexecdir
+sbindir
+bindir
+program_transform_name
+prefix
+exec_prefix
+PACKAGE_URL
+PACKAGE_BUGREPORT
+PACKAGE_STRING
+PACKAGE_VERSION
+PACKAGE_TARNAME
+PACKAGE_NAME
+PATH_SEPARATOR
+SHELL'
+ac_subst_files=''
+ac_user_opts='
+enable_option_checking
+with_contiki
+with_debug
+with_async
+with_block
+with_observe
+with_query_filter
+with_tests
+with_shared
+'
+      ac_precious_vars='build_alias
+host_alias
+target_alias
+CC
+CFLAGS
+LDFLAGS
+LIBS
+CPPFLAGS
+CPP'
+
+
+# Initialize some variables set by options.
+ac_init_help=
+ac_init_version=false
+ac_unrecognized_opts=
+ac_unrecognized_sep=
+# The variables have the same names as the options, with
+# dashes changed to underlines.
+cache_file=/dev/null
+exec_prefix=NONE
+no_create=
+no_recursion=
+prefix=NONE
+program_prefix=NONE
+program_suffix=NONE
+program_transform_name=s,x,x,
+silent=
+site=
+srcdir=
+verbose=
+x_includes=NONE
+x_libraries=NONE
+
+# Installation directory options.
+# These are left unexpanded so users can "make install exec_prefix=/foo"
+# and all the variables that are supposed to be based on exec_prefix
+# by default will actually change.
+# Use braces instead of parens because sh, perl, etc. also accept them.
+# (The list follows the same order as the GNU Coding Standards.)
+bindir='${exec_prefix}/bin'
+sbindir='${exec_prefix}/sbin'
+libexecdir='${exec_prefix}/libexec'
+datarootdir='${prefix}/share'
+datadir='${datarootdir}'
+sysconfdir='${prefix}/etc'
+sharedstatedir='${prefix}/com'
+localstatedir='${prefix}/var'
+includedir='${prefix}/include'
+oldincludedir='/usr/include'
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
+infodir='${datarootdir}/info'
+htmldir='${docdir}'
+dvidir='${docdir}'
+pdfdir='${docdir}'
+psdir='${docdir}'
+libdir='${exec_prefix}/lib'
+localedir='${datarootdir}/locale'
+mandir='${datarootdir}/man'
+
+ac_prev=
+ac_dashdash=
+for ac_option
+do
+  # If the previous option needs an argument, assign it.
+  if test -n "$ac_prev"; then
+    eval $ac_prev=\$ac_option
+    ac_prev=
+    continue
+  fi
+
+  case $ac_option in
+  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
+  *=)   ac_optarg= ;;
+  *)    ac_optarg=yes ;;
+  esac
+
+  # Accept the important Cygnus configure options, so we can diagnose typos.
+
+  case $ac_dashdash$ac_option in
+  --)
+    ac_dashdash=yes ;;
+
+  -bindir | --bindir | --bindi | --bind | --bin | --bi)
+    ac_prev=bindir ;;
+  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
+    bindir=$ac_optarg ;;
+
+  -build | --build | --buil | --bui | --bu)
+    ac_prev=build_alias ;;
+  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
+    build_alias=$ac_optarg ;;
+
+  -cache-file | --cache-file | --cache-fil | --cache-fi \
+  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
+    ac_prev=cache_file ;;
+  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
+  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
+    cache_file=$ac_optarg ;;
+
+  --config-cache | -C)
+    cache_file=config.cache ;;
+
+  -datadir | --datadir | --datadi | --datad)
+    ac_prev=datadir ;;
+  -datadir=* | --datadir=* | --datadi=* | --datad=*)
+    datadir=$ac_optarg ;;
+
+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
+  | --dataroo | --dataro | --datar)
+    ac_prev=datarootdir ;;
+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
+    datarootdir=$ac_optarg ;;
+
+  -disable-* | --disable-*)
+    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
+    # Reject names that are not valid shell variable names.
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+      as_fn_error $? "invalid feature name: $ac_useropt"
+    ac_useropt_orig=$ac_useropt
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+    case $ac_user_opts in
+      *"
+"enable_$ac_useropt"
+"*) ;;
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
+        ac_unrecognized_sep=', ';;
+    esac
+    eval enable_$ac_useropt=no ;;
+
+  -docdir | --docdir | --docdi | --doc | --do)
+    ac_prev=docdir ;;
+  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
+    docdir=$ac_optarg ;;
+
+  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
+    ac_prev=dvidir ;;
+  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
+    dvidir=$ac_optarg ;;
+
+  -enable-* | --enable-*)
+    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
+    # Reject names that are not valid shell variable names.
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+      as_fn_error $? "invalid feature name: $ac_useropt"
+    ac_useropt_orig=$ac_useropt
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+    case $ac_user_opts in
+      *"
+"enable_$ac_useropt"
+"*) ;;
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
+        ac_unrecognized_sep=', ';;
+    esac
+    eval enable_$ac_useropt=\$ac_optarg ;;
+
+  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
+  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
+  | --exec | --exe | --ex)
+    ac_prev=exec_prefix ;;
+  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
+  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
+  | --exec=* | --exe=* | --ex=*)
+    exec_prefix=$ac_optarg ;;
+
+  -gas | --gas | --ga | --g)
+    # Obsolete; use --with-gas.
+    with_gas=yes ;;
+
+  -help | --help | --hel | --he | -h)
+    ac_init_help=long ;;
+  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
+    ac_init_help=recursive ;;
+  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
+    ac_init_help=short ;;
+
+  -host | --host | --hos | --ho)
+    ac_prev=host_alias ;;
+  -host=* | --host=* | --hos=* | --ho=*)
+    host_alias=$ac_optarg ;;
+
+  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
+    ac_prev=htmldir ;;
+  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
+  | --ht=*)
+    htmldir=$ac_optarg ;;
+
+  -includedir | --includedir | --includedi | --included | --include \
+  | --includ | --inclu | --incl | --inc)
+    ac_prev=includedir ;;
+  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
+  | --includ=* | --inclu=* | --incl=* | --inc=*)
+    includedir=$ac_optarg ;;
+
+  -infodir | --infodir | --infodi | --infod | --info | --inf)
+    ac_prev=infodir ;;
+  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
+    infodir=$ac_optarg ;;
+
+  -libdir | --libdir | --libdi | --libd)
+    ac_prev=libdir ;;
+  -libdir=* | --libdir=* | --libdi=* | --libd=*)
+    libdir=$ac_optarg ;;
+
+  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
+  | --libexe | --libex | --libe)
+    ac_prev=libexecdir ;;
+  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
+  | --libexe=* | --libex=* | --libe=*)
+    libexecdir=$ac_optarg ;;
+
+  -localedir | --localedir | --localedi | --localed | --locale)
+    ac_prev=localedir ;;
+  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
+    localedir=$ac_optarg ;;
+
+  -localstatedir | --localstatedir | --localstatedi | --localstated \
+  | --localstate | --localstat | --localsta | --localst | --locals)
+    ac_prev=localstatedir ;;
+  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
+    localstatedir=$ac_optarg ;;
+
+  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+    ac_prev=mandir ;;
+  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
+    mandir=$ac_optarg ;;
+
+  -nfp | --nfp | --nf)
+    # Obsolete; use --without-fp.
+    with_fp=no ;;
+
+  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+  | --no-cr | --no-c | -n)
+    no_create=yes ;;
+
+  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
+    no_recursion=yes ;;
+
+  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
+  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
+  | --oldin | --oldi | --old | --ol | --o)
+    ac_prev=oldincludedir ;;
+  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
+  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
+  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
+    oldincludedir=$ac_optarg ;;
+
+  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
+    ac_prev=prefix ;;
+  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
+    prefix=$ac_optarg ;;
+
+  -program-prefix | --program-prefix | --program-prefi | --program-pref \
+  | --program-pre | --program-pr | --program-p)
+    ac_prev=program_prefix ;;
+  -program-prefix=* | --program-prefix=* | --program-prefi=* \
+  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
+    program_prefix=$ac_optarg ;;
+
+  -program-suffix | --program-suffix | --program-suffi | --program-suff \
+  | --program-suf | --program-su | --program-s)
+    ac_prev=program_suffix ;;
+  -program-suffix=* | --program-suffix=* | --program-suffi=* \
+  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
+    program_suffix=$ac_optarg ;;
+
+  -program-transform-name | --program-transform-name \
+  | --program-transform-nam | --program-transform-na \
+  | --program-transform-n | --program-transform- \
+  | --program-transform | --program-transfor \
+  | --program-transfo | --program-transf \
+  | --program-trans | --program-tran \
+  | --progr-tra | --program-tr | --program-t)
+    ac_prev=program_transform_name ;;
+  -program-transform-name=* | --program-transform-name=* \
+  | --program-transform-nam=* | --program-transform-na=* \
+  | --program-transform-n=* | --program-transform-=* \
+  | --program-transform=* | --program-transfor=* \
+  | --program-transfo=* | --program-transf=* \
+  | --program-trans=* | --program-tran=* \
+  | --progr-tra=* | --program-tr=* | --program-t=*)
+    program_transform_name=$ac_optarg ;;
+
+  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
+    ac_prev=pdfdir ;;
+  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
+    pdfdir=$ac_optarg ;;
+
+  -psdir | --psdir | --psdi | --psd | --ps)
+    ac_prev=psdir ;;
+  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
+    psdir=$ac_optarg ;;
+
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+  | -silent | --silent | --silen | --sile | --sil)
+    silent=yes ;;
+
+  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+    ac_prev=sbindir ;;
+  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+  | --sbi=* | --sb=*)
+    sbindir=$ac_optarg ;;
+
+  -sharedstatedir | --sharedstatedir | --sharedstatedi \
+  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
+  | --sharedst | --shareds | --shared | --share | --shar \
+  | --sha | --sh)
+    ac_prev=sharedstatedir ;;
+  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
+  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
+  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
+  | --sha=* | --sh=*)
+    sharedstatedir=$ac_optarg ;;
+
+  -site | --site | --sit)
+    ac_prev=site ;;
+  -site=* | --site=* | --sit=*)
+    site=$ac_optarg ;;
+
+  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
+    ac_prev=srcdir ;;
+  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
+    srcdir=$ac_optarg ;;
+
+  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
+  | --syscon | --sysco | --sysc | --sys | --sy)
+    ac_prev=sysconfdir ;;
+  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
+  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
+    sysconfdir=$ac_optarg ;;
+
+  -target | --target | --targe | --targ | --tar | --ta | --t)
+    ac_prev=target_alias ;;
+  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
+    target_alias=$ac_optarg ;;
+
+  -v | -verbose | --verbose | --verbos | --verbo | --verb)
+    verbose=yes ;;
+
+  -version | --version | --versio | --versi | --vers | -V)
+    ac_init_version=: ;;
+
+  -with-* | --with-*)
+    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
+    # Reject names that are not valid shell variable names.
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+      as_fn_error $? "invalid package name: $ac_useropt"
+    ac_useropt_orig=$ac_useropt
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+    case $ac_user_opts in
+      *"
+"with_$ac_useropt"
+"*) ;;
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
+        ac_unrecognized_sep=', ';;
+    esac
+    eval with_$ac_useropt=\$ac_optarg ;;
+
+  -without-* | --without-*)
+    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
+    # Reject names that are not valid shell variable names.
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+      as_fn_error $? "invalid package name: $ac_useropt"
+    ac_useropt_orig=$ac_useropt
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+    case $ac_user_opts in
+      *"
+"with_$ac_useropt"
+"*) ;;
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
+        ac_unrecognized_sep=', ';;
+    esac
+    eval with_$ac_useropt=no ;;
+
+  --x)
+    # Obsolete; use --with-x.
+    with_x=yes ;;
+
+  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
+  | --x-incl | --x-inc | --x-in | --x-i)
+    ac_prev=x_includes ;;
+  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
+  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
+    x_includes=$ac_optarg ;;
+
+  -x-libraries | --x-libraries | --x-librarie | --x-librari \
+  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
+    ac_prev=x_libraries ;;
+  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
+  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
+    x_libraries=$ac_optarg ;;
+
+  -*) as_fn_error $? "unrecognized option: \`$ac_option'
+Try \`$0 --help' for more information"
+    ;;
+
+  *=*)
+    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
+    # Reject names that are not valid shell variable names.
+    case $ac_envvar in #(
+      '' | [0-9]* | *[!_$as_cr_alnum]* )
+      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
+    esac
+    eval $ac_envvar=\$ac_optarg
+    export $ac_envvar ;;
+
+  *)
+    # FIXME: should be removed in autoconf 3.0.
+    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
+    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
+      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
+    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
+    ;;
+
+  esac
+done
+
+if test -n "$ac_prev"; then
+  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
+  as_fn_error $? "missing argument to $ac_option"
+fi
+
+if test -n "$ac_unrecognized_opts"; then
+  case $enable_option_checking in
+    no) ;;
+    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
+    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
+  esac
+fi
+
+# Check all directory arguments for consistency.
+for ac_var in  exec_prefix prefix bindir sbindir libexecdir datarootdir \
+               datadir sysconfdir sharedstatedir localstatedir includedir \
+               oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
+               libdir localedir mandir
+do
+  eval ac_val=\$$ac_var
+  # Remove trailing slashes.
+  case $ac_val in
+    */ )
+      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
+      eval $ac_var=\$ac_val;;
+  esac
+  # Be sure to have absolute directory names.
+  case $ac_val in
+    [\\/$]* | ?:[\\/]* )  continue;;
+    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
+  esac
+  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
+done
+
+# There might be people who depend on the old broken behavior: `$host'
+# used to hold the argument of --host etc.
+# FIXME: To remove some day.
+build=$build_alias
+host=$host_alias
+target=$target_alias
+
+# FIXME: To remove some day.
+if test "x$host_alias" != x; then
+  if test "x$build_alias" = x; then
+    cross_compiling=maybe
+  elif test "x$build_alias" != "x$host_alias"; then
+    cross_compiling=yes
+  fi
+fi
+
+ac_tool_prefix=
+test -n "$host_alias" && ac_tool_prefix=$host_alias-
+
+test "$silent" = yes && exec 6>/dev/null
+
+
+ac_pwd=`pwd` && test -n "$ac_pwd" &&
+ac_ls_di=`ls -di .` &&
+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
+  as_fn_error $? "working directory cannot be determined"
+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
+  as_fn_error $? "pwd does not report name of working directory"
+
+
+# Find the source files, if location was not specified.
+if test -z "$srcdir"; then
+  ac_srcdir_defaulted=yes
+  # Try the directory containing this script, then the parent directory.
+  ac_confdir=`$as_dirname -- "$as_myself" ||
+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+        X"$as_myself" : 'X\(//\)[^/]' \| \
+        X"$as_myself" : 'X\(//\)$' \| \
+        X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_myself" |
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)[^/].*/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\).*/{
+           s//\1/
+           q
+         }
+         s/.*/./; q'`
+  srcdir=$ac_confdir
+  if test ! -r "$srcdir/$ac_unique_file"; then
+    srcdir=..
+  fi
+else
+  ac_srcdir_defaulted=no
+fi
+if test ! -r "$srcdir/$ac_unique_file"; then
+  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
+  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
+fi
+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
+ac_abs_confdir=`(
+       cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
+       pwd)`
+# When building in place, set srcdir=.
+if test "$ac_abs_confdir" = "$ac_pwd"; then
+  srcdir=.
+fi
+# Remove unnecessary trailing slashes from srcdir.
+# Double slashes in file names in object file debugging info
+# mess up M-x gdb in Emacs.
+case $srcdir in
+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
+esac
+for ac_var in $ac_precious_vars; do
+  eval ac_env_${ac_var}_set=\${${ac_var}+set}
+  eval ac_env_${ac_var}_value=\$${ac_var}
+  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
+  eval ac_cv_env_${ac_var}_value=\$${ac_var}
+done
+
+#
+# Report the --help message.
+#
+if test "$ac_init_help" = "long"; then
+  # Omit some internal or obsolete options to make the list less imposing.
+  # This message is too long to be a string in the A/UX 3.1 sh.
+  cat <<_ACEOF
+\`configure' configures libcoap 4.1.1 to adapt to many kinds of systems.
+
+Usage: $0 [OPTION]... [VAR=VALUE]...
+
+To assign environment variables (e.g., CC, CFLAGS...), specify them as
+VAR=VALUE.  See below for descriptions of some of the useful variables.
+
+Defaults for the options are specified in brackets.
+
+Configuration:
+  -h, --help              display this help and exit
+      --help=short        display options specific to this package
+      --help=recursive    display the short help of all the included packages
+  -V, --version           display version information and exit
+  -q, --quiet, --silent   do not print \`checking ...' messages
+      --cache-file=FILE   cache test results in FILE [disabled]
+  -C, --config-cache      alias for \`--cache-file=config.cache'
+  -n, --no-create         do not create output files
+      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
+
+Installation directories:
+  --prefix=PREFIX         install architecture-independent files in PREFIX
+                          [$ac_default_prefix]
+  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
+                          [PREFIX]
+
+By default, \`make install' will install all the files in
+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
+for instance \`--prefix=\$HOME'.
+
+For better control, use the options below.
+
+Fine tuning of the installation directories:
+  --bindir=DIR            user executables [EPREFIX/bin]
+  --sbindir=DIR           system admin executables [EPREFIX/sbin]
+  --libexecdir=DIR        program executables [EPREFIX/libexec]
+  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
+  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
+  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
+  --libdir=DIR            object code libraries [EPREFIX/lib]
+  --includedir=DIR        C header files [PREFIX/include]
+  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
+  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
+  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
+  --infodir=DIR           info documentation [DATAROOTDIR/info]
+  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
+  --mandir=DIR            man documentation [DATAROOTDIR/man]
+  --docdir=DIR            documentation root [DATAROOTDIR/doc/libcoap]
+  --htmldir=DIR           html documentation [DOCDIR]
+  --dvidir=DIR            dvi documentation [DOCDIR]
+  --pdfdir=DIR            pdf documentation [DOCDIR]
+  --psdir=DIR             ps documentation [DOCDIR]
+_ACEOF
+
+  cat <<\_ACEOF
+_ACEOF
+fi
+
+if test -n "$ac_init_help"; then
+  case $ac_init_help in
+     short | recursive ) echo "Configuration of libcoap 4.1.1:";;
+   esac
+  cat <<\_ACEOF
+
+Optional Packages:
+  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
+  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
+  --with-contiki          build libcoap for the Contiki OS
+  --without-debug         disable all debug output and assertions
+  --without-async         disable handling of asynchronous transactions and
+                          observe
+  --without-block         disable block transfer
+  --without-observe       disable resource observation
+  --without-query-filter  disable support for filters on /.well-known/core
+  --with-tests            enable unit tests (requires cunit)
+  --with-shared           build shared library
+
+Some influential environment variables:
+  CC          C compiler command
+  CFLAGS      C compiler flags
+  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
+              nonstandard directory <lib dir>
+  LIBS        libraries to pass to the linker, e.g. -l<library>
+  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
+              you have headers in a nonstandard directory <include dir>
+  CPP         C preprocessor
+
+Use these variables to override the choices made by `configure' or to help
+it to find libraries and programs with nonstandard names/locations.
+
+Report bugs to the package provider.
+_ACEOF
+ac_status=$?
+fi
+
+if test "$ac_init_help" = "recursive"; then
+  # If there are subdirs, report their specific --help.
+  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
+    test -d "$ac_dir" ||
+      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
+      continue
+    ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
+  # A ".." for each directory in $ac_dir_suffix.
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+  case $ac_top_builddir_sub in
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+  esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+  .)  # We are building in place.
+    ac_srcdir=.
+    ac_top_srcdir=$ac_top_builddir_sub
+    ac_abs_top_srcdir=$ac_pwd ;;
+  [\\/]* | ?:[\\/]* )  # Absolute name.
+    ac_srcdir=$srcdir$ac_dir_suffix;
+    ac_top_srcdir=$srcdir
+    ac_abs_top_srcdir=$srcdir ;;
+  *) # Relative name.
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+    cd "$ac_dir" || { ac_status=$?; continue; }
+    # Check for guested configure.
+    if test -f "$ac_srcdir/configure.gnu"; then
+      echo &&
+      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
+    elif test -f "$ac_srcdir/configure"; then
+      echo &&
+      $SHELL "$ac_srcdir/configure" --help=recursive
+    else
+      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
+    fi || ac_status=$?
+    cd "$ac_pwd" || { ac_status=$?; break; }
+  done
+fi
+
+test -n "$ac_init_help" && exit $ac_status
+if $ac_init_version; then
+  cat <<\_ACEOF
+libcoap configure 4.1.1
+generated by GNU Autoconf 2.69
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+This configure script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it.
+_ACEOF
+  exit
+fi
+
+## ------------------------ ##
+## Autoconf initialization. ##
+## ------------------------ ##
+
+# ac_fn_c_try_compile LINENO
+# --------------------------
+# Try to compile conftest.$ac_ext, and return whether this succeeded.
+ac_fn_c_try_compile ()
+{
+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+  rm -f conftest.$ac_objext
+  if { { ac_try="$ac_compile"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_compile") 2>conftest.err
+  ac_status=$?
+  if test -s conftest.err; then
+    grep -v '^ *+' conftest.err >conftest.er1
+    cat conftest.er1 >&5
+    mv -f conftest.er1 conftest.err
+  fi
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; } && {
+        test -z "$ac_c_werror_flag" ||
+        test ! -s conftest.err
+       } && test -s conftest.$ac_objext; then :
+  ac_retval=0
+else
+  $as_echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+       ac_retval=1
+fi
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  as_fn_set_status $ac_retval
+
+} # ac_fn_c_try_compile
+
+# ac_fn_c_try_run LINENO
+# ----------------------
+# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
+# that executables *can* be run.
+ac_fn_c_try_run ()
+{
+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+  if { { ac_try="$ac_link"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_link") 2>&5
+  ac_status=$?
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
+  { { case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_try") 2>&5
+  ac_status=$?
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; }; then :
+  ac_retval=0
+else
+  $as_echo "$as_me: program exited with status $ac_status" >&5
+       $as_echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+       ac_retval=$ac_status
+fi
+  rm -rf conftest.dSYM conftest_ipa8_conftest.oo
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  as_fn_set_status $ac_retval
+
+} # ac_fn_c_try_run
+
+# ac_fn_c_try_cpp LINENO
+# ----------------------
+# Try to preprocess conftest.$ac_ext, and return whether this succeeded.
+ac_fn_c_try_cpp ()
+{
+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+  if { { ac_try="$ac_cpp conftest.$ac_ext"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
+  ac_status=$?
+  if test -s conftest.err; then
+    grep -v '^ *+' conftest.err >conftest.er1
+    cat conftest.er1 >&5
+    mv -f conftest.er1 conftest.err
+  fi
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; } > conftest.i && {
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
+        test ! -s conftest.err
+       }; then :
+  ac_retval=0
+else
+  $as_echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+    ac_retval=1
+fi
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  as_fn_set_status $ac_retval
+
+} # ac_fn_c_try_cpp
+
+# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES
+# -------------------------------------------------------
+# Tests whether HEADER exists and can be compiled using the include files in
+# INCLUDES, setting the cache variable VAR accordingly.
+ac_fn_c_check_header_compile ()
+{
+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+$as_echo_n "checking for $2... " >&6; }
+if eval \${$3+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+$4
+#include <$2>
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  eval "$3=yes"
+else
+  eval "$3=no"
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+fi
+eval ac_res=\$$3
+              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+
+} # ac_fn_c_check_header_compile
+
+# ac_fn_c_try_link LINENO
+# -----------------------
+# Try to link conftest.$ac_ext, and return whether this succeeded.
+ac_fn_c_try_link ()
+{
+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+  rm -f conftest.$ac_objext conftest$ac_exeext
+  if { { ac_try="$ac_link"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_link") 2>conftest.err
+  ac_status=$?
+  if test -s conftest.err; then
+    grep -v '^ *+' conftest.err >conftest.er1
+    cat conftest.er1 >&5
+    mv -f conftest.er1 conftest.err
+  fi
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; } && {
+        test -z "$ac_c_werror_flag" ||
+        test ! -s conftest.err
+       } && test -s conftest$ac_exeext && {
+        test "$cross_compiling" = yes ||
+        test -x conftest$ac_exeext
+       }; then :
+  ac_retval=0
+else
+  $as_echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+       ac_retval=1
+fi
+  # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
+  # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
+  # interfere with the next link command; also delete a directory that is
+  # left behind by Apple's compiler.  We do this before executing the actions.
+  rm -rf conftest.dSYM conftest_ipa8_conftest.oo
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  as_fn_set_status $ac_retval
+
+} # ac_fn_c_try_link
+
+# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
+# -------------------------------------------------------
+# Tests whether HEADER exists, giving a warning if it cannot be compiled using
+# the include files in INCLUDES and setting the cache variable VAR
+# accordingly.
+ac_fn_c_check_header_mongrel ()
+{
+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+  if eval \${$3+:} false; then :
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+$as_echo_n "checking for $2... " >&6; }
+if eval \${$3+:} false; then :
+  $as_echo_n "(cached) " >&6
+fi
+eval ac_res=\$$3
+              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+else
+  # Is the header compilable?
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
+$as_echo_n "checking $2 usability... " >&6; }
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+$4
+#include <$2>
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  ac_header_compiler=yes
+else
+  ac_header_compiler=no
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
+$as_echo "$ac_header_compiler" >&6; }
+
+# Is the header present?
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
+$as_echo_n "checking $2 presence... " >&6; }
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <$2>
+_ACEOF
+if ac_fn_c_try_cpp "$LINENO"; then :
+  ac_header_preproc=yes
+else
+  ac_header_preproc=no
+fi
+rm -f conftest.err conftest.i conftest.$ac_ext
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
+$as_echo "$ac_header_preproc" >&6; }
+
+# So?  What about this header?
+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
+  yes:no: )
+    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
+$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
+    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
+$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
+    ;;
+  no:yes:* )
+    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
+$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
+    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2:     check for missing prerequisite headers?" >&5
+$as_echo "$as_me: WARNING: $2:     check for missing prerequisite headers?" >&2;}
+    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
+$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
+    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2:     section \"Present But Cannot Be Compiled\"" >&5
+$as_echo "$as_me: WARNING: $2:     section \"Present But Cannot Be Compiled\"" >&2;}
+    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
+$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
+    ;;
+esac
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+$as_echo_n "checking for $2... " >&6; }
+if eval \${$3+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  eval "$3=\$ac_header_compiler"
+fi
+eval ac_res=\$$3
+              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+fi
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+
+} # ac_fn_c_check_header_mongrel
+
+# ac_fn_c_check_type LINENO TYPE VAR INCLUDES
+# -------------------------------------------
+# Tests whether TYPE exists after having included INCLUDES, setting cache
+# variable VAR accordingly.
+ac_fn_c_check_type ()
+{
+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+$as_echo_n "checking for $2... " >&6; }
+if eval \${$3+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  eval "$3=no"
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+$4
+int
+main ()
+{
+if (sizeof ($2))
+        return 0;
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+$4
+int
+main ()
+{
+if (sizeof (($2)))
+           return 0;
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+
+else
+  eval "$3=yes"
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+fi
+eval ac_res=\$$3
+              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+
+} # ac_fn_c_check_type
+
+# ac_fn_c_check_func LINENO FUNC VAR
+# ----------------------------------
+# Tests whether FUNC exists, setting the cache variable VAR accordingly
+ac_fn_c_check_func ()
+{
+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+$as_echo_n "checking for $2... " >&6; }
+if eval \${$3+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+/* Define $2 to an innocuous variant, in case <limits.h> declares $2.
+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+#define $2 innocuous_$2
+
+/* System header to define __stub macros and hopefully few prototypes,
+    which can conflict with char $2 (); below.
+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+    <limits.h> exists even on freestanding compilers.  */
+
+#ifdef __STDC__
+# include <limits.h>
+#else
+# include <assert.h>
+#endif
+
+#undef $2
+
+/* Override any GCC internal prototype to avoid an error.
+   Use char because int might match the return type of a GCC
+   builtin and then its argument prototype would still apply.  */
+#ifdef __cplusplus
+extern "C"
+#endif
+char $2 ();
+/* The GNU C library defines this for functions which it implements
+    to always fail with ENOSYS.  Some functions are actually named
+    something starting with __ and the normal name is an alias.  */
+#if defined __stub_$2 || defined __stub___$2
+choke me
+#endif
+
+int
+main ()
+{
+return $2 ();
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+  eval "$3=yes"
+else
+  eval "$3=no"
+fi
+rm -f core conftest.err conftest.$ac_objext \
+    conftest$ac_exeext conftest.$ac_ext
+fi
+eval ac_res=\$$3
+              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+
+} # ac_fn_c_check_func
+cat >config.log <<_ACEOF
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+
+It was created by libcoap $as_me 4.1.1, which was
+generated by GNU Autoconf 2.69.  Invocation command line was
+
+  $ $0 $@
+
+_ACEOF
+exec 5>>config.log
+{
+cat <<_ASUNAME
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
+uname -m = `(uname -m) 2>/dev/null || echo unknown`
+uname -r = `(uname -r) 2>/dev/null || echo unknown`
+uname -s = `(uname -s) 2>/dev/null || echo unknown`
+uname -v = `(uname -v) 2>/dev/null || echo unknown`
+
+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
+/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
+
+/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
+/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
+/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
+/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
+/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
+/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
+
+_ASUNAME
+
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    $as_echo "PATH: $as_dir"
+  done
+IFS=$as_save_IFS
+
+} >&5
+
+cat >&5 <<_ACEOF
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+_ACEOF
+
+
+# Keep a trace of the command line.
+# Strip out --no-create and --no-recursion so they do not pile up.
+# Strip out --silent because we don't want to record it for future runs.
+# Also quote any args containing shell meta-characters.
+# Make two passes to allow for proper duplicate-argument suppression.
+ac_configure_args=
+ac_configure_args0=
+ac_configure_args1=
+ac_must_keep_next=false
+for ac_pass in 1 2
+do
+  for ac_arg
+  do
+    case $ac_arg in
+    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
+    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+    | -silent | --silent | --silen | --sile | --sil)
+      continue ;;
+    *\'*)
+      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
+    esac
+    case $ac_pass in
+    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
+    2)
+      as_fn_append ac_configure_args1 " '$ac_arg'"
+      if test $ac_must_keep_next = true; then
+       ac_must_keep_next=false # Got value, back to normal.
+      else
+       case $ac_arg in
+         *=* | --config-cache | -C | -disable-* | --disable-* \
+         | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
+         | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
+         | -with-* | --with-* | -without-* | --without-* | --x)
+           case "$ac_configure_args0 " in
+             "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
+           esac
+           ;;
+         -* ) ac_must_keep_next=true ;;
+       esac
+      fi
+      as_fn_append ac_configure_args " '$ac_arg'"
+      ;;
+    esac
+  done
+done
+{ ac_configure_args0=; unset ac_configure_args0;}
+{ ac_configure_args1=; unset ac_configure_args1;}
+
+# When interrupted or exit'd, cleanup temporary files, and complete
+# config.log.  We remove comments because anyway the quotes in there
+# would cause problems or look ugly.
+# WARNING: Use '\'' to represent an apostrophe within the trap.
+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
+trap 'exit_status=$?
+  # Save into config.log some information that might help in debugging.
+  {
+    echo
+
+    $as_echo "## ---------------- ##
+## Cache variables. ##
+## ---------------- ##"
+    echo
+    # The following way of writing the cache mishandles newlines in values,
+(
+  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
+    eval ac_val=\$$ac_var
+    case $ac_val in #(
+    *${as_nl}*)
+      case $ac_var in #(
+      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+      esac
+      case $ac_var in #(
+      _ | IFS | as_nl) ;; #(
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
+      *) { eval $ac_var=; unset $ac_var;} ;;
+      esac ;;
+    esac
+  done
+  (set) 2>&1 |
+    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
+    *${as_nl}ac_space=\ *)
+      sed -n \
+       "s/'\''/'\''\\\\'\'''\''/g;
+         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
+      ;; #(
+    *)
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+      ;;
+    esac |
+    sort
+)
+    echo
+
+    $as_echo "## ----------------- ##
+## Output variables. ##
+## ----------------- ##"
+    echo
+    for ac_var in $ac_subst_vars
+    do
+      eval ac_val=\$$ac_var
+      case $ac_val in
+      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+      esac
+      $as_echo "$ac_var='\''$ac_val'\''"
+    done | sort
+    echo
+
+    if test -n "$ac_subst_files"; then
+      $as_echo "## ------------------- ##
+## File substitutions. ##
+## ------------------- ##"
+      echo
+      for ac_var in $ac_subst_files
+      do
+       eval ac_val=\$$ac_var
+       case $ac_val in
+       *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+       esac
+       $as_echo "$ac_var='\''$ac_val'\''"
+      done | sort
+      echo
+    fi
+
+    if test -s confdefs.h; then
+      $as_echo "## ----------- ##
+## confdefs.h. ##
+## ----------- ##"
+      echo
+      cat confdefs.h
+      echo
+    fi
+    test "$ac_signal" != 0 &&
+      $as_echo "$as_me: caught signal $ac_signal"
+    $as_echo "$as_me: exit $exit_status"
+  } >&5
+  rm -f core *.core core.conftest.* &&
+    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
+    exit $exit_status
+' 0
+for ac_signal in 1 2 13 15; do
+  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
+done
+ac_signal=0
+
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
+rm -f -r conftest* confdefs.h
+
+$as_echo "/* confdefs.h */" > confdefs.h
+
+# Predefined preprocessor variables.
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_NAME "$PACKAGE_NAME"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_VERSION "$PACKAGE_VERSION"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_STRING "$PACKAGE_STRING"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_URL "$PACKAGE_URL"
+_ACEOF
+
+
+# Let the site file select an alternate cache file if it wants to.
+# Prefer an explicitly selected file to automatically selected ones.
+ac_site_file1=NONE
+ac_site_file2=NONE
+if test -n "$CONFIG_SITE"; then
+  # We do not want a PATH search for config.site.
+  case $CONFIG_SITE in #((
+    -*)  ac_site_file1=./$CONFIG_SITE;;
+    */*) ac_site_file1=$CONFIG_SITE;;
+    *)   ac_site_file1=./$CONFIG_SITE;;
+  esac
+elif test "x$prefix" != xNONE; then
+  ac_site_file1=$prefix/share/config.site
+  ac_site_file2=$prefix/etc/config.site
+else
+  ac_site_file1=$ac_default_prefix/share/config.site
+  ac_site_file2=$ac_default_prefix/etc/config.site
+fi
+for ac_site_file in "$ac_site_file1" "$ac_site_file2"
+do
+  test "x$ac_site_file" = xNONE && continue
+  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
+    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
+$as_echo "$as_me: loading site script $ac_site_file" >&6;}
+    sed 's/^/| /' "$ac_site_file" >&5
+    . "$ac_site_file" \
+      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "failed to load site script $ac_site_file
+See \`config.log' for more details" "$LINENO" 5; }
+  fi
+done
+
+if test -r "$cache_file"; then
+  # Some versions of bash will fail to source /dev/null (special files
+  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
+  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
+    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
+$as_echo "$as_me: loading cache $cache_file" >&6;}
+    case $cache_file in
+      [\\/]* | ?:[\\/]* ) . "$cache_file";;
+      *)                      . "./$cache_file";;
+    esac
+  fi
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
+$as_echo "$as_me: creating cache $cache_file" >&6;}
+  >$cache_file
+fi
+
+# Check that the precious variables saved in the cache have kept the same
+# value.
+ac_cache_corrupted=false
+for ac_var in $ac_precious_vars; do
+  eval ac_old_set=\$ac_cv_env_${ac_var}_set
+  eval ac_new_set=\$ac_env_${ac_var}_set
+  eval ac_old_val=\$ac_cv_env_${ac_var}_value
+  eval ac_new_val=\$ac_env_${ac_var}_value
+  case $ac_old_set,$ac_new_set in
+    set,)
+      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
+      ac_cache_corrupted=: ;;
+    ,set)
+      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
+      ac_cache_corrupted=: ;;
+    ,);;
+    *)
+      if test "x$ac_old_val" != "x$ac_new_val"; then
+       # differences in whitespace do not lead to failure.
+       ac_old_val_w=`echo x $ac_old_val`
+       ac_new_val_w=`echo x $ac_new_val`
+       if test "$ac_old_val_w" != "$ac_new_val_w"; then
+         { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
+         ac_cache_corrupted=:
+       else
+         { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
+         eval $ac_var=\$ac_old_val
+       fi
+       { $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
+$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
+       { $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
+$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
+      fi;;
+  esac
+  # Pass precious variables to config.status.
+  if test "$ac_new_set" = set; then
+    case $ac_new_val in
+    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
+    *) ac_arg=$ac_var=$ac_new_val ;;
+    esac
+    case " $ac_configure_args " in
+      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
+      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
+    esac
+  fi
+done
+if $ac_cache_corrupted; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
+  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
+fi
+## -------------------- ##
+## Main body of script. ##
+## -------------------- ##
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
+
+
+# First check for Contiki build to quit configure before any other test
+
+# Check whether --with-contiki was given.
+if test "${with_contiki+set}" = set; then :
+  withval=$with_contiki; cp -p Makefile.contiki Makefile
+   cp -p config.h.contiki config.h
+   { $as_echo "$as_me:${as_lineno-$LINENO}: Contiki build prepared" >&5
+$as_echo "$as_me: Contiki build prepared" >&6;}
+   exit 0
+fi
+
+
+# Checks for programs.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
+$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
+set x ${MAKE-make}
+ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  cat >conftest.make <<\_ACEOF
+SHELL = /bin/sh
+all:
+       @echo '@@@%%%=$(MAKE)=@@@%%%'
+_ACEOF
+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
+case `${MAKE-make} -f conftest.make 2>/dev/null` in
+  *@@@%%%=?*=@@@%%%*)
+    eval ac_cv_prog_make_${ac_make}_set=yes;;
+  *)
+    eval ac_cv_prog_make_${ac_make}_set=no;;
+esac
+rm -f conftest.make
+fi
+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+  SET_MAKE=
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+  SET_MAKE="MAKE=${MAKE-make}"
+fi
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+if test -n "$ac_tool_prefix"; then
+  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
+set dummy ${ac_tool_prefix}gcc; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_CC+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if test -n "$CC"; then
+  ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_prog_CC="${ac_tool_prefix}gcc"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+fi
+fi
+CC=$ac_cv_prog_CC
+if test -n "$CC"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+$as_echo "$CC" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+fi
+if test -z "$ac_cv_prog_CC"; then
+  ac_ct_CC=$CC
+  # Extract the first word of "gcc", so it can be a program name with args.
+set dummy gcc; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_ac_ct_CC+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if test -n "$ac_ct_CC"; then
+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_prog_ac_ct_CC="gcc"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+fi
+fi
+ac_ct_CC=$ac_cv_prog_ac_ct_CC
+if test -n "$ac_ct_CC"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
+$as_echo "$ac_ct_CC" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+  if test "x$ac_ct_CC" = x; then
+    CC=""
+  else
+    case $cross_compiling:$ac_tool_warned in
+yes:)
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+ac_tool_warned=yes ;;
+esac
+    CC=$ac_ct_CC
+  fi
+else
+  CC="$ac_cv_prog_CC"
+fi
+
+if test -z "$CC"; then
+          if test -n "$ac_tool_prefix"; then
+    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
+set dummy ${ac_tool_prefix}cc; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_CC+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if test -n "$CC"; then
+  ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_prog_CC="${ac_tool_prefix}cc"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+fi
+fi
+CC=$ac_cv_prog_CC
+if test -n "$CC"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+$as_echo "$CC" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+  fi
+fi
+if test -z "$CC"; then
+  # Extract the first word of "cc", so it can be a program name with args.
+set dummy cc; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_CC+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if test -n "$CC"; then
+  ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+  ac_prog_rejected=no
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
+       ac_prog_rejected=yes
+       continue
+     fi
+    ac_cv_prog_CC="cc"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+if test $ac_prog_rejected = yes; then
+  # We found a bogon in the path, so make sure we never use it.
+  set dummy $ac_cv_prog_CC
+  shift
+  if test $# != 0; then
+    # We chose a different compiler from the bogus one.
+    # However, it has the same basename, so the bogon will be chosen
+    # first if we set CC to just the basename; use the full file name.
+    shift
+    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
+  fi
+fi
+fi
+fi
+CC=$ac_cv_prog_CC
+if test -n "$CC"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+$as_echo "$CC" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+fi
+if test -z "$CC"; then
+  if test -n "$ac_tool_prefix"; then
+  for ac_prog in cl.exe
+  do
+    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
+set dummy $ac_tool_prefix$ac_prog; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_CC+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if test -n "$CC"; then
+  ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+fi
+fi
+CC=$ac_cv_prog_CC
+if test -n "$CC"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+$as_echo "$CC" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+    test -n "$CC" && break
+  done
+fi
+if test -z "$CC"; then
+  ac_ct_CC=$CC
+  for ac_prog in cl.exe
+do
+  # Extract the first word of "$ac_prog", so it can be a program name with args.
+set dummy $ac_prog; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_ac_ct_CC+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if test -n "$ac_ct_CC"; then
+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_prog_ac_ct_CC="$ac_prog"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+fi
+fi
+ac_ct_CC=$ac_cv_prog_ac_ct_CC
+if test -n "$ac_ct_CC"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
+$as_echo "$ac_ct_CC" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+  test -n "$ac_ct_CC" && break
+done
+
+  if test "x$ac_ct_CC" = x; then
+    CC=""
+  else
+    case $cross_compiling:$ac_tool_warned in
+yes:)
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+ac_tool_warned=yes ;;
+esac
+    CC=$ac_ct_CC
+  fi
+fi
+
+fi
+
+
+test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "no acceptable C compiler found in \$PATH
+See \`config.log' for more details" "$LINENO" 5; }
+
+# Provide some information about the compiler.
+$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
+set X $ac_compile
+ac_compiler=$2
+for ac_option in --version -v -V -qversion; do
+  { { ac_try="$ac_compiler $ac_option >&5"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_compiler $ac_option >&5") 2>conftest.err
+  ac_status=$?
+  if test -s conftest.err; then
+    sed '10a\
+... rest of stderr output deleted ...
+         10q' conftest.err >conftest.er1
+    cat conftest.er1 >&5
+  fi
+  rm -f conftest.er1 conftest.err
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }
+done
+
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+ac_clean_files_save=$ac_clean_files
+ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
+# Try to create an executable without -o first, disregard a.out.
+# It will help us diagnose broken compilers, and finding out an intuition
+# of exeext.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
+$as_echo_n "checking whether the C compiler works... " >&6; }
+ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
+
+# The possible output files:
+ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
+
+ac_rmfiles=
+for ac_file in $ac_files
+do
+  case $ac_file in
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
+    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
+  esac
+done
+rm -f $ac_rmfiles
+
+if { { ac_try="$ac_link_default"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_link_default") 2>&5
+  ac_status=$?
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then :
+  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
+# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
+# in a Makefile.  We should not override ac_cv_exeext if it was cached,
+# so that the user can short-circuit this test for compilers unknown to
+# Autoconf.
+for ac_file in $ac_files ''
+do
+  test -f "$ac_file" || continue
+  case $ac_file in
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
+       ;;
+    [ab].out )
+       # We found the default executable, but exeext='' is most
+       # certainly right.
+       break;;
+    *.* )
+       if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
+       then :; else
+          ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+       fi
+       # We set ac_cv_exeext here because the later test for it is not
+       # safe: cross compilers may not add the suffix if given an `-o'
+       # argument, so we may need to know it at that point already.
+       # Even if this section looks crufty: it has the advantage of
+       # actually working.
+       break;;
+    * )
+       break;;
+  esac
+done
+test "$ac_cv_exeext" = no && ac_cv_exeext=
+
+else
+  ac_file=''
+fi
+if test -z "$ac_file"; then :
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+$as_echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error 77 "C compiler cannot create executables
+See \`config.log' for more details" "$LINENO" 5; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
+$as_echo_n "checking for C compiler default output file name... " >&6; }
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
+$as_echo "$ac_file" >&6; }
+ac_exeext=$ac_cv_exeext
+
+rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
+ac_clean_files=$ac_clean_files_save
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
+$as_echo_n "checking for suffix of executables... " >&6; }
+if { { ac_try="$ac_link"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_link") 2>&5
+  ac_status=$?
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then :
+  # If both `conftest.exe' and `conftest' are `present' (well, observable)
+# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
+# work properly (i.e., refer to `conftest.exe'), while it won't with
+# `rm'.
+for ac_file in conftest.exe conftest conftest.*; do
+  test -f "$ac_file" || continue
+  case $ac_file in
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
+    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+         break;;
+    * ) break;;
+  esac
+done
+else
+  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "cannot compute suffix of executables: cannot compile and link
+See \`config.log' for more details" "$LINENO" 5; }
+fi
+rm -f conftest conftest$ac_cv_exeext
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
+$as_echo "$ac_cv_exeext" >&6; }
+
+rm -f conftest.$ac_ext
+EXEEXT=$ac_cv_exeext
+ac_exeext=$EXEEXT
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <stdio.h>
+int
+main ()
+{
+FILE *f = fopen ("conftest.out", "w");
+ return ferror (f) || fclose (f) != 0;
+
+  ;
+  return 0;
+}
+_ACEOF
+ac_clean_files="$ac_clean_files conftest.out"
+# Check that the compiler produces executables we can run.  If not, either
+# the compiler is broken, or we cross compile.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
+$as_echo_n "checking whether we are cross compiling... " >&6; }
+if test "$cross_compiling" != yes; then
+  { { ac_try="$ac_link"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_link") 2>&5
+  ac_status=$?
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }
+  if { ac_try='./conftest$ac_cv_exeext'
+  { { case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_try") 2>&5
+  ac_status=$?
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; }; then
+    cross_compiling=no
+  else
+    if test "$cross_compiling" = maybe; then
+       cross_compiling=yes
+    else
+       { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "cannot run C compiled programs.
+If you meant to cross compile, use \`--host'.
+See \`config.log' for more details" "$LINENO" 5; }
+    fi
+  fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
+$as_echo "$cross_compiling" >&6; }
+
+rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
+ac_clean_files=$ac_clean_files_save
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
+$as_echo_n "checking for suffix of object files... " >&6; }
+if ${ac_cv_objext+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+rm -f conftest.o conftest.obj
+if { { ac_try="$ac_compile"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+  (eval "$ac_compile") 2>&5
+  ac_status=$?
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; then :
+  for ac_file in conftest.o conftest.obj conftest.*; do
+  test -f "$ac_file" || continue;
+  case $ac_file in
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
+    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
+       break;;
+  esac
+done
+else
+  $as_echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "cannot compute suffix of object files: cannot compile
+See \`config.log' for more details" "$LINENO" 5; }
+fi
+rm -f conftest.$ac_cv_objext conftest.$ac_ext
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
+$as_echo "$ac_cv_objext" >&6; }
+OBJEXT=$ac_cv_objext
+ac_objext=$OBJEXT
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
+$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
+if ${ac_cv_c_compiler_gnu+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+int
+main ()
+{
+#ifndef __GNUC__
+       choke me
+#endif
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  ac_compiler_gnu=yes
+else
+  ac_compiler_gnu=no
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+ac_cv_c_compiler_gnu=$ac_compiler_gnu
+
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
+$as_echo "$ac_cv_c_compiler_gnu" >&6; }
+if test $ac_compiler_gnu = yes; then
+  GCC=yes
+else
+  GCC=
+fi
+ac_test_CFLAGS=${CFLAGS+set}
+ac_save_CFLAGS=$CFLAGS
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
+$as_echo_n "checking whether $CC accepts -g... " >&6; }
+if ${ac_cv_prog_cc_g+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  ac_save_c_werror_flag=$ac_c_werror_flag
+   ac_c_werror_flag=yes
+   ac_cv_prog_cc_g=no
+   CFLAGS="-g"
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  ac_cv_prog_cc_g=yes
+else
+  CFLAGS=""
+      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+
+else
+  ac_c_werror_flag=$ac_save_c_werror_flag
+        CFLAGS="-g"
+        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  ac_cv_prog_cc_g=yes
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+   ac_c_werror_flag=$ac_save_c_werror_flag
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
+$as_echo "$ac_cv_prog_cc_g" >&6; }
+if test "$ac_test_CFLAGS" = set; then
+  CFLAGS=$ac_save_CFLAGS
+elif test $ac_cv_prog_cc_g = yes; then
+  if test "$GCC" = yes; then
+    CFLAGS="-g -O2"
+  else
+    CFLAGS="-g"
+  fi
+else
+  if test "$GCC" = yes; then
+    CFLAGS="-O2"
+  else
+    CFLAGS=
+  fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
+$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
+if ${ac_cv_prog_cc_c89+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  ac_cv_prog_cc_c89=no
+ac_save_CC=$CC
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <stdarg.h>
+#include <stdio.h>
+struct stat;
+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
+struct buf { int x; };
+FILE * (*rcsopen) (struct buf *, struct stat *, int);
+static char *e (p, i)
+     char **p;
+     int i;
+{
+  return p[i];
+}
+static char *f (char * (*g) (char **, int), char **p, ...)
+{
+  char *s;
+  va_list v;
+  va_start (v,p);
+  s = g (p, va_arg (v,int));
+  va_end (v);
+  return s;
+}
+
+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
+   function prototypes and stuff, but not '\xHH' hex character constants.
+   These don't provoke an error unfortunately, instead are silently treated
+   as 'x'.  The following induces an error, until -std is added to get
+   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
+   array size at least.  It's necessary to write '\x00'==0 to get something
+   that's true only with -std.  */
+int osf4_cc_array ['\x00' == 0 ? 1 : -1];
+
+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
+   inside strings and character constants.  */
+#define FOO(x) 'x'
+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
+
+int test (int i, double x);
+struct s1 {int (*f) (int a);};
+struct s2 {int (*f) (double a);};
+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
+int argc;
+char **argv;
+int
+main ()
+{
+return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
+  ;
+  return 0;
+}
+_ACEOF
+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
+       -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
+do
+  CC="$ac_save_CC $ac_arg"
+  if ac_fn_c_try_compile "$LINENO"; then :
+  ac_cv_prog_cc_c89=$ac_arg
+fi
+rm -f core conftest.err conftest.$ac_objext
+  test "x$ac_cv_prog_cc_c89" != "xno" && break
+done
+rm -f conftest.$ac_ext
+CC=$ac_save_CC
+
+fi
+# AC_CACHE_VAL
+case "x$ac_cv_prog_cc_c89" in
+  x)
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
+$as_echo "none needed" >&6; } ;;
+  xno)
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
+$as_echo "unsupported" >&6; } ;;
+  *)
+    CC="$CC $ac_cv_prog_cc_c89"
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
+$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
+esac
+if test "x$ac_cv_prog_cc_c89" != xno; then :
+
+fi
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+if test -n "$ac_tool_prefix"; then
+  # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
+set dummy ${ac_tool_prefix}ranlib; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_RANLIB+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if test -n "$RANLIB"; then
+  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+fi
+fi
+RANLIB=$ac_cv_prog_RANLIB
+if test -n "$RANLIB"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
+$as_echo "$RANLIB" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+fi
+if test -z "$ac_cv_prog_RANLIB"; then
+  ac_ct_RANLIB=$RANLIB
+  # Extract the first word of "ranlib", so it can be a program name with args.
+set dummy ranlib; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if test -n "$ac_ct_RANLIB"; then
+  ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_prog_ac_ct_RANLIB="ranlib"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+fi
+fi
+ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
+if test -n "$ac_ct_RANLIB"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
+$as_echo "$ac_ct_RANLIB" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+  if test "x$ac_ct_RANLIB" = x; then
+    RANLIB=":"
+  else
+    case $cross_compiling:$ac_tool_warned in
+yes:)
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+ac_tool_warned=yes ;;
+esac
+    RANLIB=$ac_ct_RANLIB
+  fi
+else
+  RANLIB="$ac_cv_prog_RANLIB"
+fi
+
+# Extract the first word of "doxygen", so it can be a program name with args.
+set dummy doxygen; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_DOXYGEN+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  case $DOXYGEN in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_DOXYGEN="$DOXYGEN" # Let the user override the test with a path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_path_DOXYGEN="$as_dir/$ac_word$ac_exec_ext"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  test -z "$ac_cv_path_DOXYGEN" && ac_cv_path_DOXYGEN=":"
+  ;;
+esac
+fi
+DOXYGEN=$ac_cv_path_DOXYGEN
+if test -n "$DOXYGEN"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DOXYGEN" >&5
+$as_echo "$DOXYGEN" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+# Extract the first word of "etags", so it can be a program name with args.
+set dummy etags; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_ETAGS+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  case $ETAGS in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_ETAGS="$ETAGS" # Let the user override the test with a path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_path_ETAGS="$as_dir/$ac_word$ac_exec_ext"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  test -z "$ac_cv_path_ETAGS" && ac_cv_path_ETAGS="/bin/false"
+  ;;
+esac
+fi
+ETAGS=$ac_cv_path_ETAGS
+if test -n "$ETAGS"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ETAGS" >&5
+$as_echo "$ETAGS" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
+$as_echo_n "checking how to run the C preprocessor... " >&6; }
+# On Suns, sometimes $CPP names a directory.
+if test -n "$CPP" && test -d "$CPP"; then
+  CPP=
+fi
+if test -z "$CPP"; then
+  if ${ac_cv_prog_CPP+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+      # Double quotes because CPP needs to be expanded
+    for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
+    do
+      ac_preproc_ok=false
+for ac_c_preproc_warn_flag in '' yes
+do
+  # Use a header file that comes with gcc, so configuring glibc
+  # with a fresh cross-compiler works.
+  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+  # <limits.h> exists even on freestanding compilers.
+  # On the NeXT, cc -E runs the code through the compiler's parser,
+  # not just through cpp. "Syntax error" is here to catch this case.
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#ifdef __STDC__
+# include <limits.h>
+#else
+# include <assert.h>
+#endif
+                    Syntax error
+_ACEOF
+if ac_fn_c_try_cpp "$LINENO"; then :
+
+else
+  # Broken: fails on valid input.
+continue
+fi
+rm -f conftest.err conftest.i conftest.$ac_ext
+
+  # OK, works on sane cases.  Now check whether nonexistent headers
+  # can be detected and how.
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <ac_nonexistent.h>
+_ACEOF
+if ac_fn_c_try_cpp "$LINENO"; then :
+  # Broken: success on invalid input.
+continue
+else
+  # Passes both tests.
+ac_preproc_ok=:
+break
+fi
+rm -f conftest.err conftest.i conftest.$ac_ext
+
+done
+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
+rm -f conftest.i conftest.err conftest.$ac_ext
+if $ac_preproc_ok; then :
+  break
+fi
+
+    done
+    ac_cv_prog_CPP=$CPP
+
+fi
+  CPP=$ac_cv_prog_CPP
+else
+  ac_cv_prog_CPP=$CPP
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
+$as_echo "$CPP" >&6; }
+ac_preproc_ok=false
+for ac_c_preproc_warn_flag in '' yes
+do
+  # Use a header file that comes with gcc, so configuring glibc
+  # with a fresh cross-compiler works.
+  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+  # <limits.h> exists even on freestanding compilers.
+  # On the NeXT, cc -E runs the code through the compiler's parser,
+  # not just through cpp. "Syntax error" is here to catch this case.
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#ifdef __STDC__
+# include <limits.h>
+#else
+# include <assert.h>
+#endif
+                    Syntax error
+_ACEOF
+if ac_fn_c_try_cpp "$LINENO"; then :
+
+else
+  # Broken: fails on valid input.
+continue
+fi
+rm -f conftest.err conftest.i conftest.$ac_ext
+
+  # OK, works on sane cases.  Now check whether nonexistent headers
+  # can be detected and how.
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <ac_nonexistent.h>
+_ACEOF
+if ac_fn_c_try_cpp "$LINENO"; then :
+  # Broken: success on invalid input.
+continue
+else
+  # Passes both tests.
+ac_preproc_ok=:
+break
+fi
+rm -f conftest.err conftest.i conftest.$ac_ext
+
+done
+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
+rm -f conftest.i conftest.err conftest.$ac_ext
+if $ac_preproc_ok; then :
+
+else
+  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
+See \`config.log' for more details" "$LINENO" 5; }
+fi
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
+$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
+if ${ac_cv_path_GREP+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if test -z "$GREP"; then
+  ac_path_GREP_found=false
+  # Loop through the user's path and test for each of PROGNAME-LIST
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_prog in grep ggrep; do
+    for ac_exec_ext in '' $ac_executable_extensions; do
+      ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
+      as_fn_executable_p "$ac_path_GREP" || continue
+# Check for GNU ac_path_GREP and select it if it is found.
+  # Check for GNU $ac_path_GREP
+case `"$ac_path_GREP" --version 2>&1` in
+*GNU*)
+  ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
+*)
+  ac_count=0
+  $as_echo_n 0123456789 >"conftest.in"
+  while :
+  do
+    cat "conftest.in" "conftest.in" >"conftest.tmp"
+    mv "conftest.tmp" "conftest.in"
+    cp "conftest.in" "conftest.nl"
+    $as_echo 'GREP' >> "conftest.nl"
+    "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
+    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
+    as_fn_arith $ac_count + 1 && ac_count=$as_val
+    if test $ac_count -gt ${ac_path_GREP_max-0}; then
+      # Best one so far, save it but keep looking for a better one
+      ac_cv_path_GREP="$ac_path_GREP"
+      ac_path_GREP_max=$ac_count
+    fi
+    # 10*(2^10) chars as input seems more than enough
+    test $ac_count -gt 10 && break
+  done
+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
+esac
+
+      $ac_path_GREP_found && break 3
+    done
+  done
+  done
+IFS=$as_save_IFS
+  if test -z "$ac_cv_path_GREP"; then
+    as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+  fi
+else
+  ac_cv_path_GREP=$GREP
+fi
+
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
+$as_echo "$ac_cv_path_GREP" >&6; }
+ GREP="$ac_cv_path_GREP"
+
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
+$as_echo_n "checking for egrep... " >&6; }
+if ${ac_cv_path_EGREP+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
+   then ac_cv_path_EGREP="$GREP -E"
+   else
+     if test -z "$EGREP"; then
+  ac_path_EGREP_found=false
+  # Loop through the user's path and test for each of PROGNAME-LIST
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_prog in egrep; do
+    for ac_exec_ext in '' $ac_executable_extensions; do
+      ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
+      as_fn_executable_p "$ac_path_EGREP" || continue
+# Check for GNU ac_path_EGREP and select it if it is found.
+  # Check for GNU $ac_path_EGREP
+case `"$ac_path_EGREP" --version 2>&1` in
+*GNU*)
+  ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
+*)
+  ac_count=0
+  $as_echo_n 0123456789 >"conftest.in"
+  while :
+  do
+    cat "conftest.in" "conftest.in" >"conftest.tmp"
+    mv "conftest.tmp" "conftest.in"
+    cp "conftest.in" "conftest.nl"
+    $as_echo 'EGREP' >> "conftest.nl"
+    "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
+    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
+    as_fn_arith $ac_count + 1 && ac_count=$as_val
+    if test $ac_count -gt ${ac_path_EGREP_max-0}; then
+      # Best one so far, save it but keep looking for a better one
+      ac_cv_path_EGREP="$ac_path_EGREP"
+      ac_path_EGREP_max=$ac_count
+    fi
+    # 10*(2^10) chars as input seems more than enough
+    test $ac_count -gt 10 && break
+  done
+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
+esac
+
+      $ac_path_EGREP_found && break 3
+    done
+  done
+  done
+IFS=$as_save_IFS
+  if test -z "$ac_cv_path_EGREP"; then
+    as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+  fi
+else
+  ac_cv_path_EGREP=$EGREP
+fi
+
+   fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
+$as_echo "$ac_cv_path_EGREP" >&6; }
+ EGREP="$ac_cv_path_EGREP"
+
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
+$as_echo_n "checking for ANSI C header files... " >&6; }
+if ${ac_cv_header_stdc+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <stdlib.h>
+#include <stdarg.h>
+#include <string.h>
+#include <float.h>
+
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  ac_cv_header_stdc=yes
+else
+  ac_cv_header_stdc=no
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+
+if test $ac_cv_header_stdc = yes; then
+  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <string.h>
+
+_ACEOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+  $EGREP "memchr" >/dev/null 2>&1; then :
+
+else
+  ac_cv_header_stdc=no
+fi
+rm -f conftest*
+
+fi
+
+if test $ac_cv_header_stdc = yes; then
+  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <stdlib.h>
+
+_ACEOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+  $EGREP "free" >/dev/null 2>&1; then :
+
+else
+  ac_cv_header_stdc=no
+fi
+rm -f conftest*
+
+fi
+
+if test $ac_cv_header_stdc = yes; then
+  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
+  if test "$cross_compiling" = yes; then :
+  :
+else
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <ctype.h>
+#include <stdlib.h>
+#if ((' ' & 0x0FF) == 0x020)
+# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
+# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
+#else
+# define ISLOWER(c) \
+                  (('a' <= (c) && (c) <= 'i') \
+                    || ('j' <= (c) && (c) <= 'r') \
+                    || ('s' <= (c) && (c) <= 'z'))
+# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
+#endif
+
+#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
+int
+main ()
+{
+  int i;
+  for (i = 0; i < 256; i++)
+    if (XOR (islower (i), ISLOWER (i))
+       || toupper (i) != TOUPPER (i))
+      return 2;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_run "$LINENO"; then :
+
+else
+  ac_cv_header_stdc=no
+fi
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
+  conftest.$ac_objext conftest.beam conftest.$ac_ext
+fi
+
+fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5
+$as_echo "$ac_cv_header_stdc" >&6; }
+if test $ac_cv_header_stdc = yes; then
+
+$as_echo "#define STDC_HEADERS 1" >>confdefs.h
+
+fi
+
+# On IRIX 5.3, sys/types and inttypes.h are conflicting.
+for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
+                 inttypes.h stdint.h unistd.h
+do :
+  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
+ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
+"
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
+  cat >>confdefs.h <<_ACEOF
+#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
+$as_echo_n "checking whether byte ordering is bigendian... " >&6; }
+if ${ac_cv_c_bigendian+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  ac_cv_c_bigendian=unknown
+    # See if we're dealing with a universal compiler.
+    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#ifndef __APPLE_CC__
+              not a universal capable compiler
+            #endif
+            typedef int dummy;
+
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+
+       # Check for potential -arch flags.  It is not universal unless
+       # there are at least two -arch flags with different values.
+       ac_arch=
+       ac_prev=
+       for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do
+        if test -n "$ac_prev"; then
+          case $ac_word in
+            i?86 | x86_64 | ppc | ppc64)
+              if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then
+                ac_arch=$ac_word
+              else
+                ac_cv_c_bigendian=universal
+                break
+              fi
+              ;;
+          esac
+          ac_prev=
+        elif test "x$ac_word" = "x-arch"; then
+          ac_prev=arch
+        fi
+       done
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+    if test $ac_cv_c_bigendian = unknown; then
+      # See if sys/param.h defines the BYTE_ORDER macro.
+      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <sys/types.h>
+            #include <sys/param.h>
+
+int
+main ()
+{
+#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \
+                    && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \
+                    && LITTLE_ENDIAN)
+             bogus endian macros
+            #endif
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  # It does; now see whether it defined to BIG_ENDIAN or not.
+        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <sys/types.h>
+               #include <sys/param.h>
+
+int
+main ()
+{
+#if BYTE_ORDER != BIG_ENDIAN
+                not big endian
+               #endif
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  ac_cv_c_bigendian=yes
+else
+  ac_cv_c_bigendian=no
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+    fi
+    if test $ac_cv_c_bigendian = unknown; then
+      # See if <limits.h> defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris).
+      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <limits.h>
+
+int
+main ()
+{
+#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN)
+             bogus endian macros
+            #endif
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  # It does; now see whether it defined to _BIG_ENDIAN or not.
+        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <limits.h>
+
+int
+main ()
+{
+#ifndef _BIG_ENDIAN
+                not big endian
+               #endif
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  ac_cv_c_bigendian=yes
+else
+  ac_cv_c_bigendian=no
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+    fi
+    if test $ac_cv_c_bigendian = unknown; then
+      # Compile a test program.
+      if test "$cross_compiling" = yes; then :
+  # Try to guess by grepping values from an object file.
+        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+short int ascii_mm[] =
+                 { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
+               short int ascii_ii[] =
+                 { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
+               int use_ascii (int i) {
+                 return ascii_mm[i] + ascii_ii[i];
+               }
+               short int ebcdic_ii[] =
+                 { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
+               short int ebcdic_mm[] =
+                 { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
+               int use_ebcdic (int i) {
+                 return ebcdic_mm[i] + ebcdic_ii[i];
+               }
+               extern int foo;
+
+int
+main ()
+{
+return use_ascii (foo) == use_ebcdic (foo);
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then
+             ac_cv_c_bigendian=yes
+           fi
+           if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
+             if test "$ac_cv_c_bigendian" = unknown; then
+               ac_cv_c_bigendian=no
+             else
+               # finding both strings is unlikely to happen, but who knows?
+               ac_cv_c_bigendian=unknown
+             fi
+           fi
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+else
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+$ac_includes_default
+int
+main ()
+{
+
+            /* Are we little or big endian?  From Harbison&Steele.  */
+            union
+            {
+              long int l;
+              char c[sizeof (long int)];
+            } u;
+            u.l = 1;
+            return u.c[sizeof (long int) - 1] == 1;
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_run "$LINENO"; then :
+  ac_cv_c_bigendian=no
+else
+  ac_cv_c_bigendian=yes
+fi
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
+  conftest.$ac_objext conftest.beam conftest.$ac_ext
+fi
+
+    fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5
+$as_echo "$ac_cv_c_bigendian" >&6; }
+ case $ac_cv_c_bigendian in #(
+   yes)
+     $as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h
+;; #(
+   no)
+      ;; #(
+   universal)
+
+$as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
+
+     ;; #(
+   *)
+     as_fn_error $? "unknown endianness
+ presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
+ esac
+
+
+# Checks for libraries.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for coap_new_pdu in -lcoap" >&5
+$as_echo_n "checking for coap_new_pdu in -lcoap... " >&6; }
+if ${ac_cv_lib_coap_coap_new_pdu+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  ac_check_lib_save_LIBS=$LIBS
+LIBS="-lcoap  $LIBS"
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+/* Override any GCC internal prototype to avoid an error.
+   Use char because int might match the return type of a GCC
+   builtin and then its argument prototype would still apply.  */
+#ifdef __cplusplus
+extern "C"
+#endif
+char coap_new_pdu ();
+int
+main ()
+{
+return coap_new_pdu ();
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+  ac_cv_lib_coap_coap_new_pdu=yes
+else
+  ac_cv_lib_coap_coap_new_pdu=no
+fi
+rm -f core conftest.err conftest.$ac_objext \
+    conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_coap_coap_new_pdu" >&5
+$as_echo "$ac_cv_lib_coap_coap_new_pdu" >&6; }
+if test "x$ac_cv_lib_coap_coap_new_pdu" = xyes; then :
+  cat >>confdefs.h <<_ACEOF
+#define HAVE_LIBCOAP 1
+_ACEOF
+
+  LIBS="-lcoap $LIBS"
+
+fi
+
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5
+$as_echo_n "checking for library containing gethostbyname... " >&6; }
+if ${ac_cv_search_gethostbyname+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+/* Override any GCC internal prototype to avoid an error.
+   Use char because int might match the return type of a GCC
+   builtin and then its argument prototype would still apply.  */
+#ifdef __cplusplus
+extern "C"
+#endif
+char gethostbyname ();
+int
+main ()
+{
+return gethostbyname ();
+  ;
+  return 0;
+}
+_ACEOF
+for ac_lib in '' nsl; do
+  if test -z "$ac_lib"; then
+    ac_res="none required"
+  else
+    ac_res=-l$ac_lib
+    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
+  fi
+  if ac_fn_c_try_link "$LINENO"; then :
+  ac_cv_search_gethostbyname=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+    conftest$ac_exeext
+  if ${ac_cv_search_gethostbyname+:} false; then :
+  break
+fi
+done
+if ${ac_cv_search_gethostbyname+:} false; then :
+
+else
+  ac_cv_search_gethostbyname=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gethostbyname" >&5
+$as_echo "$ac_cv_search_gethostbyname" >&6; }
+ac_res=$ac_cv_search_gethostbyname
+if test "$ac_res" != no; then :
+  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing socket" >&5
+$as_echo_n "checking for library containing socket... " >&6; }
+if ${ac_cv_search_socket+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+/* Override any GCC internal prototype to avoid an error.
+   Use char because int might match the return type of a GCC
+   builtin and then its argument prototype would still apply.  */
+#ifdef __cplusplus
+extern "C"
+#endif
+char socket ();
+int
+main ()
+{
+return socket ();
+  ;
+  return 0;
+}
+_ACEOF
+for ac_lib in '' socket; do
+  if test -z "$ac_lib"; then
+    ac_res="none required"
+  else
+    ac_res=-l$ac_lib
+    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
+  fi
+  if ac_fn_c_try_link "$LINENO"; then :
+  ac_cv_search_socket=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+    conftest$ac_exeext
+  if ${ac_cv_search_socket+:} false; then :
+  break
+fi
+done
+if ${ac_cv_search_socket+:} false; then :
+
+else
+  ac_cv_search_socket=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_socket" >&5
+$as_echo "$ac_cv_search_socket" >&6; }
+ac_res=$ac_cv_search_socket
+if test "$ac_res" != no; then :
+  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+fi
+
+
+# configuration options that may change compile flags
+
+# Check whether --with-debug was given.
+if test "${with_debug+set}" = set; then :
+  withval=$with_debug; CPPFLAGS="${CPPFLAGS} -DNDEBUG"
+fi
+
+
+
+# Check whether --with-async was given.
+if test "${with_async+set}" = set; then :
+  withval=$with_async; CPPFLAGS="${CPPFLAGS} -DWITHOUT_ASYNC"
+fi
+
+
+
+# Check whether --with-block was given.
+if test "${with_block+set}" = set; then :
+  withval=$with_block; CPPFLAGS="${CPPFLAGS} -DWITHOUT_BLOCK"
+fi
+
+
+
+# Check whether --with-observe was given.
+if test "${with_observe+set}" = set; then :
+  withval=$with_observe; CPPFLAGS="${CPPFLAGS} -DWITHOUT_OBSERVE"
+fi
+
+
+
+# Check whether --with-query-filter was given.
+if test "${with_query_filter+set}" = set; then :
+  withval=$with_query_filter; CPPFLAGS="${CPPFLAGS} -DWITHOUT_QUERY_FILTER"
+fi
+
+
+
+# Check whether --with-tests was given.
+if test "${with_tests+set}" = set; then :
+  withval=$with_tests; TESTS="tests"
+fi
+
+
+
+# Check whether --with-shared was given.
+if test "${with_shared+set}" = set; then :
+  withval=$with_shared; BUILD_SO="BUILD_SO=1"
+fi
+
+
+# disambiguate between autoconf generated setups and contiki / lwip setups
+# which use explicit config.h.* files
+CPPFLAGS="${CPPFLAGS} -DWITH_POSIX"
+
+# Checks for header files.
+for ac_header in assert.h arpa/inet.h limits.h netdb.h netinet/in.h stdlib.h string.h strings.h sys/socket.h sys/time.h time.h unistd.h sys/unistd.h syslog.h
+do :
+  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
+ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
+  cat >>confdefs.h <<_ACEOF
+#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+# Checks for typedefs, structures, and compiler characteristics.
+ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
+if test "x$ac_cv_type_size_t" = xyes; then :
+
+else
+
+cat >>confdefs.h <<_ACEOF
+#define size_t unsigned int
+_ACEOF
+
+fi
+
+ac_fn_c_check_type "$LINENO" "ssize_t" "ac_cv_type_ssize_t" "$ac_includes_default"
+if test "x$ac_cv_type_ssize_t" = xyes; then :
+
+else
+
+cat >>confdefs.h <<_ACEOF
+#define ssize_t int
+_ACEOF
+
+fi
+
+
+# Checks for library functions.
+for ac_header in stdlib.h
+do :
+  ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default"
+if test "x$ac_cv_header_stdlib_h" = xyes; then :
+  cat >>confdefs.h <<_ACEOF
+#define HAVE_STDLIB_H 1
+_ACEOF
+
+fi
+
+done
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5
+$as_echo_n "checking for GNU libc compatible malloc... " >&6; }
+if ${ac_cv_func_malloc_0_nonnull+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if test "$cross_compiling" = yes; then :
+  ac_cv_func_malloc_0_nonnull=no
+else
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#if defined STDC_HEADERS || defined HAVE_STDLIB_H
+# include <stdlib.h>
+#else
+char *malloc ();
+#endif
+
+int
+main ()
+{
+return ! malloc (0);
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_run "$LINENO"; then :
+  ac_cv_func_malloc_0_nonnull=yes
+else
+  ac_cv_func_malloc_0_nonnull=no
+fi
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
+  conftest.$ac_objext conftest.beam conftest.$ac_ext
+fi
+
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5
+$as_echo "$ac_cv_func_malloc_0_nonnull" >&6; }
+if test $ac_cv_func_malloc_0_nonnull = yes; then :
+
+$as_echo "#define HAVE_MALLOC 1" >>confdefs.h
+
+else
+  $as_echo "#define HAVE_MALLOC 0" >>confdefs.h
+
+   case " $LIBOBJS " in
+  *" malloc.$ac_objext "* ) ;;
+  *) LIBOBJS="$LIBOBJS malloc.$ac_objext"
+ ;;
+esac
+
+
+$as_echo "#define malloc rpl_malloc" >>confdefs.h
+
+fi
+
+
+for ac_func in memset select socket strcasecmp strrchr getaddrinfo strnlen
+do :
+  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
+  cat >>confdefs.h <<_ACEOF
+#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+done
+
+
+
+
+
+ac_config_headers="$ac_config_headers config.h"
+
+
+ac_config_files="$ac_config_files Makefile doc/Makefile doc/Doxyfile examples/Makefile tests/Makefile"
+
+cat >confcache <<\_ACEOF
+# This file is a shell script that caches the results of configure
+# tests run on this system so they can be shared between configure
+# scripts and configure runs, see configure's option --config-cache.
+# It is not useful on other systems.  If it contains results you don't
+# want to keep, you may remove or edit it.
+#
+# config.status only pays attention to the cache file if you give it
+# the --recheck option to rerun configure.
+#
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
+# following values.
+
+_ACEOF
+
+# The following way of writing the cache mishandles newlines in values,
+# but we know of no workaround that is simple, portable, and efficient.
+# So, we kill variables containing newlines.
+# Ultrix sh set writes to stderr and can't be redirected directly,
+# and sets the high bit in the cache file unless we assign to the vars.
+(
+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
+    eval ac_val=\$$ac_var
+    case $ac_val in #(
+    *${as_nl}*)
+      case $ac_var in #(
+      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+      esac
+      case $ac_var in #(
+      _ | IFS | as_nl) ;; #(
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
+      *) { eval $ac_var=; unset $ac_var;} ;;
+      esac ;;
+    esac
+  done
+
+  (set) 2>&1 |
+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
+    *${as_nl}ac_space=\ *)
+      # `set' does not quote correctly, so add quotes: double-quote
+      # substitution turns \\\\ into \\, and sed turns \\ into \.
+      sed -n \
+       "s/'/'\\\\''/g;
+         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
+      ;; #(
+    *)
+      # `set' quotes correctly as required by POSIX, so do not add quotes.
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+      ;;
+    esac |
+    sort
+) |
+  sed '
+     /^ac_cv_env_/b end
+     t clear
+     :clear
+     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
+     t end
+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
+     :end' >>confcache
+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
+  if test -w "$cache_file"; then
+    if test "x$cache_file" != "x/dev/null"; then
+      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
+$as_echo "$as_me: updating cache $cache_file" >&6;}
+      if test ! -f "$cache_file" || test -h "$cache_file"; then
+       cat confcache >"$cache_file"
+      else
+        case $cache_file in #(
+        */* | ?:*)
+         mv -f confcache "$cache_file"$$ &&
+         mv -f "$cache_file"$$ "$cache_file" ;; #(
+        *)
+         mv -f confcache "$cache_file" ;;
+       esac
+      fi
+    fi
+  else
+    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
+  fi
+fi
+rm -f confcache
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+# Let make expand exec_prefix.
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
+
+DEFS=-DHAVE_CONFIG_H
+
+ac_libobjs=
+ac_ltlibobjs=
+U=
+for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
+  # 1. Remove the extension, and $U if already installed.
+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
+  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
+  #    will be set to the directory where LIBOBJS objects are built.
+  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
+  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
+done
+LIBOBJS=$ac_libobjs
+
+LTLIBOBJS=$ac_ltlibobjs
+
+
+
+
+: "${CONFIG_STATUS=./config.status}"
+ac_write_fail=0
+ac_clean_files_save=$ac_clean_files
+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
+{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
+as_write_fail=0
+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
+#! $SHELL
+# Generated by $as_me.
+# Run this file to recreate the current configuration.
+# Compiler output produced by configure, useful for debugging
+# configure, is in config.log if it exists.
+
+debug=false
+ac_cs_recheck=false
+ac_cs_silent=false
+
+SHELL=\${CONFIG_SHELL-$SHELL}
+export SHELL
+_ASEOF
+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
+  emulate sh
+  NULLCMD=:
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+  # is contrary to our usage.  Disable this feature.
+  alias -g '${1+"$@"}'='"$@"'
+  setopt NO_GLOB_SUBST
+else
+  case `(set -o) 2>/dev/null` in #(
+  *posix*) :
+    set -o posix ;; #(
+  *) :
+     ;;
+esac
+fi
+
+
+as_nl='
+'
+export as_nl
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
+# Prefer a ksh shell builtin over an external printf program on Solaris,
+# but without wasting forks for bash or zsh.
+if test -z "$BASH_VERSION$ZSH_VERSION" \
+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
+  as_echo='print -r --'
+  as_echo_n='print -rn --'
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
+  as_echo='printf %s\n'
+  as_echo_n='printf %s'
+else
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
+    as_echo_n='/usr/ucb/echo -n'
+  else
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
+    as_echo_n_body='eval
+      arg=$1;
+      case $arg in #(
+      *"$as_nl"*)
+       expr "X$arg" : "X\\(.*\\)$as_nl";
+       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
+      esac;
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
+    '
+    export as_echo_n_body
+    as_echo_n='sh -c $as_echo_n_body as_echo'
+  fi
+  export as_echo_body
+  as_echo='sh -c $as_echo_body as_echo'
+fi
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+  PATH_SEPARATOR=:
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+      PATH_SEPARATOR=';'
+  }
+fi
+
+
+# IFS
+# We need space, tab and new line, in precisely that order.  Quoting is
+# there to prevent editors from complaining about space-tab.
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
+# splitting by setting IFS to empty value.)
+IFS=" ""       $as_nl"
+
+# Find who we are.  Look in the path if we contain no directory separator.
+as_myself=
+case $0 in #((
+  *[\\/]* ) as_myself=$0 ;;
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+  done
+IFS=$as_save_IFS
+
+     ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+  as_myself=$0
+fi
+if test ! -f "$as_myself"; then
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+  exit 1
+fi
+
+# Unset variables that we do not need and which cause bugs (e.g. in
+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
+# suppresses any "Segmentation fault" message there.  '((' could
+# trigger a bug in pdksh 5.2.14.
+for as_var in BASH_ENV ENV MAIL MAILPATH
+do eval test x\${$as_var+set} = xset \
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+# script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+  as_status=$1; test $as_status -eq 0 && as_status=1
+  if test "$4"; then
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
+  fi
+  $as_echo "$as_me: error: $2" >&2
+  as_fn_exit $as_status
+} # as_fn_error
+
+
+# as_fn_set_status STATUS
+# -----------------------
+# Set $? to STATUS, without forking.
+as_fn_set_status ()
+{
+  return $1
+} # as_fn_set_status
+
+# as_fn_exit STATUS
+# -----------------
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+  set +e
+  as_fn_set_status $1
+  exit $1
+} # as_fn_exit
+
+# as_fn_unset VAR
+# ---------------
+# Portably unset VAR.
+as_fn_unset ()
+{
+  { eval $1=; unset $1;}
+}
+as_unset=as_fn_unset
+# as_fn_append VAR VALUE
+# ----------------------
+# Append the text in VALUE to the end of the definition contained in VAR. Take
+# advantage of any shell optimizations that allow amortized linear growth over
+# repeated appends, instead of the typical quadratic growth present in naive
+# implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
+  eval 'as_fn_append ()
+  {
+    eval $1+=\$2
+  }'
+else
+  as_fn_append ()
+  {
+    eval $1=\$$1\$2
+  }
+fi # as_fn_append
+
+# as_fn_arith ARG...
+# ------------------
+# Perform arithmetic evaluation on the ARGs, and store the result in the
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
+# must be portable across $(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
+  eval 'as_fn_arith ()
+  {
+    as_val=$(( $* ))
+  }'
+else
+  as_fn_arith ()
+  {
+    as_val=`expr "$@" || test $? -eq 1`
+  }
+fi # as_fn_arith
+
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
+  as_expr=expr
+else
+  as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+  as_basename=basename
+else
+  as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+  as_dirname=dirname
+else
+  as_dirname=false
+fi
+
+as_me=`$as_basename -- "$0" ||
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+        X"$0" : 'X\(//\)$' \| \
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$0" |
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
+           s//\1/
+           q
+         }
+         /^X\/\(\/\/\)$/{
+           s//\1/
+           q
+         }
+         /^X\/\(\/\).*/{
+           s//\1/
+           q
+         }
+         s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+  case `echo 'xy\c'` in
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
+  xy)  ECHO_C='\c';;
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
+       ECHO_T='        ';;
+  esac;;
+*)
+  ECHO_N='-n';;
+esac
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+  rm -f conf$$.dir/conf$$.file
+else
+  rm -f conf$$.dir
+  mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
+    as_ln_s='ln -s'
+    # ... but there are two gotchas:
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+    # In both cases, we have to default to `cp -pR'.
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+      as_ln_s='cp -pR'
+  elif ln conf$$.file conf$$ 2>/dev/null; then
+    as_ln_s=ln
+  else
+    as_ln_s='cp -pR'
+  fi
+else
+  as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+
+# as_fn_mkdir_p
+# -------------
+# Create "$as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+  case $as_dir in #(
+  -*) as_dir=./$as_dir;;
+  esac
+  test -d "$as_dir" || eval $as_mkdir_p || {
+    as_dirs=
+    while :; do
+      case $as_dir in #(
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+      *) as_qdir=$as_dir;;
+      esac
+      as_dirs="'$as_qdir' $as_dirs"
+      as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+        X"$as_dir" : 'X\(//\)[^/]' \| \
+        X"$as_dir" : 'X\(//\)$' \| \
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_dir" |
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)[^/].*/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\).*/{
+           s//\1/
+           q
+         }
+         s/.*/./; q'`
+      test -d "$as_dir" && break
+    done
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} # as_fn_mkdir_p
+if mkdir -p . 2>/dev/null; then
+  as_mkdir_p='mkdir -p "$as_dir"'
+else
+  test -d ./-p && rmdir ./-p
+  as_mkdir_p=false
+fi
+
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+  test -f "$1" && test -x "$1"
+} # as_fn_executable_p
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+exec 6>&1
+## ----------------------------------- ##
+## Main body of $CONFIG_STATUS script. ##
+## ----------------------------------- ##
+_ASEOF
+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# Save the log message, to keep $0 and so on meaningful, and to
+# report actual input values of CONFIG_FILES etc. instead of their
+# values after options handling.
+ac_log="
+This file was extended by libcoap $as_me 4.1.1, which was
+generated by GNU Autoconf 2.69.  Invocation command line was
+
+  CONFIG_FILES    = $CONFIG_FILES
+  CONFIG_HEADERS  = $CONFIG_HEADERS
+  CONFIG_LINKS    = $CONFIG_LINKS
+  CONFIG_COMMANDS = $CONFIG_COMMANDS
+  $ $0 $@
+
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
+"
+
+_ACEOF
+
+case $ac_config_files in *"
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
+esac
+
+case $ac_config_headers in *"
+"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
+esac
+
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+# Files that config.status was made for.
+config_files="$ac_config_files"
+config_headers="$ac_config_headers"
+
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+ac_cs_usage="\
+\`$as_me' instantiates files and other configuration actions
+from templates according to the current configuration.  Unless the files
+and actions are specified as TAGs, all are instantiated by default.
+
+Usage: $0 [OPTION]... [TAG]...
+
+  -h, --help       print this help, then exit
+  -V, --version    print version number and configuration settings, then exit
+      --config     print configuration, then exit
+  -q, --quiet, --silent
+                   do not print progress messages
+  -d, --debug      don't remove temporary files
+      --recheck    update $as_me by reconfiguring in the same conditions
+      --file=FILE[:TEMPLATE]
+                   instantiate the configuration file FILE
+      --header=FILE[:TEMPLATE]
+                   instantiate the configuration header FILE
+
+Configuration files:
+$config_files
+
+Configuration headers:
+$config_headers
+
+Report bugs to the package provider."
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
+ac_cs_version="\\
+libcoap config.status 4.1.1
+configured by $0, generated by GNU Autoconf 2.69,
+  with options \\"\$ac_cs_config\\"
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+This config.status script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it."
+
+ac_pwd='$ac_pwd'
+srcdir='$srcdir'
+test -n "\$AWK" || AWK=awk
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# The default lists apply if the user does not specify any file.
+ac_need_defaults=:
+while test $# != 0
+do
+  case $1 in
+  --*=?*)
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
+    ac_shift=:
+    ;;
+  --*=)
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
+    ac_optarg=
+    ac_shift=:
+    ;;
+  *)
+    ac_option=$1
+    ac_optarg=$2
+    ac_shift=shift
+    ;;
+  esac
+
+  case $ac_option in
+  # Handling of the options.
+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+    ac_cs_recheck=: ;;
+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
+    $as_echo "$ac_cs_version"; exit ;;
+  --config | --confi | --conf | --con | --co | --c )
+    $as_echo "$ac_cs_config"; exit ;;
+  --debug | --debu | --deb | --de | --d | -d )
+    debug=: ;;
+  --file | --fil | --fi | --f )
+    $ac_shift
+    case $ac_optarg in
+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+    '') as_fn_error $? "missing file argument" ;;
+    esac
+    as_fn_append CONFIG_FILES " '$ac_optarg'"
+    ac_need_defaults=false;;
+  --header | --heade | --head | --hea )
+    $ac_shift
+    case $ac_optarg in
+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+    esac
+    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
+    ac_need_defaults=false;;
+  --he | --h)
+    # Conflict between --help and --header
+    as_fn_error $? "ambiguous option: \`$1'
+Try \`$0 --help' for more information.";;
+  --help | --hel | -h )
+    $as_echo "$ac_cs_usage"; exit ;;
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
+    ac_cs_silent=: ;;
+
+  # This is an error.
+  -*) as_fn_error $? "unrecognized option: \`$1'
+Try \`$0 --help' for more information." ;;
+
+  *) as_fn_append ac_config_targets " $1"
+     ac_need_defaults=false ;;
+
+  esac
+  shift
+done
+
+ac_configure_extra_args=
+
+if $ac_cs_silent; then
+  exec 6>/dev/null
+  ac_configure_extra_args="$ac_configure_extra_args --silent"
+fi
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+if \$ac_cs_recheck; then
+  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
+  shift
+  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
+  CONFIG_SHELL='$SHELL'
+  export CONFIG_SHELL
+  exec "\$@"
+fi
+
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+exec 5>>config.log
+{
+  echo
+  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+## Running $as_me. ##
+_ASBOX
+  $as_echo "$ac_log"
+} >&5
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+
+# Handling of arguments.
+for ac_config_target in $ac_config_targets
+do
+  case $ac_config_target in
+    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+    "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
+    "doc/Doxyfile") CONFIG_FILES="$CONFIG_FILES doc/Doxyfile" ;;
+    "examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;;
+    "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
+
+  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+  esac
+done
+
+
+# If the user did not use the arguments to specify the items to instantiate,
+# then the envvar interface is used.  Set only those that are not.
+# We use the long form for the default assignment because of an extremely
+# bizarre bug on SunOS 4.1.3.
+if $ac_need_defaults; then
+  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
+  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
+fi
+
+# Have a temporary directory for convenience.  Make it in the build tree
+# simply because there is no reason against having it here, and in addition,
+# creating and moving files from /tmp can sometimes cause problems.
+# Hook for its removal unless debugging.
+# Note that there is a small window in which the directory will not be cleaned:
+# after its creation but before its name has been assigned to `$tmp'.
+$debug ||
+{
+  tmp= ac_tmp=
+  trap 'exit_status=$?
+  : "${ac_tmp:=$tmp}"
+  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
+' 0
+  trap 'as_fn_exit 1' 1 2 13 15
+}
+# Create a (secure) tmp directory for tmp files.
+
+{
+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+  test -d "$tmp"
+}  ||
+{
+  tmp=./conf$$-$RANDOM
+  (umask 077 && mkdir "$tmp")
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
+ac_tmp=$tmp
+
+# Set up the scripts for CONFIG_FILES section.
+# No need to generate them if there are no CONFIG_FILES.
+# This happens for instance with `./config.status config.h'.
+if test -n "$CONFIG_FILES"; then
+
+
+ac_cr=`echo X | tr X '\015'`
+# On cygwin, bash can eat \r inside `` if the user requested igncr.
+# But we know of no other shell where ac_cr would be empty at this
+# point, so we can use a bashism as a fallback.
+if test "x$ac_cr" = x; then
+  eval ac_cr=\$\'\\r\'
+fi
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
+  ac_cs_awk_cr='\\r'
+else
+  ac_cs_awk_cr=$ac_cr
+fi
+
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
+_ACEOF
+
+
+{
+  echo "cat >conf$$subs.awk <<_ACEOF" &&
+  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
+  echo "_ACEOF"
+} >conf$$subs.sh ||
+  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
+ac_delim='%!_!# '
+for ac_last_try in false false false false false :; do
+  . ./conf$$subs.sh ||
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+
+  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
+  if test $ac_delim_n = $ac_delim_num; then
+    break
+  elif $ac_last_try; then
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+  else
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
+  fi
+done
+rm -f conf$$subs.sh
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
+_ACEOF
+sed -n '
+h
+s/^/S["/; s/!.*/"]=/
+p
+g
+s/^[^!]*!//
+:repl
+t repl
+s/'"$ac_delim"'$//
+t delim
+:nl
+h
+s/\(.\{148\}\)..*/\1/
+t more1
+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
+p
+n
+b repl
+:more1
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
+p
+g
+s/.\{148\}//
+t nl
+:delim
+h
+s/\(.\{148\}\)..*/\1/
+t more2
+s/["\\]/\\&/g; s/^/"/; s/$/"/
+p
+b
+:more2
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
+p
+g
+s/.\{148\}//
+t delim
+' <conf$$subs.awk | sed '
+/^[^""]/{
+  N
+  s/\n//
+}
+' >>$CONFIG_STATUS || ac_write_fail=1
+rm -f conf$$subs.awk
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+_ACAWK
+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
+  for (key in S) S_is_set[key] = 1
+  FS = "\a"
+
+}
+{
+  line = $ 0
+  nfields = split(line, field, "@")
+  substed = 0
+  len = length(field[1])
+  for (i = 2; i < nfields; i++) {
+    key = field[i]
+    keylen = length(key)
+    if (S_is_set[key]) {
+      value = S[key]
+      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
+      len += length(value) + length(field[++i])
+      substed = 1
+    } else
+      len += 1 + keylen
+  }
+
+  print line
+}
+
+_ACAWK
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
+  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
+else
+  cat
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
+  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
+_ACEOF
+
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
+# trailing colons and then remove the whole line if VPATH becomes empty
+# (actually we leave an empty line to preserve line numbers).
+if test "x$srcdir" = x.; then
+  ac_vpsub='/^[         ]*VPATH[        ]*=[    ]*/{
+h
+s///
+s/^/:/
+s/[     ]*$/:/
+s/:\$(srcdir):/:/g
+s/:\${srcdir}:/:/g
+s/:@srcdir@:/:/g
+s/^:*//
+s/:*$//
+x
+s/\(=[  ]*\).*/\1/
+G
+s/\n//
+s/^[^=]*=[      ]*$//
+}'
+fi
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+fi # test -n "$CONFIG_FILES"
+
+# Set up the scripts for CONFIG_HEADERS section.
+# No need to generate them if there are no CONFIG_HEADERS.
+# This happens for instance with `./config.status Makefile'.
+if test -n "$CONFIG_HEADERS"; then
+cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
+BEGIN {
+_ACEOF
+
+# Transform confdefs.h into an awk script `defines.awk', embedded as
+# here-document in config.status, that substitutes the proper values into
+# config.h.in to produce config.h.
+
+# Create a delimiter string that does not exist in confdefs.h, to ease
+# handling of long lines.
+ac_delim='%!_!# '
+for ac_last_try in false false :; do
+  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
+  if test -z "$ac_tt"; then
+    break
+  elif $ac_last_try; then
+    as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
+  else
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
+  fi
+done
+
+# For the awk script, D is an array of macro values keyed by name,
+# likewise P contains macro parameters if any.  Preserve backslash
+# newline sequences.
+
+ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
+sed -n '
+s/.\{148\}/&'"$ac_delim"'/g
+t rset
+:rset
+s/^[    ]*#[    ]*define[       ][      ]*/ /
+t def
+d
+:def
+s/\\$//
+t bsnl
+s/["\\]/\\&/g
+s/^ \('"$ac_word_re"'\)\(([^()]*)\)[    ]*\(.*\)/P["\1"]="\2"\
+D["\1"]=" \3"/p
+s/^ \('"$ac_word_re"'\)[        ]*\(.*\)/D["\1"]=" \2"/p
+d
+:bsnl
+s/["\\]/\\&/g
+s/^ \('"$ac_word_re"'\)\(([^()]*)\)[    ]*\(.*\)/P["\1"]="\2"\
+D["\1"]=" \3\\\\\\n"\\/p
+t cont
+s/^ \('"$ac_word_re"'\)[        ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
+t cont
+d
+:cont
+n
+s/.\{148\}/&'"$ac_delim"'/g
+t clear
+:clear
+s/\\$//
+t bsnlc
+s/["\\]/\\&/g; s/^/"/; s/$/"/p
+d
+:bsnlc
+s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
+b cont
+' <confdefs.h | sed '
+s/'"$ac_delim"'/"\\\
+"/g' >>$CONFIG_STATUS || ac_write_fail=1
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+  for (key in D) D_is_set[key] = 1
+  FS = "\a"
+}
+/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
+  line = \$ 0
+  split(line, arg, " ")
+  if (arg[1] == "#") {
+    defundef = arg[2]
+    mac1 = arg[3]
+  } else {
+    defundef = substr(arg[1], 2)
+    mac1 = arg[2]
+  }
+  split(mac1, mac2, "(") #)
+  macro = mac2[1]
+  prefix = substr(line, 1, index(line, defundef) - 1)
+  if (D_is_set[macro]) {
+    # Preserve the white space surrounding the "#".
+    print prefix "define", macro P[macro] D[macro]
+    next
+  } else {
+    # Replace #undef with comments.  This is necessary, for example,
+    # in the case of _POSIX_SOURCE, which is predefined and required
+    # on some systems where configure will not decide to define it.
+    if (defundef == "undef") {
+      print "/*", prefix defundef, macro, "*/"
+      next
+    }
+  }
+}
+{ print }
+_ACAWK
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+  as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
+fi # test -n "$CONFIG_HEADERS"
+
+
+eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    "
+shift
+for ac_tag
+do
+  case $ac_tag in
+  :[FHLC]) ac_mode=$ac_tag; continue;;
+  esac
+  case $ac_mode$ac_tag in
+  :[FHL]*:*);;
+  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
+  :[FH]-) ac_tag=-:-;;
+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
+  esac
+  ac_save_IFS=$IFS
+  IFS=:
+  set x $ac_tag
+  IFS=$ac_save_IFS
+  shift
+  ac_file=$1
+  shift
+
+  case $ac_mode in
+  :L) ac_source=$1;;
+  :[FH])
+    ac_file_inputs=
+    for ac_f
+    do
+      case $ac_f in
+      -) ac_f="$ac_tmp/stdin";;
+      *) # Look for the file first in the build tree, then in the source tree
+        # (if the path is not absolute).  The absolute path cannot be DOS-style,
+        # because $ac_f cannot contain `:'.
+        test -f "$ac_f" ||
+          case $ac_f in
+          [\\/$]*) false;;
+          *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
+          esac ||
+          as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+      esac
+      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
+      as_fn_append ac_file_inputs " '$ac_f'"
+    done
+
+    # Let's still pretend it is `configure' which instantiates (i.e., don't
+    # use $as_me), people would be surprised to read:
+    #    /* config.h.  Generated by config.status.  */
+    configure_input='Generated from '`
+         $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
+       `' by configure.'
+    if test x"$ac_file" != x-; then
+      configure_input="$ac_file.  $configure_input"
+      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
+$as_echo "$as_me: creating $ac_file" >&6;}
+    fi
+    # Neutralize special characters interpreted by sed in replacement strings.
+    case $configure_input in #(
+    *\&* | *\|* | *\\* )
+       ac_sed_conf_input=`$as_echo "$configure_input" |
+       sed 's/[\\\\&|]/\\\\&/g'`;; #(
+    *) ac_sed_conf_input=$configure_input;;
+    esac
+
+    case $ac_tag in
+    *:-:* | *:-) cat >"$ac_tmp/stdin" \
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
+    esac
+    ;;
+  esac
+
+  ac_dir=`$as_dirname -- "$ac_file" ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+        X"$ac_file" : 'X\(//\)[^/]' \| \
+        X"$ac_file" : 'X\(//\)$' \| \
+        X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$ac_file" |
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)[^/].*/{
+           s//\1/
+           q
+         }
+         /^X\(\/\/\)$/{
+           s//\1/
+           q
+         }
+         /^X\(\/\).*/{
+           s//\1/
+           q
+         }
+         s/.*/./; q'`
+  as_dir="$ac_dir"; as_fn_mkdir_p
+  ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
+  # A ".." for each directory in $ac_dir_suffix.
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+  case $ac_top_builddir_sub in
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+  esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+  .)  # We are building in place.
+    ac_srcdir=.
+    ac_top_srcdir=$ac_top_builddir_sub
+    ac_abs_top_srcdir=$ac_pwd ;;
+  [\\/]* | ?:[\\/]* )  # Absolute name.
+    ac_srcdir=$srcdir$ac_dir_suffix;
+    ac_top_srcdir=$srcdir
+    ac_abs_top_srcdir=$srcdir ;;
+  *) # Relative name.
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+
+  case $ac_mode in
+  :F)
+  #
+  # CONFIG_FILE
+  #
+
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# If the template does not know about datarootdir, expand it.
+# FIXME: This hack should be removed a few years after 2.60.
+ac_datarootdir_hack=; ac_datarootdir_seen=
+ac_sed_dataroot='
+/datarootdir/ {
+  p
+  q
+}
+/@datadir@/p
+/@docdir@/p
+/@infodir@/p
+/@localedir@/p
+/@mandir@/p'
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
+*datarootdir*) ac_datarootdir_seen=yes;;
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+  ac_datarootdir_hack='
+  s&@datadir@&$datadir&g
+  s&@docdir@&$docdir&g
+  s&@infodir@&$infodir&g
+  s&@localedir@&$localedir&g
+  s&@mandir@&$mandir&g
+  s&\\\${datarootdir}&$datarootdir&g' ;;
+esac
+_ACEOF
+
+# Neutralize VPATH when `$srcdir' = `.'.
+# Shell code in configure.ac might set extrasub.
+# FIXME: do we really want to maintain this feature?
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_sed_extra="$ac_vpsub
+$extrasub
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+:t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+s|@configure_input@|$ac_sed_conf_input|;t t
+s&@top_builddir@&$ac_top_builddir_sub&;t t
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
+s&@srcdir@&$ac_srcdir&;t t
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
+s&@top_srcdir@&$ac_top_srcdir&;t t
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
+s&@builddir@&$ac_builddir&;t t
+s&@abs_builddir@&$ac_abs_builddir&;t t
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
+$ac_datarootdir_hack
+"
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
+  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
+  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
+  { ac_out=`sed -n '/^[         ]*datarootdir[  ]*:*=/p' \
+      "$ac_tmp/out"`; test -z "$ac_out"; } &&
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined.  Please make sure it is defined" >&5
+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined.  Please make sure it is defined" >&2;}
+
+  rm -f "$ac_tmp/stdin"
+  case $ac_file in
+  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
+  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
+  esac \
+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+ ;;
+  :H)
+  #
+  # CONFIG_HEADER
+  #
+  if test x"$ac_file" != x-; then
+    {
+      $as_echo "/* $configure_input  */" \
+      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
+    } >"$ac_tmp/config.h" \
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+    if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
+      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
+$as_echo "$as_me: $ac_file is unchanged" >&6;}
+    else
+      rm -f "$ac_file"
+      mv "$ac_tmp/config.h" "$ac_file" \
+       || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+    fi
+  else
+    $as_echo "/* $configure_input  */" \
+      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
+      || as_fn_error $? "could not create -" "$LINENO" 5
+  fi
+ ;;
+
+
+  esac
+
+done # for ac_tag
+
+
+as_fn_exit 0
+_ACEOF
+ac_clean_files=$ac_clean_files_save
+
+test $ac_write_fail = 0 ||
+  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
+
+
+# configure is writing to config.log, and then calls config.status.
+# config.status does its own redirection, appending to config.log.
+# Unfortunately, on DOS this fails, as config.log is still kept open
+# by configure, so config.status won't be able to write to it; its
+# output is simply discarded.  So we exec the FD to /dev/null,
+# effectively closing config.log, so it can be properly (re)opened and
+# appended to by config.status.  When coming back to configure, we
+# need to make the FD available again.
+if test "$no_create" != yes; then
+  ac_cs_success=:
+  ac_config_status_args=
+  test "$silent" = yes &&
+    ac_config_status_args="$ac_config_status_args --quiet"
+  exec 5>/dev/null
+  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
+  exec 5>>config.log
+  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
+  # would make configure fail if this is the last instruction.
+  $ac_cs_success || as_fn_exit 1
+fi
+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
+fi
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/configure.in b/resource/csdk/connectivity/lib/libcoap-4.1.1/configure.in
new file mode 100644 (file)
index 0000000..77f6c8f
--- /dev/null
@@ -0,0 +1,98 @@
+#                                               -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+#
+# Copyright (C) 2010--2014 Olaf Bergmann <bergmann@tzi.org>
+#
+# This file is part of the CoAP library libcoap. Please see
+# README for terms of use. 
+
+AC_PREREQ([2.65])
+AC_INIT([libcoap], [4.1.1])
+AC_CONFIG_SRCDIR([coap.h])
+
+# First check for Contiki build to quit configure before any other test
+AC_ARG_WITH(contiki,
+  [AS_HELP_STRING([--with-contiki],[build libcoap for the Contiki OS])],
+  [cp -p Makefile.contiki Makefile
+   cp -p config.h.contiki config.h
+   AC_MSG_NOTICE([Contiki build prepared])
+   exit 0], 
+  [])
+
+# Checks for programs.
+AC_PROG_MAKE_SET
+AC_PROG_CC
+AC_PROG_RANLIB
+AC_PATH_PROG(DOXYGEN, doxygen, [:])
+AC_PATH_PROG(ETAGS, etags, [/bin/false])
+
+AC_C_BIGENDIAN
+
+# Checks for libraries.
+AC_CHECK_LIB([coap], [coap_new_pdu])
+
+AC_SEARCH_LIBS([gethostbyname], [nsl])
+AC_SEARCH_LIBS([socket], [socket])
+
+# configuration options that may change compile flags 
+AC_ARG_WITH(debug,
+  [AS_HELP_STRING([--without-debug],[disable all debug output and assertions])],
+  [CPPFLAGS="${CPPFLAGS} -DNDEBUG"], 
+  [])
+
+AC_ARG_WITH(async,
+  [AS_HELP_STRING([--without-async],[disable handling of asynchronous transactions and observe])],
+  [CPPFLAGS="${CPPFLAGS} -DWITHOUT_ASYNC"], 
+  [])
+
+AC_ARG_WITH(block,
+  [AS_HELP_STRING([--without-block],[disable block transfer])],
+  [CPPFLAGS="${CPPFLAGS} -DWITHOUT_BLOCK"], 
+  [])
+
+AC_ARG_WITH(observe,
+  [AS_HELP_STRING([--without-observe],[disable resource observation])],
+  [CPPFLAGS="${CPPFLAGS} -DWITHOUT_OBSERVE"], 
+  [])
+
+AC_ARG_WITH(query-filter,
+  [AS_HELP_STRING([--without-query-filter],[disable support for filters on /.well-known/core])],
+  [CPPFLAGS="${CPPFLAGS} -DWITHOUT_QUERY_FILTER"], 
+  [])
+
+AC_ARG_WITH(tests,
+  [AS_HELP_STRING([--with-tests],[enable unit tests (requires cunit)])],       
+  [TESTS="tests"],
+  [])
+
+AC_ARG_WITH(shared,
+  [AS_HELP_STRING([--with-shared],[build shared library])],    
+  [BUILD_SO="BUILD_SO=1"],
+  [])
+
+# disambiguate between autoconf generated setups and contiki / lwip setups
+# which use explicit config.h.* files
+CPPFLAGS="${CPPFLAGS} -DWITH_POSIX"
+
+# Checks for header files.
+AC_CHECK_HEADERS([assert.h arpa/inet.h limits.h netdb.h netinet/in.h stdlib.h string.h strings.h sys/socket.h sys/time.h time.h unistd.h sys/unistd.h syslog.h])
+
+# Checks for typedefs, structures, and compiler characteristics.
+AC_TYPE_SIZE_T
+AC_TYPE_SSIZE_T
+
+# Checks for library functions.
+AC_FUNC_MALLOC
+AC_CHECK_FUNCS([memset select socket strcasecmp strrchr getaddrinfo strnlen])
+
+AC_SUBST(TESTS)
+AC_SUBST(BUILD_SO)
+
+AC_CONFIG_HEADERS([config.h])
+
+AC_CONFIG_FILES([Makefile
+                 doc/Makefile
+                 doc/Doxyfile
+                 examples/Makefile
+                 tests/Makefile])
+AC_OUTPUT
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/debug.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/debug.c
new file mode 100644 (file)
index 0000000..eedf247
--- /dev/null
@@ -0,0 +1,391 @@
+/* debug.c -- debug utilities
+ *
+ * Copyright (C) 2010--2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+
+#if defined(HAVE_ASSERT_H) && !defined(assert)
+# include <assert.h>
+#endif
+
+#include <stdarg.h>
+#include <stdio.h>
+#include <string.h>
+#include <ctype.h>
+
+#ifdef HAVE_ARPA_INET_H
+#include <arpa/inet.h>
+#endif
+
+#ifdef HAVE_TIME_H
+#include <time.h>
+#endif
+
+#include "debug.h"
+#include "net.h"
+
+#ifdef WITH_CONTIKI
+# ifndef DEBUG
+#  define DEBUG DEBUG_PRINT
+# endif /* DEBUG */
+#include "net/uip-debug.h"
+#endif
+
+static coap_log_t maxlog = LOG_WARNING; /* default maximum log level */
+
+coap_log_t coap_get_log_level()
+{
+    return maxlog;
+}
+
+void coap_set_log_level(coap_log_t level)
+{
+    maxlog = level;
+}
+
+/* this array has the same order as the type log_t */
+static char *loglevels[] =
+{ "EMRG", "ALRT", "CRIT", "ERR", "WARN", "NOTE", "INFO", "DEBG" };
+
+#ifdef HAVE_TIME_H
+
+static inline size_t print_timestamp(char *s, size_t len, coap_tick_t t)
+{
+    struct tm *tmp;
+    time_t now = clock_offset + (t / COAP_TICKS_PER_SECOND);
+    tmp = localtime(&now);
+    return strftime(s, len, "%b %d %H:%M:%S", tmp);
+}
+
+#else /* alternative implementation: just print the timestamp */
+
+static inline size_t
+print_timestamp(char *s, size_t len, coap_tick_t t)
+{
+#ifdef HAVE_SNPRINTF
+    return snprintf(s, len, "%u.%03u",
+            (unsigned int)(clock_offset + (t / COAP_TICKS_PER_SECOND)),
+            (unsigned int)(t % COAP_TICKS_PER_SECOND));
+#else /* HAVE_SNPRINTF */
+    /* @todo do manual conversion of timestamp */
+    return 0;
+#endif /* HAVE_SNPRINTF */
+}
+
+#endif /* HAVE_TIME_H */
+
+#ifndef NDEBUG
+
+#ifndef HAVE_STRNLEN
+/** 
+ * A length-safe strlen() fake. 
+ * 
+ * @param s      The string to count characters != 0.
+ * @param maxlen The maximum length of @p s.
+ * 
+ * @return The length of @p s.
+ */
+static inline size_t
+strnlen(const char *s, size_t maxlen)
+{
+    size_t n = 0;
+    while(*s++ && n < maxlen)
+    ++n;
+    return n;
+}
+#endif /* HAVE_STRNLEN */
+
+unsigned int print_readable(const unsigned char *data, unsigned int len, unsigned char *result,
+        unsigned int buflen, int encode_always)
+{
+    const unsigned char hex[] = "0123456789ABCDEF";
+    unsigned int cnt = 0;
+    assert(data || len == 0);
+
+    if (buflen == 0 || len == 0)
+        return 0;
+
+    while (len)
+    {
+        if (!encode_always && isprint(*data))
+        {
+            if (cnt == buflen)
+                break;
+            *result++ = *data;
+            ++cnt;
+        }
+        else
+        {
+            if (cnt + 4 < buflen)
+            {
+                *result++ = '\\';
+                *result++ = 'x';
+                *result++ = hex[(*data & 0xf0) >> 4];
+                *result++ = hex[*data & 0x0f];
+                cnt += 4;
+            }
+            else
+                break;
+        }
+
+        ++data;
+        --len;
+    }
+
+    *result = '\0';
+    return cnt;
+}
+
+#ifndef min
+#define min(a,b) ((a) < (b) ? (a) : (b))
+#endif
+
+size_t coap_print_addr(const struct coap_address_t *addr, unsigned char *buf, size_t len)
+{
+#ifdef HAVE_ARPA_INET_H
+    const void *addrptr = NULL;
+    in_port_t port;
+    unsigned char *p = buf;
+
+    switch (addr->addr.sa.sa_family)
+    {
+        case AF_INET:
+            addrptr = &addr->addr.sin.sin_addr;
+            port = ntohs(addr->addr.sin.sin_port);
+            break;
+        case AF_INET6:
+            if (len < 7) /* do not proceed if buffer is even too short for [::]:0 */
+                return 0;
+
+            *p++ = '[';
+
+            addrptr = &addr->addr.sin6.sin6_addr;
+            port = ntohs(addr->addr.sin6.sin6_port);
+
+            break;
+        default:
+            memcpy(buf, "(unknown address type)", min(22, len));
+            return min(22, len);
+    }
+
+    if (inet_ntop(addr->addr.sa.sa_family, addrptr, (char *) p, len) == 0)
+    {
+        perror("coap_print_addr");
+        return 0;
+    }
+
+    p += strnlen((char *) p, len);
+
+    if (addr->addr.sa.sa_family == AF_INET6)
+    {
+        if (p < buf + len)
+        {
+            *p++ = ']';
+        }
+        else
+            return 0;
+    }
+
+    p += snprintf((char *) p, buf + len - p + 1, ":%d", port);
+
+    return buf + len - p;
+#else /* HAVE_ARPA_INET_H */
+# if WITH_CONTIKI
+    unsigned char *p = buf;
+    uint8_t i;
+#  if WITH_UIP6
+    const unsigned char hex[] = "0123456789ABCDEF";
+
+    if (len < 41)
+    return 0;
+
+    *p++ = '[';
+
+    for (i=0; i < 16; i += 2)
+    {
+        if (i)
+        {
+            *p++ = ':';
+        }
+        *p++ = hex[(addr->addr.u8[i] & 0xf0) >> 4];
+        *p++ = hex[(addr->addr.u8[i] & 0x0f)];
+        *p++ = hex[(addr->addr.u8[i+1] & 0xf0) >> 4];
+        *p++ = hex[(addr->addr.u8[i+1] & 0x0f)];
+    }
+    *p++ = ']';
+#  else /* WITH_UIP6 */
+#   warning "IPv4 network addresses will not be included in debug output"
+
+    if (len < 21)
+    return 0;
+#  endif /* WITH_UIP6 */
+    if (buf + len - p < 6)
+    return 0;
+
+#ifdef HAVE_SNPRINTF
+    p += snprintf((char *)p, buf + len - p + 1, ":%d", uip_htons(addr->port));
+#else /* HAVE_SNPRINTF */
+    /* @todo manual conversion of port number */
+#endif /* HAVE_SNPRINTF */
+
+    return p - buf;
+# else /* WITH_CONTIKI */
+    /* TODO: output addresses manually */
+#   warning "inet_ntop() not available, network addresses will not be included in debug output"
+# endif /* WITH_CONTIKI */
+    return 0;
+#endif
+}
+
+#ifndef WITH_CONTIKI
+void coap_show_pdu(const coap_pdu_t *pdu)
+{
+    unsigned char buf[COAP_MAX_PDU_SIZE]; /* need some space for output creation */
+    int encode = 0, have_options = 0;
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *option;
+
+    fprintf(COAP_DEBUG_FD, "v:%d t:%d tkl:%d c:%d id:%u", pdu->hdr->version, pdu->hdr->type,
+            pdu->hdr->token_length, pdu->hdr->code, ntohs(pdu->hdr->id));
+
+    /* show options, if any */
+    coap_option_iterator_init((coap_pdu_t *) pdu, &opt_iter, COAP_OPT_ALL);
+
+    while ((option = coap_option_next(&opt_iter)))
+    {
+        if (!have_options)
+        {
+            have_options = 1;
+            fprintf(COAP_DEBUG_FD, " o: [");
+        }
+        else
+        {
+            fprintf(COAP_DEBUG_FD, ",");
+        }
+
+        if (opt_iter.type == COAP_OPTION_URI_PATH || opt_iter.type == COAP_OPTION_PROXY_URI
+                || opt_iter.type == COAP_OPTION_URI_HOST
+                || opt_iter.type == COAP_OPTION_LOCATION_PATH
+                || opt_iter.type == COAP_OPTION_LOCATION_QUERY
+                || opt_iter.type == COAP_OPTION_URI_PATH || opt_iter.type == COAP_OPTION_URI_QUERY)
+        {
+            encode = 0;
+        }
+        else
+        {
+            encode = 1;
+        }
+
+        if (print_readable(COAP_OPT_VALUE(option), COAP_OPT_LENGTH(option), buf, sizeof(buf),
+                encode))
+            fprintf(COAP_DEBUG_FD, " %d:'%s'", opt_iter.type, buf);
+    }
+
+    if (have_options)
+        fprintf(COAP_DEBUG_FD, " ]");
+
+    if (pdu->data)
+    {
+        assert(pdu->data < (unsigned char *) pdu->hdr + pdu->length);
+        print_readable(pdu->data, (unsigned char *) pdu->hdr + pdu->length - pdu->data, buf,
+                sizeof(buf), 0);
+        fprintf(COAP_DEBUG_FD, " d:%s", buf);
+    }
+    fprintf(COAP_DEBUG_FD, "\n");
+    fflush(COAP_DEBUG_FD);
+}
+
+#else /* WITH_CONTIKI */
+
+void
+coap_show_pdu(const coap_pdu_t *pdu)
+{
+    unsigned char buf[80]; /* need some space for output creation */
+
+    PRINTF("v:%d t:%d oc:%d c:%d id:%u",
+            pdu->hdr->version, pdu->hdr->type,
+            pdu->hdr->optcnt, pdu->hdr->code, uip_ntohs(pdu->hdr->id));
+
+    /* show options, if any */
+    if (pdu->hdr->optcnt)
+    {
+        coap_opt_iterator_t opt_iter;
+        coap_opt_t *option;
+        coap_option_iterator_init((coap_pdu_t *)pdu, &opt_iter, COAP_OPT_ALL);
+
+        PRINTF(" o:");
+        while ((option = coap_option_next(&opt_iter)))
+        {
+
+            if (print_readable(COAP_OPT_VALUE(option),
+                            COAP_OPT_LENGTH(option),
+                            buf, sizeof(buf), 0))
+            PRINTF(" %d:%s", opt_iter.type, buf);
+        }
+    }
+
+    if (pdu->data < (unsigned char *)pdu->hdr + pdu->length)
+    {
+        print_readable(pdu->data,
+                (unsigned char *)pdu->hdr + pdu->length - pdu->data,
+                buf, sizeof(buf), 0 );
+        PRINTF(" d:%s", buf);
+    }
+    PRINTF("\r\n");
+}
+#endif /* WITH_CONTIKI */
+
+#endif /* NDEBUG */
+
+#ifndef WITH_CONTIKI
+void coap_log_impl(coap_log_t level, const char *format, ...)
+{
+    char timebuf[32];
+    coap_tick_t now;
+    va_list ap;
+    FILE *log_fd;
+
+    if (maxlog < level)
+        return;
+
+    log_fd = level <= LOG_CRIT ? COAP_ERR_FD : COAP_DEBUG_FD;
+
+    coap_ticks(&now);
+    if (print_timestamp(timebuf, sizeof(timebuf), now))
+        fprintf(log_fd, "%s ", timebuf);
+
+    if (level <= LOG_DEBUG)
+        fprintf(log_fd, "%s ", loglevels[level]);
+
+    va_start(ap, format);
+    vfprintf(log_fd, format, ap);
+    va_end(ap);
+    fflush(log_fd);
+}
+#else /* WITH_CONTIKI */
+void
+coap_log_impl(coap_log_t level, const char *format, ...)
+{
+    char timebuf[32];
+    coap_tick_t now;
+    va_list ap;
+
+    if (maxlog < level)
+    return;
+
+    coap_ticks(&now);
+    if (print_timestamp(timebuf,sizeof(timebuf), now))
+    PRINTF("%s ", timebuf);
+
+    if (level <= LOG_DEBUG)
+    PRINTF("%s ", loglevels[level]);
+
+    va_start(ap, format);
+    PRINTF(format, ap);
+    va_end(ap);
+}
+#endif /* WITH_CONTIKI */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/debug.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/debug.h
new file mode 100644 (file)
index 0000000..708ffc2
--- /dev/null
@@ -0,0 +1,75 @@
+/* debug.h -- debug utilities
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _COAP_DEBUG_H_
+#define _COAP_DEBUG_H_
+
+#include "config.h"
+
+#ifndef COAP_DEBUG_FD
+#define COAP_DEBUG_FD stdout
+#endif
+
+#ifndef COAP_ERR_FD
+#define COAP_ERR_FD stderr
+#endif
+
+#ifdef HAVE_SYSLOG_H
+#include <syslog.h>
+typedef short coap_log_t;
+#else
+/** Pre-defined log levels akin to what is used in \b syslog. */
+typedef enum
+{   LOG_EMERG=0, LOG_ALERT, LOG_CRIT, LOG_WARNING,
+    LOG_NOTICE, LOG_INFO, LOG_DEBUG
+}coap_log_t;
+#endif
+
+/** Returns the current log level. */
+coap_log_t coap_get_log_level();
+
+/** Sets the log level to the specified value. */
+void coap_set_log_level(coap_log_t level);
+
+/** 
+ * Writes the given text to @c COAP_ERR_FD (for @p level <= @c
+ * LOG_CRIT) or @c COAP_DEBUG_FD (for @p level >= @c LOG_WARNING). The
+ * text is output only when @p level is below or equal to the log
+ * level that set by coap_set_log_level().
+ */
+void coap_log_impl(coap_log_t level, const char *format, ...);
+
+#ifndef coap_log
+#define coap_log(...) coap_log_impl(__VA_ARGS__)
+#endif
+
+#ifndef NDEBUG
+
+/* A set of convenience macros for common log levels. */
+#define info(...) coap_log(LOG_INFO, __VA_ARGS__)
+#define warn(...) coap_log(LOG_WARNING, __VA_ARGS__)
+#define debug(...) coap_log(LOG_DEBUG, __VA_ARGS__)
+
+#include "pdu.h"
+void coap_show_pdu(const coap_pdu_t *);
+
+struct coap_address_t;
+size_t coap_print_addr(const struct coap_address_t *, unsigned char *, size_t);
+
+#else
+
+#define debug(...)
+#define info(...)
+#define warn(...)
+
+#define coap_show_pdu(x)
+#define coap_print_addr(...)
+
+#endif
+
+#endif /* _COAP_DEBUG_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/encode.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/encode.c
new file mode 100644 (file)
index 0000000..9e70ea8
--- /dev/null
@@ -0,0 +1,50 @@
+/* encode.c -- encoding and decoding of CoAP data types
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef NDEBUG
+#  include <stdio.h>
+#endif
+
+#include "config.h"
+#include "encode.h"
+
+/* Carsten suggested this when fls() is not available: */
+int coap_fls(unsigned int i)
+{
+    int n;
+    for (n = 0; i; n++)
+        i >>= 1;
+    return n;
+}
+
+unsigned int coap_decode_var_bytes(unsigned char *buf, unsigned int len)
+{
+    unsigned int i, n = 0;
+    for (i = 0; i < len; ++i)
+        n = (n << 8) + buf[i];
+
+    return n;
+}
+
+unsigned int coap_encode_var_bytes(unsigned char *buf, unsigned int val)
+{
+    unsigned int n, i;
+
+    for (n = 0, i = val; i && n < sizeof(val); ++n)
+        i >>= 8;
+
+    i = n;
+    while (i--)
+    {
+        buf[i] = val & 0xff;
+        val >>= 8;
+    }
+
+    return n;
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/encode.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/encode.h
new file mode 100644 (file)
index 0000000..e58cad6
--- /dev/null
@@ -0,0 +1,52 @@
+/* encode.h -- encoding and decoding of CoAP data types
+ *
+ * Copyright (C) 2010--2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _COAP_ENCODE_H_
+#define _COAP_ENCODE_H_
+
+#if (BSD >= 199103) || defined(WITH_CONTIKI)
+# include <string.h>
+#else
+# include <strings.h>
+#endif
+
+#define Nn 8  /* duplicate definition of N if built on sky motes */
+#define E 4
+#define HIBIT (1 << (Nn - 1))
+#define EMASK ((1 << E) - 1)
+#define MMASK ((1 << Nn) - 1 - EMASK)
+#define MAX_VALUE ( (1 << Nn) - (1 << E) ) * (1 << ((1 << E) - 1))
+
+#define COAP_PSEUDOFP_DECODE_8_4(r) (r < HIBIT ? r : (r & MMASK) << (r & EMASK))
+
+#ifndef HAVE_FLS
+/* include this only if fls() is not available */
+extern int coap_fls(unsigned int i);
+#else
+#define coap_fls(i) fls(i)
+#endif
+
+/* ls and s must be integer variables */
+#define COAP_PSEUDOFP_ENCODE_8_4_DOWN(v,ls) (v < HIBIT ? v : (ls = coap_fls(v) - Nn, (v >> ls) & MMASK) + ls)
+#define COAP_PSEUDOFP_ENCODE_8_4_UP(v,ls,s) (v < HIBIT ? v : (ls = coap_fls(v) - Nn, (s = (((v + ((1<<E<<ls)-1)) >> ls) & MMASK)), s == 0 ? HIBIT + ls + 1 : s + ls))
+
+/**
+ * Decodes multiple-length byte sequences. buf points to an input byte
+ * sequence of length len. Returns the decoded value.
+ */
+unsigned int coap_decode_var_bytes(unsigned char *buf, unsigned int len);
+
+/**
+ * Encodes multiple-length byte sequences. buf points to an output
+ * buffer of sufficient length to store the encoded bytes. val is
+ * the value to encode. Returns the number of bytes used to encode
+ * val or 0 on error.
+ */
+unsigned int coap_encode_var_bytes(unsigned char *buf, unsigned int val);
+
+#endif /* _COAP_ENCODE_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/Makefile b/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/Makefile
new file mode 100644 (file)
index 0000000..9f93ca3
--- /dev/null
@@ -0,0 +1,61 @@
+# Makefile for libcoap
+#
+# Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+#
+# This file is part of the CoAP library libcoap. Please see
+# README for terms of use. 
+
+# the library's version
+VERSION:=4.1.1
+
+# tools
+
+SHELL = /bin/sh
+MKDIR = mkdir
+
+abs_builddir = /connectivity/connectivity/src/bt_edr_adapter/libcoap-4.1.1/examples
+top_builddir = ..
+top_srcdir = ..
+# files and flags
+PROGRAMS:=coap-server coap-client rd etsi_iot_01 #tiny
+SOURCES:= tiny.c client.c server.c rd.c etsi_iot_01.c
+OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
+#CFLAGS:=-g -Wall -ansi -pedantic -I..
+CFLAGS:=-g -Wall -g -O2
+CPPFLAGS:=-I$(top_srcdir)  -DWITH_POSIX
+DISTDIR?=$(top_builddir)/libcoap-4.1.1
+FILES:=Makefile.in $(SOURCES)
+LDFLAGS:=-L$(top_builddir)
+LDLIBS:=-lcoap 
+libcoap =$(top_builddir)/libcoap.a
+
+.PHONY: clean distclean
+
+.SUFFIXES:
+.SUFFIXES:      .c .o
+
+all:   $(PROGRAMS)
+
+check: 
+       echo DISTDIR: $(DISTDIR)
+       echo top_builddir: $(top_builddir)
+
+tiny:  tiny.o $(libcoap)
+       $(CC) -o $@ $< $(LDFLAGS)
+
+coap-client: client.o $(libcoap)
+       $(CC) -o $@ $< $(LDFLAGS) $(LDLIBS)
+
+coap-server:   server.o $(libcoap)
+       $(CC) -o $@ $< $(LDFLAGS) $(LDLIBS)
+
+clean:
+       @rm -f $(PROGRAMS) $(OBJECTS)
+
+distclean:     clean
+       @rm -rf $(DISTDIR)
+       @rm -f *~ 
+
+dist:  $(FILES)
+       test -d $(DISTDIR)/examples || mkdir $(DISTDIR)/examples
+       cp $(FILES) $(DISTDIR)/examples
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/Makefile.in b/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/Makefile.in
new file mode 100644 (file)
index 0000000..80445ad
--- /dev/null
@@ -0,0 +1,61 @@
+# Makefile for libcoap
+#
+# Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+#
+# This file is part of the CoAP library libcoap. Please see
+# README for terms of use. 
+
+# the library's version
+VERSION:=@PACKAGE_VERSION@
+
+# tools
+@SET_MAKE@
+SHELL = /bin/sh
+MKDIR = mkdir
+
+abs_builddir = @abs_builddir@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+# files and flags
+PROGRAMS:=coap-server coap-client rd etsi_iot_01 #tiny
+SOURCES:= tiny.c client.c server.c rd.c etsi_iot_01.c
+OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
+#CFLAGS:=-g -Wall -ansi -pedantic -I..
+CFLAGS:=-g -Wall @CFLAGS@
+CPPFLAGS:=-I$(top_srcdir) @CPPFLAGS@
+DISTDIR?=$(top_builddir)/@PACKAGE_TARNAME@-@PACKAGE_VERSION@
+FILES:=Makefile.in $(SOURCES)
+LDFLAGS:=-L$(top_builddir)
+LDLIBS:=-lcoap @LIBS@
+libcoap =$(top_builddir)/libcoap.a
+
+.PHONY: clean distclean
+
+.SUFFIXES:
+.SUFFIXES:      .c .o
+
+all:   $(PROGRAMS)
+
+check: 
+       echo DISTDIR: $(DISTDIR)
+       echo top_builddir: $(top_builddir)
+
+tiny:  tiny.o $(libcoap)
+       $(CC) -o $@ $< $(LDFLAGS)
+
+coap-client: client.o $(libcoap)
+       $(CC) -o $@ $< $(LDFLAGS) $(LDLIBS)
+
+coap-server:   server.o $(libcoap)
+       $(CC) -o $@ $< $(LDFLAGS) $(LDLIBS)
+
+clean:
+       @rm -f $(PROGRAMS) $(OBJECTS)
+
+distclean:     clean
+       @rm -rf $(DISTDIR)
+       @rm -f *~ 
+
+dist:  $(FILES)
+       test -d $(DISTDIR)/examples || mkdir $(DISTDIR)/examples
+       cp $(FILES) $(DISTDIR)/examples
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/client.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/client.c
new file mode 100644 (file)
index 0000000..72a0908
--- /dev/null
@@ -0,0 +1,1270 @@
+/* coap-client -- simple CoAP client
+ *
+ * Copyright (C) 2010--2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+
+#include <string.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <ctype.h>
+#include <sys/select.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <netdb.h>
+
+#include "coap.h"
+
+int flags = 0;
+
+static unsigned char _token_data[8];
+str the_token =
+{ 0, _token_data };
+
+#define FLAGS_BLOCK 0x01
+
+static coap_list_t *optlist = NULL;
+/* Request URI.
+ * TODO: associate the resources with transaction id and make it expireable */
+static coap_uri_t uri;
+static str proxy =
+{ 0, NULL };
+static unsigned short proxy_port = COAP_DEFAULT_PORT;
+
+/* reading is done when this flag is set */
+static int ready = 0;
+
+static str output_file =
+{ 0, NULL }; /* output file name */
+static FILE *file = NULL; /* output file stream */
+
+static str payload =
+{ 0, NULL }; /* optional payload to send */
+
+unsigned char msgtype = COAP_MESSAGE_CON; /* usually, requests are sent confirmable */
+
+typedef unsigned char method_t;
+method_t method = 1; /* the method we are using in our requests */
+
+coap_block_t block =
+{ .num = 0, .m = 0, .szx = 6 };
+
+unsigned int wait_seconds = 90; /* default timeout in seconds */
+coap_tick_t max_wait; /* global timeout (changed by set_timeout()) */
+
+unsigned int obs_seconds = 30; /* default observe time */
+coap_tick_t obs_wait = 0; /* timeout for current subscription */
+
+#define min(a,b) ((a) < (b) ? (a) : (b))
+
+static inline void set_timeout(coap_tick_t *timer, const unsigned int seconds)
+{
+    coap_ticks(timer);
+    *timer += seconds * COAP_TICKS_PER_SECOND;
+}
+
+int append_to_output(const unsigned char *data, size_t len)
+{
+    size_t written;
+
+    if (!file)
+    {
+        if (!output_file.s || (output_file.length && output_file.s[0] == '-'))
+            file = stdout;
+        else
+        {
+            if (!(file = fopen((char *) output_file.s, "w")))
+            {
+                perror("fopen");
+                return -1;
+            }
+        }
+    }
+
+    do
+    {
+        written = fwrite(data, 1, len, file);
+        len -= written;
+        data += written;
+    } while (written && len);
+    fflush(file);
+
+    return 0;
+}
+
+void close_output()
+{
+    if (file)
+    {
+
+        /* add a newline before closing in case were writing to stdout */
+        if (!output_file.s || (output_file.length && output_file.s[0] == '-'))
+            fwrite("\n", 1, 1, file);
+
+        fflush(file);
+        fclose(file);
+    }
+}
+
+coap_pdu_t *
+new_ack(coap_context_t *ctx, coap_queue_t *node)
+{
+    coap_pdu_t *pdu = coap_new_pdu();
+
+    if (pdu)
+    {
+        pdu->hdr->type = COAP_MESSAGE_ACK;
+        pdu->hdr->code = 0;
+        pdu->hdr->id = node->pdu->hdr->id;
+    }
+
+    return pdu;
+}
+
+coap_pdu_t *
+new_response(coap_context_t *ctx, coap_queue_t *node, unsigned int code)
+{
+    coap_pdu_t *pdu = new_ack(ctx, node);
+
+    if (pdu)
+        pdu->hdr->code = code;
+
+    return pdu;
+}
+
+coap_pdu_t *
+coap_new_request(coap_context_t *ctx, method_t m, coap_list_t *options)
+{
+    coap_pdu_t *pdu;
+    coap_list_t *opt;
+
+    if (!(pdu = coap_new_pdu()))
+        return NULL;
+
+    pdu->hdr->type = msgtype;
+    pdu->hdr->id = coap_new_message_id(ctx);
+    pdu->hdr->code = m;
+
+    pdu->hdr->token_length = the_token.length;
+    if (!coap_add_token(pdu, the_token.length, the_token.s))
+    {
+        debug("cannot add token to request\n");
+    }
+
+    coap_show_pdu(pdu);
+
+    for (opt = options; opt; opt = opt->next)
+    {
+        coap_add_option(pdu, COAP_OPTION_KEY(*(coap_option *)opt->data),
+                COAP_OPTION_LENGTH(*(coap_option *)opt->data),
+                COAP_OPTION_DATA(*(coap_option *)opt->data));
+    }
+
+    if (payload.length)
+    {
+        if ((flags & FLAGS_BLOCK) == 0)
+            coap_add_data(pdu, payload.length, payload.s);
+        else
+            coap_add_block(pdu, payload.length, payload.s, block.num, block.szx);
+    }
+
+    return pdu;
+}
+
+coap_tid_t clear_obs(coap_context_t *ctx, const coap_address_t *remote)
+{
+    coap_list_t *option;
+    coap_pdu_t *pdu;
+    coap_tid_t tid = COAP_INVALID_TID;
+
+    /* create bare PDU w/o any option  */
+    pdu = coap_new_request(ctx, COAP_REQUEST_GET, NULL);
+
+    if (pdu)
+    {
+        /* FIXME: add token */
+        /* add URI components from optlist */
+        for (option = optlist; option; option = option->next)
+        {
+            switch (COAP_OPTION_KEY(*(coap_option *)option->data))
+            {
+                case COAP_OPTION_URI_HOST:
+                case COAP_OPTION_URI_PORT:
+                case COAP_OPTION_URI_PATH:
+                case COAP_OPTION_URI_QUERY:
+                    coap_add_option(pdu, COAP_OPTION_KEY(*(coap_option *)option->data),
+                            COAP_OPTION_LENGTH(*(coap_option *)option->data),
+                            COAP_OPTION_DATA(*(coap_option *)option->data));
+                    break;
+                default:
+                    ; /* skip other options */
+            }
+        }
+
+        if (pdu->hdr->type == COAP_MESSAGE_CON)
+            tid = coap_send_confirmed(ctx, remote, pdu);
+        else
+            tid = coap_send(ctx, remote, pdu);
+
+        if (tid == COAP_INVALID_TID)
+        {
+            debug("clear_obs: error sending new request");
+            coap_delete_pdu(pdu);
+        }
+        else if (pdu->hdr->type != COAP_MESSAGE_CON)
+            coap_delete_pdu(pdu);
+    }
+    return tid;
+}
+
+int resolve_address(const str *server, struct sockaddr *dst)
+{
+
+    struct addrinfo *res, *ainfo;
+    struct addrinfo hints;
+    static char addrstr[256];
+    int error, len = -1;
+
+    memset(addrstr, 0, sizeof(addrstr));
+    if (server->length)
+        memcpy(addrstr, server->s, server->length);
+    else
+        memcpy(addrstr, "localhost", 9);
+
+    memset((char *) &hints, 0, sizeof(hints));
+    hints.ai_socktype = SOCK_DGRAM;
+    hints.ai_family = AF_UNSPEC;
+
+    error = getaddrinfo(addrstr, "", &hints, &res);
+
+    if (error != 0)
+    {
+        fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(error));
+        return error;
+    }
+
+    for (ainfo = res; ainfo != NULL; ainfo = ainfo->ai_next)
+    {
+        switch (ainfo->ai_family)
+        {
+            case AF_INET6:
+            case AF_INET:
+                len = ainfo->ai_addrlen;
+                memcpy(dst, ainfo->ai_addr, len);
+                goto finish;
+            default:
+                ;
+        }
+    }
+
+    finish: freeaddrinfo(res);
+    return len;
+}
+
+static inline coap_opt_t *
+get_block(coap_pdu_t *pdu, coap_opt_iterator_t *opt_iter)
+{
+    coap_opt_filter_t f;
+
+    assert(pdu);
+
+    memset(f, 0, sizeof(coap_opt_filter_t));
+    coap_option_setb(f, COAP_OPTION_BLOCK1);
+    coap_option_setb(f, COAP_OPTION_BLOCK2);
+
+    coap_option_iterator_init(pdu, opt_iter, f);
+    return coap_option_next(opt_iter);
+}
+
+#define HANDLE_BLOCK1(Pdu)                                             \
+  ((method == COAP_REQUEST_PUT || method == COAP_REQUEST_POST) &&      \
+   ((flags & FLAGS_BLOCK) == 0) &&                                     \
+   ((Pdu)->hdr->code == COAP_RESPONSE_CODE(201) ||                     \
+    (Pdu)->hdr->code == COAP_RESPONSE_CODE(204)))
+
+inline int check_token(coap_pdu_t *received)
+{
+    return received->hdr->token_length == the_token.length
+            && memcmp(received->hdr->token, the_token.s, the_token.length) == 0;
+}
+
+void message_handler(struct coap_context_t *ctx, const coap_address_t *remote, coap_pdu_t *sent,
+        coap_pdu_t *received, const coap_tid_t id)
+{
+
+    coap_pdu_t *pdu = NULL;
+    coap_opt_t *block_opt;
+    coap_opt_iterator_t opt_iter;
+    unsigned char buf[4];
+    coap_list_t *option;
+    size_t len;
+    unsigned char *databuf;
+    coap_tid_t tid;
+
+#ifndef NDEBUG
+    if (LOG_DEBUG <= coap_get_log_level())
+    {
+        debug(
+                "** process incoming %d.%02d response:\n", (received->hdr->code >> 5), received->hdr->code & 0x1F);
+        coap_show_pdu(received);
+    }
+#endif
+
+    /* check if this is a response to our original request */
+    if (!check_token(received))
+    {
+        /* drop if this was just some message, or send RST in case of notification */
+        if (!sent
+                && (received->hdr->type == COAP_MESSAGE_CON
+                        || received->hdr->type == COAP_MESSAGE_NON))
+            coap_send_rst(ctx, remote, received);
+        return;
+    }
+
+    switch (received->hdr->type)
+    {
+        case COAP_MESSAGE_CON:
+            /* acknowledge received response if confirmable (TODO: check Token) */
+            coap_send_ack(ctx, remote, received);
+            break;
+        case COAP_MESSAGE_RST:
+            info("got RST\n");
+            return;
+        default:
+            ;
+    }
+
+    /* output the received data, if any */
+    if (received->hdr->code == COAP_RESPONSE_CODE(205))
+    {
+
+        /* set obs timer if we have successfully subscribed a resource */
+        if (sent && coap_check_option(received, COAP_OPTION_SUBSCRIPTION, &opt_iter))
+        {
+            debug("observation relationship established, set timeout to %d\n", obs_seconds);
+            set_timeout(&obs_wait, obs_seconds);
+        }
+
+        /* Got some data, check if block option is set. Behavior is undefined if
+         * both, Block1 and Block2 are present. */
+        block_opt = get_block(received, &opt_iter);
+        if (!block_opt)
+        {
+            /* There is no block option set, just read the data and we are done. */
+            if (coap_get_data(received, &len, &databuf))
+                append_to_output(databuf, len);
+        }
+        else
+        {
+            unsigned short blktype = opt_iter.type;
+
+            /* TODO: check if we are looking at the correct block number */
+            if (coap_get_data(received, &len, &databuf))
+                append_to_output(databuf, len);
+
+            if (COAP_OPT_BLOCK_MORE(block_opt))
+            {
+                /* more bit is set */
+                debug(
+                        "found the M bit, block size is %u, block nr. %u\n", COAP_OPT_BLOCK_SZX(block_opt), coap_opt_block_num(block_opt));
+
+                /* create pdu with request for next block */
+                pdu = coap_new_request(ctx, method, NULL); /* first, create bare PDU w/o any option  */
+                if (pdu)
+                {
+                    /* add URI components from optlist */
+                    for (option = optlist; option; option = option->next)
+                    {
+                        switch (COAP_OPTION_KEY(*(coap_option *)option->data))
+                        {
+                            case COAP_OPTION_URI_HOST:
+                            case COAP_OPTION_URI_PORT:
+                            case COAP_OPTION_URI_PATH:
+                            case COAP_OPTION_URI_QUERY:
+                                coap_add_option(pdu, COAP_OPTION_KEY(*(coap_option *)option->data),
+                                        COAP_OPTION_LENGTH(*(coap_option *)option->data),
+                                        COAP_OPTION_DATA(*(coap_option *)option->data));
+                                break;
+                            default:
+                                ; /* skip other options */
+                        }
+                    }
+
+                    /* finally add updated block option from response, clear M bit */
+                    /* blocknr = (blocknr & 0xfffffff7) + 0x10; */
+                    debug("query block %d\n", (coap_opt_block_num(block_opt) + 1));
+                    coap_add_option(pdu, blktype,
+                            coap_encode_var_bytes(buf,
+                                    ((coap_opt_block_num(block_opt) + 1) << 4)
+                                            | COAP_OPT_BLOCK_SZX(block_opt)), buf);
+
+                    if (received->hdr->type == COAP_MESSAGE_CON)
+                        tid = coap_send_confirmed(ctx, remote, pdu);
+                    else
+                        tid = coap_send(ctx, remote, pdu);
+
+                    if (tid == COAP_INVALID_TID)
+                    {
+                        debug("message_handler: error sending new request");
+                        coap_delete_pdu(pdu);
+                    }
+                    else
+                    {
+                        set_timeout(&max_wait, wait_seconds);
+                        if (received->hdr->type != COAP_MESSAGE_CON)
+                            coap_delete_pdu(pdu);
+                    }
+
+                    return;
+                }
+            }
+        }
+    }
+    else
+    { /* no 2.05 */
+
+        /* check if an error was signaled and output payload if so */
+        if (COAP_RESPONSE_CLASS(received->hdr->code) >= 4)
+        {
+            fprintf(stderr, "%d.%02d", (received->hdr->code >> 5), received->hdr->code & 0x1F);
+            if (coap_get_data(received, &len, &databuf))
+            {
+                fprintf(stderr, " ");
+                while (len--)
+                    fprintf(stderr, "%c", *databuf++);
+            }
+            fprintf(stderr, "\n");
+        }
+
+    }
+
+    /* finally send new request, if needed */
+    if (pdu && coap_send(ctx, remote, pdu) == COAP_INVALID_TID)
+    {
+        debug("message_handler: error sending response");
+    }
+    coap_delete_pdu(pdu);
+
+    /* our job is done, we can exit at any time */
+    ready = coap_check_option(received, COAP_OPTION_SUBSCRIPTION, &opt_iter) == NULL;
+}
+
+void usage(const char *program, const char *version)
+{
+    const char *p;
+
+    p = strrchr(program, '/');
+    if (p)
+        program = ++p;
+
+    fprintf(stderr, "%s v%s -- a small CoAP implementation\n"
+            "(c) 2010-2013 Olaf Bergmann <bergmann@tzi.org>\n\n"
+            "usage: %s [-A type...] [-t type] [-b [num,]size] [-B seconds] [-e text]\n"
+            "\t\t[-g group] [-m method] [-N] [-o file] [-P addr[:port]] [-p port]\n"
+            "\t\t[-s duration] [-O num,text] [-T string] [-v num] URI\n\n"
+            "\tURI can be an absolute or relative coap URI,\n"
+            "\t-A type...\taccepted media types as comma-separated list of\n"
+            "\t\t\tsymbolic or numeric values\n"
+            "\t-t type\t\tcontent type for given resource for PUT/POST\n"
+            "\t-b [num,]size\tblock size to be used in GET/PUT/POST requests\n"
+            "\t       \t\t(value must be a multiple of 16 not larger than 1024)\n"
+            "\t       \t\tIf num is present, the request chain will start at\n"
+            "\t       \t\tblock num\n"
+            "\t-B seconds\tbreak operation after waiting given seconds\n"
+            "\t\t\t(default is %d)\n"
+            "\t-e text\t\tinclude text as payload (use percent-encoding for\n"
+            "\t\t\tnon-ASCII characters)\n"
+            "\t-f file\t\tfile to send with PUT/POST (use '-' for STDIN)\n"
+            "\t-g group\tjoin the given multicast group\n"
+            "\t-m method\trequest method (get|put|post|delete), default is 'get'\n"
+            "\t-N\t\tsend NON-confirmable message\n"
+            "\t-o file\t\toutput received data to this file (use '-' for STDOUT)\n"
+            "\t-p port\t\tlisten on specified port\n"
+            "\t-s duration\tsubscribe for given duration [s]\n"
+            "\t-v num\t\tverbosity level (default: 3)\n"
+            "\t-O num,text\tadd option num with contents text to request\n"
+            "\t-P addr[:port]\tuse proxy (automatically adds Proxy-Uri option to\n"
+            "\t\t\trequest)\n"
+            "\t-T token\tinclude specified token\n"
+            "\n"
+            "examples:\n"
+            "\tcoap-client -m get coap://[::1]/\n"
+            "\tcoap-client -m get coap://[::1]/.well-known/core\n"
+            "\tcoap-client -m get -T cafe coap://[::1]/time\n"
+            "\techo 1000 | coap-client -m put -T cafe coap://[::1]/time -f -\n", program, version,
+            program, wait_seconds);
+}
+
+int join(coap_context_t *ctx, char *group_name)
+{
+    struct ipv6_mreq mreq;
+    struct addrinfo *reslocal = NULL, *resmulti = NULL, hints, *ainfo;
+    int result = -1;
+
+    /* we have to resolve the link-local interface to get the interface id */
+    memset(&hints, 0, sizeof(hints));
+    hints.ai_family = AF_INET6;
+    hints.ai_socktype = SOCK_DGRAM;
+
+    result = getaddrinfo("::", NULL, &hints, &reslocal);
+    if (result < 0)
+    {
+        fprintf(stderr, "join: cannot resolve link-local interface: %s\n", gai_strerror(result));
+        goto finish;
+    }
+
+    /* get the first suitable interface identifier */
+    for (ainfo = reslocal; ainfo != NULL; ainfo = ainfo->ai_next)
+    {
+        if (ainfo->ai_family == AF_INET6)
+        {
+            mreq.ipv6mr_interface = ((struct sockaddr_in6 *) ainfo->ai_addr)->sin6_scope_id;
+            break;
+        }
+    }
+
+    memset(&hints, 0, sizeof(hints));
+    hints.ai_family = AF_INET6;
+    hints.ai_socktype = SOCK_DGRAM;
+
+    /* resolve the multicast group address */
+    result = getaddrinfo(group_name, NULL, &hints, &resmulti);
+
+    if (result < 0)
+    {
+        fprintf(stderr, "join: cannot resolve multicast address: %s\n", gai_strerror(result));
+        goto finish;
+    }
+
+    for (ainfo = resmulti; ainfo != NULL; ainfo = ainfo->ai_next)
+    {
+        if (ainfo->ai_family == AF_INET6)
+        {
+            mreq.ipv6mr_multiaddr = ((struct sockaddr_in6 *) ainfo->ai_addr)->sin6_addr;
+            break;
+        }
+    }
+
+    result = setsockopt(ctx->sockfd, IPPROTO_IPV6, IPV6_JOIN_GROUP, (char *) &mreq, sizeof(mreq));
+    if (result < 0)
+        perror("join: setsockopt");
+
+    finish: freeaddrinfo(resmulti);
+    freeaddrinfo(reslocal);
+
+    return result;
+}
+
+int order_opts(void *a, void *b)
+{
+    if (!a || !b)
+        return a < b ? -1 : 1;
+
+    if (COAP_OPTION_KEY(*(coap_option *)a) < COAP_OPTION_KEY(*(coap_option *)b))
+        return -1;
+
+    return COAP_OPTION_KEY(*(coap_option *)a) == COAP_OPTION_KEY(*(coap_option *)b);
+}
+
+coap_list_t *
+new_option_node(unsigned short key, unsigned int length, unsigned char *data)
+{
+    coap_option *option;
+    coap_list_t *node;
+
+    option = coap_malloc(sizeof(coap_option) + length);
+    if (!option)
+        goto error;
+
+    COAP_OPTION_KEY(*option) = key;
+    COAP_OPTION_LENGTH(*option) = length;
+    memcpy(COAP_OPTION_DATA(*option), data, length);
+
+    /* we can pass NULL here as delete function since option is released automatically  */
+    node = coap_new_listnode(option, NULL);
+
+    if (node)
+        return node;
+
+    error: perror("new_option_node: malloc");
+    coap_free( option);
+    return NULL;
+}
+
+typedef struct
+{
+    unsigned char code;
+    char *media_type;
+} content_type_t;
+
+void cmdline_content_type(char *arg, unsigned short key)
+{
+    static content_type_t content_types[] =
+    {
+    { 0, "plain" },
+    { 0, "text/plain" },
+    { 40, "link" },
+    { 40, "link-format" },
+    { 40, "application/link-format" },
+    { 41, "xml" },
+    { 42, "binary" },
+    { 42, "octet-stream" },
+    { 42, "application/octet-stream" },
+    { 47, "exi" },
+    { 47, "application/exi" },
+    { 50, "json" },
+    { 50, "application/json" },
+    { 255, NULL } };
+    coap_list_t *node;
+    unsigned char i, value[10];
+    int valcnt = 0;
+    unsigned char buf[2];
+    char *p, *q = arg;
+
+    while (q && *q)
+    {
+        p = strchr(q, ',');
+
+        if (isdigit(*q))
+        {
+            if (p)
+                *p = '\0';
+            value[valcnt++] = atoi(q);
+        }
+        else
+        {
+            for (i = 0;
+                    content_types[i].media_type
+                            && strncmp(q, content_types[i].media_type, p ? p - q : strlen(q)) != 0;
+                    ++i)
+                ;
+
+            if (content_types[i].media_type)
+            {
+                value[valcnt] = content_types[i].code;
+                valcnt++;
+            }
+            else
+            {
+                warn("W: unknown content-type '%s'\n", arg);
+            }
+        }
+
+        if (!p || key == COAP_OPTION_CONTENT_TYPE)
+            break;
+
+        q = p + 1;
+    }
+
+    for (i = 0; i < valcnt; ++i)
+    {
+        node = new_option_node(key, coap_encode_var_bytes(buf, value[i]), buf);
+        if (node)
+            coap_insert(&optlist, node, order_opts);
+    }
+}
+
+void cmdline_uri(char *arg)
+{
+    unsigned char portbuf[2];
+#define BUFSIZE 40
+    unsigned char _buf[BUFSIZE];
+    unsigned char *buf = _buf;
+    size_t buflen;
+    int res;
+
+    if (proxy.length)
+    { /* create Proxy-Uri from argument */
+        size_t len = strlen(arg);
+        while (len > 270)
+        {
+            coap_insert(&optlist,
+                    new_option_node(COAP_OPTION_PROXY_URI, 270, (unsigned char *) arg), order_opts);
+            len -= 270;
+            arg += 270;
+        }
+
+        coap_insert(&optlist, new_option_node(COAP_OPTION_PROXY_URI, len, (unsigned char *) arg),
+                order_opts);
+    }
+    else
+    { /* split arg into Uri-* options */
+        coap_split_uri((unsigned char *) arg, strlen(arg), &uri);
+
+        if (uri.port != COAP_DEFAULT_PORT)
+        {
+            coap_insert(&optlist,
+                    new_option_node(COAP_OPTION_URI_PORT, coap_encode_var_bytes(portbuf, uri.port),
+                            portbuf), order_opts);
+        }
+
+        if (uri.path.length)
+        {
+            buflen = BUFSIZE;
+            res = coap_split_path(uri.path.s, uri.path.length, buf, &buflen);
+
+            while (res--)
+            {
+                coap_insert(&optlist,
+                        new_option_node(COAP_OPTION_URI_PATH, COAP_OPT_LENGTH(buf),
+                                COAP_OPT_VALUE(buf)), order_opts);
+
+                buf += COAP_OPT_SIZE(buf);
+            }
+        }
+
+        if (uri.query.length)
+        {
+            buflen = BUFSIZE;
+            buf = _buf;
+            res = coap_split_query(uri.query.s, uri.query.length, buf, &buflen);
+
+            while (res--)
+            {
+                coap_insert(&optlist,
+                        new_option_node(COAP_OPTION_URI_QUERY, COAP_OPT_LENGTH(buf),
+                                COAP_OPT_VALUE(buf)), order_opts);
+
+                buf += COAP_OPT_SIZE(buf);
+            }
+        }
+    }
+}
+
+int cmdline_blocksize(char *arg)
+{
+    unsigned short size;
+
+    again: size = 0;
+    while (*arg && *arg != ',')
+        size = size * 10 + (*arg++ - '0');
+
+    if (*arg == ',')
+    {
+        arg++;
+        block.num = size;
+        goto again;
+    }
+
+    if (size)
+        block.szx = (coap_fls(size >> 4) - 1) & 0x07;
+
+    flags |= FLAGS_BLOCK;
+    return 1;
+}
+
+/* Called after processing the options from the commandline to set 
+ * Block1 or Block2 depending on method. */
+void set_blocksize()
+{
+    static unsigned char buf[4]; /* hack: temporarily take encoded bytes */
+    unsigned short opt;
+
+    if (method != COAP_REQUEST_DELETE)
+    {
+        opt = method == COAP_REQUEST_GET ? COAP_OPTION_BLOCK2 : COAP_OPTION_BLOCK1;
+
+        coap_insert(&optlist,
+                new_option_node(opt, coap_encode_var_bytes(buf, (block.num << 4 | block.szx)), buf),
+                order_opts);
+    }
+}
+
+void cmdline_subscribe(char *arg)
+{
+    obs_seconds = atoi(optarg);
+    coap_insert(&optlist, new_option_node(COAP_OPTION_SUBSCRIPTION, 0, NULL), order_opts);
+}
+
+int cmdline_proxy(char *arg)
+{
+    char *proxy_port_str = strrchr((const char *) arg, ':'); /* explicit port ? */
+    if (proxy_port_str)
+    {
+        char *ipv6_delimiter = strrchr((const char *) arg, ']');
+        if (!ipv6_delimiter)
+        {
+            if (proxy_port_str == strchr((const char *) arg, ':'))
+            {
+                /* host:port format - host not in ipv6 hexadecimal string format */
+                *proxy_port_str++ = '\0'; /* split */
+                proxy_port = atoi(proxy_port_str);
+            }
+        }
+        else
+        {
+            arg = strchr((const char *) arg, '[');
+            if (!arg)
+                return 0;
+            arg++;
+            *ipv6_delimiter = '\0'; /* split */
+            if (ipv6_delimiter + 1 == proxy_port_str++)
+            {
+                /* [ipv6 address]:port */
+                proxy_port = atoi(proxy_port_str);
+            }
+        }
+    }
+
+    proxy.length = strlen(arg);
+    if ((proxy.s = coap_malloc(proxy.length + 1)) == NULL)
+    {
+        proxy.length = 0;
+        return 0;
+    }
+
+    memcpy(proxy.s, arg, proxy.length + 1);
+    return 1;
+}
+
+inline void cmdline_token(char *arg)
+{
+    strncpy((char *) the_token.s, arg, min(sizeof(_token_data), strlen(arg)));
+    the_token.length = strlen(arg);
+}
+
+void cmdline_option(char *arg)
+{
+    unsigned int num = 0;
+
+    while (*arg && *arg != ',')
+    {
+        num = num * 10 + (*arg - '0');
+        ++arg;
+    }
+    if (*arg == ',')
+        ++arg;
+
+    coap_insert(&optlist, new_option_node(num, strlen(arg), (unsigned char *) arg), order_opts);
+}
+
+extern int check_segment(const unsigned char *s, size_t length);
+extern void decode_segment(const unsigned char *seg, size_t length, unsigned char *buf);
+
+int cmdline_input(char *text, str *buf)
+{
+    int len;
+    len = check_segment((unsigned char *) text, strlen(text));
+
+    if (len < 0)
+        return 0;
+
+    buf->s = (unsigned char *) coap_malloc(len);
+    if (!buf->s)
+        return 0;
+
+    buf->length = len;
+    decode_segment((unsigned char *) text, strlen(text), buf->s);
+    return 1;
+}
+
+int cmdline_input_from_file(char *filename, str *buf)
+{
+    FILE *inputfile = NULL;
+    ssize_t len;
+    int result = 1;
+    struct stat statbuf;
+
+    if (!filename || !buf)
+        return 0;
+
+    if (filename[0] == '-' && !filename[1])
+    { /* read from stdin */
+        buf->length = 20000;
+        buf->s = (unsigned char *) coap_malloc(buf->length);
+        if (!buf->s)
+            return 0;
+
+        inputfile = stdin;
+    }
+    else
+    {
+        /* read from specified input file */
+        if (stat(filename, &statbuf) < 0)
+        {
+            perror("cmdline_input_from_file: stat");
+            return 0;
+        }
+
+        buf->length = statbuf.st_size;
+        buf->s = (unsigned char *) coap_malloc(buf->length);
+        if (!buf->s)
+            return 0;
+
+        inputfile = fopen(filename, "r");
+        if (!inputfile)
+        {
+            perror("cmdline_input_from_file: fopen");
+            coap_free(buf->s);
+            return 0;
+        }
+    }
+
+    len = fread(buf->s, 1, buf->length, inputfile);
+
+    if (len < buf->length)
+    {
+        if (ferror(inputfile) != 0)
+        {
+            perror("cmdline_input_from_file: fread");
+            coap_free(buf->s);
+            buf->length = 0;
+            buf->s = NULL;
+            result = 0;
+        }
+        else
+        {
+            buf->length = len;
+        }
+    }
+
+    if (inputfile != stdin)
+        fclose(inputfile);
+
+    return result;
+}
+
+method_t cmdline_method(char *arg)
+{
+    static char *methods[] =
+    { 0, "get", "post", "put", "delete", 0 };
+    unsigned char i;
+
+    for (i = 1; methods[i] && strcasecmp(arg, methods[i]) != 0; ++i)
+        ;
+
+    return i; /* note that we do not prevent illegal methods */
+}
+
+coap_context_t *
+get_context(const char *node, const char *port)
+{
+    coap_context_t *ctx = NULL;
+    int s;
+    struct addrinfo hints;
+    struct addrinfo *result, *rp;
+
+    memset(&hints, 0, sizeof(struct addrinfo));
+    hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */
+    hints.ai_socktype = SOCK_DGRAM; /* Coap uses UDP */
+    hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST | AI_NUMERICSERV | AI_ALL;
+
+    s = getaddrinfo(node, port, &hints, &result);
+    if (s != 0)
+    {
+        fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(s));
+        return NULL;
+    }
+
+    /* iterate through results until success */
+    for (rp = result; rp != NULL; rp = rp->ai_next)
+    {
+        coap_address_t addr;
+
+        if (rp->ai_addrlen <= sizeof(addr.addr))
+        {
+            coap_address_init(&addr);
+            addr.size = rp->ai_addrlen;
+            memcpy(&addr.addr, rp->ai_addr, rp->ai_addrlen);
+
+            ctx = coap_new_context(&addr);
+            if (ctx)
+            {
+                /* TODO: output address:port for successful binding */
+                goto finish;
+            }
+        }
+    }
+
+    fprintf(stderr, "no context available for interface '%s'\n", node);
+
+    finish: freeaddrinfo(result);
+    return ctx;
+}
+
+int main(int argc, char **argv)
+{
+    coap_context_t *ctx = NULL;
+    coap_address_t dst;
+    static char addr[INET6_ADDRSTRLEN];
+    void *addrptr = NULL;
+    fd_set readfds;
+    struct timeval tv;
+    int result;
+    coap_tick_t now;
+    coap_queue_t *nextpdu;
+    coap_pdu_t *pdu;
+    static str server;
+    unsigned short port = COAP_DEFAULT_PORT;
+    char port_str[NI_MAXSERV] = "0";
+    int opt, res;
+    char *group = NULL;
+    coap_log_t log_level = LOG_WARNING;
+    coap_tid_t tid = COAP_INVALID_TID;
+
+    while ((opt = getopt(argc, argv, "Nb:e:f:g:m:p:s:t:o:v:A:B:O:P:T:")) != -1)
+    {
+        switch (opt)
+        {
+            case 'b':
+                cmdline_blocksize(optarg);
+                break;
+            case 'B':
+                wait_seconds = atoi(optarg);
+                break;
+            case 'e':
+                if (!cmdline_input(optarg, &payload))
+                    payload.length = 0;
+                break;
+            case 'f':
+                if (!cmdline_input_from_file(optarg, &payload))
+                    payload.length = 0;
+                break;
+            case 'g':
+                group = optarg;
+                break;
+            case 'p':
+                strncpy(port_str, optarg, NI_MAXSERV - 1);
+                port_str[NI_MAXSERV - 1] = '\0';
+                break;
+            case 'm':
+                method = cmdline_method(optarg);
+                break;
+            case 'N':
+                msgtype = COAP_MESSAGE_NON;
+                break;
+            case 's':
+                cmdline_subscribe(optarg);
+                break;
+            case 'o':
+                output_file.length = strlen(optarg);
+                output_file.s = (unsigned char *) coap_malloc(output_file.length + 1);
+
+                if (!output_file.s)
+                {
+                    fprintf(stderr, "cannot set output file: insufficient memory\n");
+                    exit(-1);
+                }
+                else
+                {
+                    /* copy filename including trailing zero */
+                    memcpy(output_file.s, optarg, output_file.length + 1);
+                }
+                break;
+            case 'A':
+                cmdline_content_type(optarg, COAP_OPTION_ACCEPT);
+                break;
+            case 't':
+                cmdline_content_type(optarg, COAP_OPTION_CONTENT_TYPE);
+                break;
+            case 'O':
+                cmdline_option(optarg);
+                break;
+            case 'P':
+                if (!cmdline_proxy(optarg))
+                {
+                    fprintf(stderr, "error specifying proxy address\n");
+                    exit(-1);
+                }
+                break;
+            case 'T':
+                cmdline_token(optarg);
+                break;
+            case 'v':
+                log_level = strtol(optarg, NULL, 10);
+                break;
+            default:
+                usage(argv[0], PACKAGE_VERSION);
+                exit(1);
+        }
+    }
+
+    coap_set_log_level(log_level);
+
+    if (optind < argc)
+        cmdline_uri(argv[optind]);
+    else
+    {
+        usage(argv[0], PACKAGE_VERSION);
+        exit(1);
+    }
+
+    if (proxy.length)
+    {
+        server = proxy;
+        port = proxy_port;
+    }
+    else
+    {
+        server = uri.host;
+        port = uri.port;
+    }
+
+    /* resolve destination address where server should be sent */
+    res = resolve_address(&server, &dst.addr.sa);
+
+    if (res < 0)
+    {
+        fprintf(stderr, "failed to resolve address\n");
+        exit(-1);
+    }
+
+    dst.size = res;
+    dst.addr.sin.sin_port = htons(port);
+
+    /* add Uri-Host if server address differs from uri.host */
+
+    switch (dst.addr.sa.sa_family)
+    {
+        case AF_INET:
+            addrptr = &dst.addr.sin.sin_addr;
+
+            /* create context for IPv4 */
+            ctx = get_context("0.0.0.0", port_str);
+            break;
+        case AF_INET6:
+            addrptr = &dst.addr.sin6.sin6_addr;
+
+            /* create context for IPv6 */
+            ctx = get_context("::", port_str);
+            break;
+        default:
+            ;
+    }
+
+    if (!ctx)
+    {
+        coap_log(LOG_EMERG, "cannot create context\n");
+        return -1;
+    }
+
+    coap_register_option(ctx, COAP_OPTION_BLOCK2);
+    coap_register_response_handler(ctx, message_handler);
+
+    /* join multicast group if requested at command line */
+    if (group)
+        join(ctx, group);
+
+    /* construct CoAP message */
+
+    if (!proxy.length && addrptr
+            && (inet_ntop(dst.addr.sa.sa_family, addrptr, addr, sizeof(addr)) != 0)
+            && (strlen(addr) != uri.host.length || memcmp(addr, uri.host.s, uri.host.length) != 0))
+    {
+        /* add Uri-Host */
+
+        coap_insert(&optlist, new_option_node(COAP_OPTION_URI_HOST, uri.host.length, uri.host.s),
+                order_opts);
+    }
+
+    /* set block option if requested at commandline */
+    if (flags & FLAGS_BLOCK)
+        set_blocksize();
+
+    if (!(pdu = coap_new_request(ctx, method, optlist)))
+        return -1;
+
+#ifndef NDEBUG
+    if (LOG_DEBUG <= coap_get_log_level())
+    {
+        debug("sending CoAP request:\n");
+        coap_show_pdu(pdu);
+    }
+#endif
+
+    if (pdu->hdr->type == COAP_MESSAGE_CON)
+        tid = coap_send_confirmed(ctx, &dst, pdu);
+    else
+        tid = coap_send(ctx, &dst, pdu);
+
+    if (pdu->hdr->type != COAP_MESSAGE_CON || tid == COAP_INVALID_TID)
+        coap_delete_pdu(pdu);
+
+    set_timeout(&max_wait, wait_seconds);
+    debug("timeout is set to %d seconds\n", wait_seconds);
+
+    while (!(ready && coap_can_exit(ctx)))
+    {
+        FD_ZERO(&readfds);
+        FD_SET(ctx->sockfd, &readfds);
+
+        nextpdu = coap_peek_next(ctx);
+
+        coap_ticks(&now);
+        while (nextpdu && nextpdu->t <= now - ctx->sendqueue_basetime)
+        {
+            coap_retransmit(ctx, coap_pop_next(ctx));
+            nextpdu = coap_peek_next(ctx);
+        }
+
+        if (nextpdu && nextpdu->t < min(obs_wait ? obs_wait : max_wait, max_wait) - now)
+        {
+            /* set timeout if there is a pdu to send */
+            tv.tv_usec = ((nextpdu->t) % COAP_TICKS_PER_SECOND) * 1000000 / COAP_TICKS_PER_SECOND;
+            tv.tv_sec = (nextpdu->t) / COAP_TICKS_PER_SECOND;
+        }
+        else
+        {
+            /* check if obs_wait fires before max_wait */
+            if (obs_wait && obs_wait < max_wait)
+            {
+                tv.tv_usec = ((obs_wait - now) % COAP_TICKS_PER_SECOND) * 1000000
+                        / COAP_TICKS_PER_SECOND;
+                tv.tv_sec = (obs_wait - now) / COAP_TICKS_PER_SECOND;
+            }
+            else
+            {
+                tv.tv_usec = ((max_wait - now) % COAP_TICKS_PER_SECOND) * 1000000
+                        / COAP_TICKS_PER_SECOND;
+                tv.tv_sec = (max_wait - now) / COAP_TICKS_PER_SECOND;
+            }
+        }
+
+        result = select(ctx->sockfd + 1, &readfds, 0, 0, &tv);
+
+        if (result < 0)
+        { /* error */
+            perror("select");
+        }
+        else if (result > 0)
+        { /* read from socket */
+            if (FD_ISSET(ctx->sockfd, &readfds))
+            {
+                coap_read(ctx); /* read received data */
+                coap_dispatch(ctx); /* and dispatch PDUs from receivequeue */
+            }
+        }
+        else
+        { /* timeout */
+            coap_ticks(&now);
+            if (max_wait <= now)
+            {
+                info("timeout\n");
+                break;
+            }
+            if (obs_wait && obs_wait <= now)
+            {
+                debug("clear observation relationship\n");
+                clear_obs(ctx, &dst); /* FIXME: handle error case COAP_TID_INVALID */
+
+                /* make sure that the obs timer does not fire again */
+                obs_wait = 0;
+                obs_seconds = 0;
+            }
+        }
+    }
+
+    close_output();
+
+    coap_free_context(ctx);
+
+    return 0;
+}
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/etsi_iot_01.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/etsi_iot_01.c
new file mode 100644 (file)
index 0000000..83f582e
--- /dev/null
@@ -0,0 +1,796 @@
+/* CoAP server for first ETSI CoAP plugtest, March 2012
+ *
+ * Copyright (C) 2012--2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <string.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <ctype.h>
+#include <sys/select.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <netdb.h>
+#include <sys/stat.h>
+#include <dirent.h>
+#include <errno.h>
+#include <signal.h>
+
+#include "config.h"
+#include "uthash.h"
+#include "coap.h"
+
+#define COAP_RESOURCE_CHECK_TIME_SEC  1
+
+#ifndef min
+#define min(a,b) ((a) < (b) ? (a) : (b))
+#endif
+
+/* temporary storage for dynamic resource representations */
+static int quit = 0;
+
+#define COAP_OPT_BLOCK_SZX_MAX 6 /**< allowed maximum for block szx value */
+
+#define REQUIRE_ETAG 0x01      /* flag for coap_payload_t: require ETag option  */
+typedef struct
+{
+    UT_hash_handle hh;
+    coap_key_t resource_key; /* foreign key that points into resource space */
+    unsigned int flags; /* some flags to control behavior */
+    size_t max_data; /* maximum size allocated for @p data */
+    uint16_t media_type; /* media type for this object */
+    size_t length; /* length of data */
+    unsigned char data[]; /* the actual contents */
+} coap_payload_t;
+
+coap_payload_t *test_resources = NULL;
+
+/** 
+ * This structure is used to store URIs for dynamically allocated
+ * resources, usually by POST or PUT.
+ */
+typedef struct
+{
+    UT_hash_handle hh;
+    coap_key_t resource_key; /* foreign key that points into resource space */
+    size_t length; /* length of data */
+    unsigned char data[]; /* the actual contents */
+} coap_dynamic_uri_t;
+
+coap_dynamic_uri_t *test_dynamic_uris = NULL;
+
+/* This variable is used to mimic long-running tasks that require
+ * asynchronous responses. */
+static coap_async_state_t *async = NULL;
+
+/* SIGINT handler: set quit to 1 for graceful termination */
+void handle_sigint(int signum)
+{
+    quit = 1;
+}
+
+#define INDEX "libcoap server for ETSI CoAP Plugtest, March 2012, Paris\n" \
+             "Copyright (C) 2012 Olaf Bergmann <bergmann@tzi.org>\n\n"
+
+coap_payload_t *
+coap_new_payload(size_t size)
+{
+    coap_payload_t *p;
+    p = (coap_payload_t *) coap_malloc(sizeof(coap_payload_t) + size);
+    if (p)
+    {
+        memset(p, 0, sizeof(coap_payload_t));
+        p->max_data = size;
+    }
+
+    return p;
+}
+
+static inline coap_payload_t *
+coap_find_payload(const coap_key_t key)
+{
+    coap_payload_t *p;
+    HASH_FIND(hh, test_resources, key, sizeof(coap_key_t), p);
+    return p;
+}
+
+static inline void coap_add_payload(const coap_key_t key, coap_payload_t *payload,
+        coap_dynamic_uri_t *uri)
+{
+    assert(payload);
+
+    memcpy(payload->resource_key, key, sizeof(coap_key_t));
+    HASH_ADD(hh, test_resources, resource_key, sizeof(coap_key_t), payload);
+
+    if (uri)
+    {
+        memcpy(uri->resource_key, key, sizeof(coap_key_t));
+        HASH_ADD(hh, test_dynamic_uris, resource_key, sizeof(coap_key_t), uri);
+    }
+}
+
+static inline void coap_delete_payload(coap_payload_t *payload)
+{
+    if (payload)
+    {
+        coap_dynamic_uri_t *uri;
+        HASH_FIND(hh, test_dynamic_uris, payload->resource_key, sizeof(coap_key_t), uri);
+        if (uri)
+        {
+            HASH_DELETE(hh, test_dynamic_uris, uri);
+            coap_free(uri);
+        }
+    }
+
+    HASH_DELETE(hh, test_resources, payload);
+    coap_free(payload);
+}
+
+void hnd_get_index(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    unsigned char buf[3];
+
+    response->hdr->code = COAP_RESPONSE_CODE(205);
+
+    coap_add_option(response, COAP_OPTION_CONTENT_TYPE,
+            coap_encode_var_bytes(buf, COAP_MEDIATYPE_TEXT_PLAIN), buf);
+
+    coap_add_option(response, COAP_OPTION_MAXAGE, coap_encode_var_bytes(buf, 0x2ffff), buf);
+
+    coap_add_data(response, strlen(INDEX), (unsigned char *) INDEX);
+}
+
+void hnd_get_resource(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    coap_key_t etag;
+    unsigned char buf[2];
+    coap_payload_t *test_payload;
+    coap_block_t block;
+
+    test_payload = coap_find_payload(resource->key);
+    if (!test_payload)
+    {
+        response->hdr->code = COAP_RESPONSE_CODE(500);
+
+        return;
+    }
+
+    response->hdr->code = COAP_RESPONSE_CODE(205);
+
+    coap_add_option(response, COAP_OPTION_CONTENT_TYPE,
+            coap_encode_var_bytes(buf, test_payload->media_type), buf);
+
+    /* add etag for the resource */
+    if (test_payload->flags & REQUIRE_ETAG)
+    {
+        memset(etag, 0, sizeof(etag));
+        coap_hash(test_payload->data, test_payload->length, etag);
+        coap_add_option(response, COAP_OPTION_ETAG, sizeof(etag), etag);
+    }
+
+    if (request)
+    {
+        int res;
+
+        if (coap_get_block(request, COAP_OPTION_BLOCK2, &block))
+        {
+            res = coap_write_block_opt(&block, COAP_OPTION_BLOCK2, response, test_payload->length);
+
+            switch (res)
+            {
+                case -2: /* illegal block */
+                    response->hdr->code = COAP_RESPONSE_CODE(400);
+                    goto error;
+                case -1: /* should really not happen */
+                    assert(0);
+                    /* fall through if assert is a no-op */
+                case -3: /* cannot handle request */
+                    response->hdr->code = COAP_RESPONSE_CODE(500);
+                    goto error;
+                default: /* everything is good */
+                    ;
+            }
+
+            coap_add_block(response, test_payload->length, test_payload->data, block.num,
+                    block.szx);
+        }
+        else
+        {
+            if (!coap_add_data(response, test_payload->length, test_payload->data))
+            {
+                /* set initial block size, will be lowered by
+                 * coap_write_block_opt) automatically */
+                block.szx = 6;
+                coap_write_block_opt(&block, COAP_OPTION_BLOCK2, response, test_payload->length);
+
+                coap_add_block(response, test_payload->length, test_payload->data, block.num,
+                        block.szx);
+            }
+        }
+    }
+    else
+    { /* this is a notification, block is 0 */
+        /* FIXME: need to store block size with subscription */
+    }
+
+    return;
+
+    error: coap_add_data(response, strlen(coap_response_phrase(response->hdr->code)),
+            (unsigned char *) coap_response_phrase(response->hdr->code));
+}
+
+/* DELETE handler for dynamic resources created by POST /test */
+void hnd_delete_resource(coap_context_t *ctx, struct coap_resource_t *resource,
+        coap_address_t *peer, coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    coap_payload_t *payload;
+
+    payload = coap_find_payload(resource->key);
+
+    if (payload)
+        coap_delete_payload(payload);
+
+    coap_delete_resource(ctx, resource->key);
+
+    response->hdr->code = COAP_RESPONSE_CODE(202);
+}
+
+void hnd_post_test(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *option;
+    coap_payload_t *test_payload;
+    size_t len;
+    size_t l = 6 + sizeof(void *);
+    coap_dynamic_uri_t *uri;
+    unsigned char *data;
+
+#define BUFSIZE 20
+    int res;
+    unsigned char _buf[BUFSIZE];
+    unsigned char *buf = _buf;
+    size_t buflen = BUFSIZE;
+
+    coap_get_data(request, &len, &data);
+
+    /* allocate storage for resource and to hold URI */
+    test_payload = coap_new_payload(len);
+    uri = (coap_dynamic_uri_t *) coap_malloc(sizeof(coap_dynamic_uri_t) + l);
+    if (!(test_payload && uri))
+    {
+        coap_log(LOG_CRIT, "cannot allocate new resource under /test");
+        response->hdr->code = COAP_RESPONSE_CODE(500);
+        coap_free(test_payload);
+        coap_free(uri);
+    }
+    else
+    {
+        coap_resource_t *r;
+
+        memset(uri, 0, sizeof(coap_dynamic_uri_t));
+        uri->length = min(l, snprintf((char *)uri->data, l, "test/%p", test_payload));
+        test_payload->length = len;
+
+        memcpy(test_payload->data, data, len);
+
+        r = coap_resource_init(uri->data, uri->length, 0);
+        coap_register_handler(r, COAP_REQUEST_GET, hnd_get_resource);
+        coap_register_handler(r, COAP_REQUEST_DELETE, hnd_delete_resource);
+
+        /* set media_type if available */
+        option = coap_check_option(request, COAP_OPTION_CONTENT_TYPE, &opt_iter);
+        if (option)
+        {
+            test_payload->media_type = coap_decode_var_bytes(COAP_OPT_VALUE(option),
+                    COAP_OPT_LENGTH(option));
+        }
+
+        coap_add_resource(ctx, r);
+        coap_add_payload(r->key, test_payload, uri);
+
+        /* add Location-Path */
+        res = coap_split_path(uri->data, uri->length, buf, &buflen);
+
+        while (res--)
+        {
+            coap_add_option(response, COAP_OPTION_LOCATION_PATH, COAP_OPT_LENGTH(buf),
+                    COAP_OPT_VALUE(buf));
+
+            buf += COAP_OPT_SIZE(buf);
+        }
+
+        response->hdr->code = COAP_RESPONSE_CODE(201);
+    }
+
+}
+
+void hnd_put_test(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *option;
+    coap_payload_t *payload;
+    size_t len;
+    unsigned char *data;
+
+    response->hdr->code = COAP_RESPONSE_CODE(204);
+
+    coap_get_data(request, &len, &data);
+
+    payload = coap_find_payload(resource->key);
+    if (payload && payload->max_data < len)
+    { /* need more storage */
+        coap_delete_payload(payload);
+        payload = NULL;
+        /* bug: when subsequent coap_new_payload() fails, our old contents
+         is gone */
+    }
+
+    if (!payload)
+    { /* create new payload */
+        payload = coap_new_payload(len);
+        if (!payload)
+            goto error;
+
+        coap_add_payload(resource->key, payload, NULL);
+    }
+    payload->length = len;
+    memcpy(payload->data, data, len);
+
+    option = coap_check_option(request, COAP_OPTION_CONTENT_TYPE, &opt_iter);
+    if (option)
+    {
+        /* set media type given in request */
+        payload->media_type = coap_decode_var_bytes(COAP_OPT_VALUE(option),
+                COAP_OPT_LENGTH(option));
+    }
+    else
+    {
+        /* set default value */
+        payload->media_type = COAP_MEDIATYPE_TEXT_PLAIN;
+    }
+    /* FIXME: need to change attribute ct of resource. 
+     To do so, we need dynamic management of the attribute value
+     */
+
+    return;
+    error:
+    warn("cannot modify resource\n");
+    response->hdr->code = COAP_RESPONSE_CODE(500);
+}
+
+void hnd_delete_test(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    /* the ETSI validation tool does not like empty resources... */
+#if 0
+    coap_payload_t *payload;
+    payload = coap_find_payload(resource->key);
+
+    if (payload)
+    payload->length = 0;
+#endif
+
+    response->hdr->code = COAP_RESPONSE_CODE(202);
+}
+
+void hnd_get_query(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    coap_opt_iterator_t opt_iter;
+    coap_opt_filter_t f;
+    coap_opt_t *q;
+    size_t len, L;
+    unsigned char buf[70];
+
+    response->hdr->code = COAP_RESPONSE_CODE(205);
+
+    coap_add_option(response, COAP_OPTION_CONTENT_TYPE,
+            coap_encode_var_bytes(buf, COAP_MEDIATYPE_TEXT_PLAIN), buf);
+
+    coap_option_filter_clear(f);
+    coap_option_setb(f, COAP_OPTION_URI_QUERY);
+
+    coap_option_iterator_init(request, &opt_iter, f);
+
+    len = 0;
+    while ((len < sizeof(buf)) && (q = coap_option_next(&opt_iter)))
+    {
+        L = min(sizeof(buf) - len, 11);
+        memcpy(buf + len, "Uri-Query: ", L);
+        len += L;
+
+        L = min(sizeof(buf) - len, COAP_OPT_LENGTH(q));
+        memcpy(buf + len, COAP_OPT_VALUE(q), L);
+        len += L;
+
+        if (len < sizeof(buf))
+            buf[len++] = '\n';
+    }
+
+    coap_add_data(response, len, buf);
+}
+
+/* handler for TD_COAP_CORE_16 */
+void hnd_get_separate(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *option;
+    coap_opt_filter_t f;
+    unsigned long delay = 5;
+
+    if (async)
+    {
+        if (async->id != request->hdr->id)
+        {
+            coap_opt_filter_t f;
+            coap_option_filter_clear(f);
+            response->hdr->code = COAP_RESPONSE_CODE(503);
+        }
+        return;
+    }
+
+    /* search for option delay in query list */
+    coap_option_filter_clear(f);
+    coap_option_setb(f, COAP_OPTION_URI_QUERY);
+
+    coap_option_iterator_init(request, &opt_iter, f);
+
+    while ((option = coap_option_next(&opt_iter)))
+    {
+        if (strncmp("delay=", (char *) COAP_OPT_VALUE(option), 6) == 0)
+        {
+            int i;
+            unsigned long d = 0;
+
+            for (i = 6; i < COAP_OPT_LENGTH(option); ++i)
+                d = d * 10 + COAP_OPT_VALUE(option)[i] - '0';
+
+            /* don't allow delay to be less than COAP_RESOURCE_CHECK_TIME*/
+            delay = d < COAP_RESOURCE_CHECK_TIME_SEC ? COAP_RESOURCE_CHECK_TIME_SEC : d;
+            debug("set delay to %lu\n", delay);
+            break;
+        }
+    }
+
+    async = coap_register_async(ctx, peer, request, COAP_ASYNC_SEPARATE,
+            (void *) (COAP_TICKS_PER_SECOND * delay));
+}
+
+void check_async(coap_context_t *ctx, coap_tick_t now)
+{
+    coap_pdu_t *response;
+    coap_async_state_t *tmp;
+    unsigned char buf[2];
+    size_t size = sizeof(coap_hdr_t) + 8;
+
+    if (!async || now < async->created + (unsigned long) async->appdata)
+        return;
+
+    size += async->tokenlen;
+
+    response = coap_pdu_init(async->flags & COAP_ASYNC_CONFIRM ? COAP_MESSAGE_CON : COAP_MESSAGE_NON,
+    COAP_RESPONSE_CODE(205), 0, size);
+    if (!response)
+    {
+        debug("check_async: insufficient memory, we'll try later\n");
+        async->appdata = (void *) ((unsigned long) async->appdata + 15 * COAP_TICKS_PER_SECOND);
+        return;
+    }
+
+    response->hdr->id = coap_new_message_id(ctx);
+
+    if (async->tokenlen)
+        coap_add_token(response, async->tokenlen, async->token);
+
+    coap_add_option(response, COAP_OPTION_CONTENT_TYPE,
+            coap_encode_var_bytes(buf, COAP_MEDIATYPE_TEXT_PLAIN), buf);
+
+    coap_add_data(response, 4, (unsigned char *) "done");
+
+    if (coap_send(ctx, &async->peer, response) == COAP_INVALID_TID)
+    {
+        debug("check_async: cannot send response for message %d\n", response->hdr->id);
+    }
+    coap_delete_pdu(response);
+
+    coap_remove_async(ctx, async->id, &tmp);
+    coap_free_async(async);
+    async = NULL;
+}
+
+coap_payload_t *
+make_large(char *filename)
+{
+    coap_payload_t *payload;
+    FILE *inputfile = NULL;
+    struct stat statbuf;
+
+    if (!filename)
+        return NULL;
+
+    /* read from specified input file */
+    if (stat(filename, &statbuf) < 0)
+    {
+        warn("cannot stat file %s\n", filename);
+        return NULL;
+    }
+
+    payload = coap_new_payload(statbuf.st_size);
+    if (!payload)
+        return NULL;
+
+    inputfile = fopen(filename, "r");
+    if (!inputfile)
+    {
+        warn("cannot read file %s\n", filename);
+        coap_free(payload);
+        return NULL;
+    }
+
+    payload->length = fread(payload->data, 1, statbuf.st_size, inputfile);
+    payload->media_type = 41;
+
+    fclose(inputfile);
+
+    return payload;
+}
+
+void init_resources(coap_context_t *ctx)
+{
+    coap_resource_t *r;
+    coap_payload_t *test_payload;
+
+    test_payload = coap_new_payload(200);
+    if (!test_payload)
+        coap_log(LOG_CRIT, "cannot allocate resource /test");
+    else
+    {
+        test_payload->length = 13;
+        memcpy(test_payload->data, "put data here", test_payload->length);
+        /* test_payload->media_type is 0 anyway */
+
+        r = coap_resource_init((unsigned char *) "test", 4, 0);
+        coap_register_handler(r, COAP_REQUEST_GET, hnd_get_resource);
+        coap_register_handler(r, COAP_REQUEST_POST, hnd_post_test);
+        coap_register_handler(r, COAP_REQUEST_PUT, hnd_put_test);
+        coap_register_handler(r, COAP_REQUEST_DELETE, hnd_delete_test);
+
+        coap_add_attr(r, (unsigned char *) "ct", 2, (unsigned char *) "0", 1, 0);
+        coap_add_attr(r, (unsigned char *) "rt", 2, (unsigned char *) "test", 4, 0);
+        coap_add_attr(r, (unsigned char *) "if", 2, (unsigned char *) "core#b", 6, 0);
+#if 0
+        coap_add_attr(r, (unsigned char *)"obs", 3, NULL, 0, 0);
+#endif
+        coap_add_resource(ctx, r);
+        coap_add_payload(r->key, test_payload, NULL);
+    }
+
+    /* TD_COAP_BLOCK_01 
+     * TD_COAP_BLOCK_02 */
+    test_payload = make_large("etsi_iot_01_largedata.txt");
+    if (!test_payload)
+        coap_log(LOG_CRIT, "cannot allocate resource /large\n");
+    else
+    {
+        r = coap_resource_init((unsigned char *) "large", 5, 0);
+        coap_register_handler(r, COAP_REQUEST_GET, hnd_get_resource);
+
+        coap_add_attr(r, (unsigned char *) "ct", 2, (unsigned char *) "41", 2, 0);
+        coap_add_attr(r, (unsigned char *) "rt", 2, (unsigned char *) "large", 5, 0);
+        coap_add_resource(ctx, r);
+
+        test_payload->flags |= REQUIRE_ETAG;
+
+        coap_add_payload(r->key, test_payload, NULL);
+    }
+
+    /* For TD_COAP_CORE_12 */
+    test_payload = coap_new_payload(20);
+    if (!test_payload)
+        coap_log(LOG_CRIT, "cannot allocate resource /seg1/seg2/seg3\n");
+    else
+    {
+        test_payload->length = 10;
+        memcpy(test_payload->data, "segsegseg!", test_payload->length);
+        /* test_payload->media_type is 0 anyway */
+
+        r = coap_resource_init((unsigned char *) "seg1/seg2/seg3", 14, 0);
+        coap_register_handler(r, COAP_REQUEST_GET, hnd_get_resource);
+
+        coap_add_attr(r, (unsigned char *) "ct", 2, (unsigned char *) "0", 1, 0);
+        coap_add_resource(ctx, r);
+
+        coap_add_payload(r->key, test_payload, NULL);
+    }
+
+    /* For TD_COAP_CORE_13 */
+    r = coap_resource_init((unsigned char *) "query", 5, 0);
+    coap_register_handler(r, COAP_REQUEST_GET, hnd_get_query);
+
+    coap_add_attr(r, (unsigned char *) "ct", 2, (unsigned char *) "0", 1, 0);
+    coap_add_resource(ctx, r);
+
+    /* For TD_COAP_CORE_16 */
+    r = coap_resource_init((unsigned char *) "separate", 8, 0);
+    coap_register_handler(r, COAP_REQUEST_GET, hnd_get_separate);
+
+    coap_add_attr(r, (unsigned char *) "ct", 2, (unsigned char *) "0", 1, 0);
+    coap_add_attr(r, (unsigned char *) "rt", 2, (unsigned char *) "separate", 8, 0);
+    coap_add_resource(ctx, r);
+}
+
+void usage(const char *program, const char *version)
+{
+    const char *p;
+
+    p = strrchr(program, '/');
+    if (p)
+        program = ++p;
+
+    fprintf(stderr, "%s v%s -- ETSI CoAP plugtest server\n"
+            "(c) 2012 Olaf Bergmann <bergmann@tzi.org>\n\n"
+            "usage: %s [-A address] [-p port]\n\n"
+            "\t-A address\tinterface address to bind to\n"
+            "\t-p port\t\tlisten on specified port\n"
+            "\t-v num\t\tverbosity level (default: 3)\n", program, version, program);
+}
+
+coap_context_t *
+get_context(const char *node, const char *port)
+{
+    coap_context_t *ctx = NULL;
+    int s;
+    struct addrinfo hints;
+    struct addrinfo *result, *rp;
+
+    memset(&hints, 0, sizeof(struct addrinfo));
+    hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */
+    hints.ai_socktype = SOCK_DGRAM; /* Coap uses UDP */
+    hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
+
+    s = getaddrinfo(node, port, &hints, &result);
+    if (s != 0)
+    {
+        fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(s));
+        return NULL;
+    }
+
+    /* iterate through results until success */
+    for (rp = result; rp != NULL; rp = rp->ai_next)
+    {
+        coap_address_t addr;
+
+        if (rp->ai_addrlen <= sizeof(addr.addr))
+        {
+            coap_address_init(&addr);
+            addr.size = rp->ai_addrlen;
+            memcpy(&addr.addr, rp->ai_addr, rp->ai_addrlen);
+
+            ctx = coap_new_context(&addr);
+            if (ctx)
+            {
+                /* TODO: output address:port for successful binding */
+                goto finish;
+            }
+        }
+    }
+
+    fprintf(stderr, "no context available for interface '%s'\n", node);
+
+    finish: freeaddrinfo(result);
+    return ctx;
+}
+
+int main(int argc, char **argv)
+{
+    coap_context_t *ctx;
+    fd_set readfds;
+    struct timeval tv, *timeout;
+    int result;
+    coap_tick_t now;
+    coap_queue_t *nextpdu;
+    char addr_str[NI_MAXHOST] = "::";
+    char port_str[NI_MAXSERV] = "5683";
+    int opt;
+    coap_log_t log_level = LOG_WARNING;
+
+    while ((opt = getopt(argc, argv, "A:p:v:")) != -1)
+    {
+        switch (opt)
+        {
+            case 'A':
+                strncpy(addr_str, optarg, NI_MAXHOST - 1);
+                addr_str[NI_MAXHOST - 1] = '\0';
+                break;
+            case 'p':
+                strncpy(port_str, optarg, NI_MAXSERV - 1);
+                port_str[NI_MAXSERV - 1] = '\0';
+                break;
+            case 'v':
+                log_level = strtol(optarg, NULL, 10);
+                break;
+            default:
+                usage(argv[0], PACKAGE_VERSION);
+                exit(1);
+        }
+    }
+
+    coap_set_log_level(log_level);
+
+    ctx = get_context(addr_str, port_str);
+    if (!ctx)
+        return -1;
+
+    coap_register_option(ctx, COAP_OPTION_BLOCK2);
+
+    init_resources(ctx);
+
+    signal(SIGINT, handle_sigint);
+
+    while (!quit)
+    {
+        FD_ZERO(&readfds);
+        FD_SET(ctx->sockfd, &readfds);
+
+        nextpdu = coap_peek_next(ctx);
+
+        coap_ticks(&now);
+        while (nextpdu && nextpdu->t <= now)
+        {
+            coap_retransmit(ctx, coap_pop_next(ctx));
+            nextpdu = coap_peek_next(ctx);
+        }
+
+        if (nextpdu && nextpdu->t <= now + COAP_RESOURCE_CHECK_TIME_SEC)
+        {
+            /* set timeout if there is a pdu to send before our automatic timeout occurs */
+            tv.tv_usec = ((nextpdu->t - now) % COAP_TICKS_PER_SECOND) * 1000000
+                    / COAP_TICKS_PER_SECOND;
+            tv.tv_sec = (nextpdu->t - now) / COAP_TICKS_PER_SECOND;
+            timeout = &tv;
+        }
+        else
+        {
+            tv.tv_usec = 0;
+            tv.tv_sec = COAP_RESOURCE_CHECK_TIME_SEC;
+            timeout = &tv;
+        }
+        result = select(FD_SETSIZE, &readfds, 0, 0, timeout);
+
+        if (result < 0)
+        { /* error */
+            if (errno != EINTR)
+                perror("select");
+        }
+        else if (result > 0)
+        { /* read from socket */
+            if (FD_ISSET(ctx->sockfd, &readfds))
+            {
+                coap_read(ctx); /* read received data */
+                coap_dispatch(ctx); /* and dispatch PDUs from receivequeue */
+            }
+        }
+        else
+        { /* timeout */
+            /* coap_check_resource_list( ctx ); */
+        }
+
+        /* check if we have to send asynchronous responses */
+        check_async(ctx, now);
+    }
+
+    coap_free_context(ctx);
+
+    return 0;
+}
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/rd.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/rd.c
new file mode 100644 (file)
index 0000000..0cc97d2
--- /dev/null
@@ -0,0 +1,750 @@
+/* coap -- simple implementation of the Constrained Application Protocol (CoAP)
+ *         as defined in draft-ietf-core-coap
+ *
+ * Copyright (C) 2010--2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+/**
+ * @file rd.c
+ * @brief CoRE resource directory
+ *
+ * @see http://tools.ietf.org/id/draft-shelby-core-resource-directory
+ */
+
+#include <string.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <ctype.h>
+#include <sys/select.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <netdb.h>
+#include <sys/stat.h>
+#include <dirent.h>
+#include <errno.h>
+#include <signal.h>
+
+#include "config.h"
+#include "utlist.h"
+#include "resource.h"
+#include "coap.h"
+
+#define COAP_RESOURCE_CHECK_TIME 2
+
+#define RD_ROOT_STR   ((unsigned char *)"rd")
+#define RD_ROOT_SIZE  2
+
+#ifndef min
+#define min(a,b) ((a) < (b) ? (a) : (b))
+#endif
+
+typedef struct rd_t
+{
+    UT_hash_handle hh; /**< hash handle (for internal use only) */
+    coap_key_t key; /**< the actual key bytes for this resource */
+
+    size_t etag_len; /**< actual length of @c etag */
+    unsigned char etag[8]; /**< ETag for current description */
+
+    str data; /**< points to the resource description  */
+} rd_t;
+
+rd_t *resources = NULL;
+
+inline rd_t *
+rd_new()
+{
+    rd_t *rd;
+    rd = (rd_t *) coap_malloc(sizeof(rd_t));
+    if (rd)
+        memset(rd, 0, sizeof(rd_t));
+
+    return rd;
+}
+
+inline void rd_delete(rd_t *rd)
+{
+    if (rd)
+    {
+        coap_free(rd->data.s);
+        coap_free(rd);
+    }
+}
+
+/* temporary storage for dynamic resource representations */
+static int quit = 0;
+
+/* SIGINT handler: set quit to 1 for graceful termination */
+void handle_sigint(int signum)
+{
+    quit = 1;
+}
+
+void hnd_get_resource(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    rd_t *rd = NULL;
+    unsigned char buf[3];
+
+    HASH_FIND(hh, resources, resource->key, sizeof(coap_key_t), rd);
+
+    response->hdr->code = COAP_RESPONSE_CODE(205);
+
+    coap_add_option(response, COAP_OPTION_CONTENT_TYPE,
+            coap_encode_var_bytes(buf, COAP_MEDIATYPE_APPLICATION_LINK_FORMAT), buf);
+
+    if (rd && rd->etag_len)
+        coap_add_option(response, COAP_OPTION_ETAG, rd->etag_len, rd->etag);
+
+    if (rd && rd->data.s)
+        coap_add_data(response, rd->data.length, rd->data.s);
+}
+
+void hnd_put_resource(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+#if 1
+    response->hdr->code = COAP_RESPONSE_CODE(501);
+#else /* FIXME */
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *token, *etag;
+    coap_pdu_t *response;
+    size_t size = sizeof(coap_hdr_t);
+    int type = (request->hdr->type == COAP_MESSAGE_CON)
+    ? COAP_MESSAGE_ACK : COAP_MESSAGE_NON;
+    rd_t *rd = NULL;
+    unsigned char code; /* result code */
+    unsigned char *data;
+    str tmp;
+
+    HASH_FIND(hh, resources, resource->key, sizeof(coap_key_t), rd);
+    if (rd)
+    {
+        /* found resource object, now check Etag */
+        etag = coap_check_option(request, COAP_OPTION_ETAG, &opt_iter);
+        if (!etag || (COAP_OPT_LENGTH(etag) != rd->etag_len)
+                || memcmp(COAP_OPT_VALUE(etag), rd->etag, rd->etag_len) != 0)
+        {
+
+            if (coap_get_data(request, &tmp.length, &data))
+            {
+
+                tmp.s = (unsigned char *)coap_malloc(tmp.length);
+                if (!tmp.s)
+                {
+                    debug("hnd_put_rd: cannot allocate storage for new rd\n");
+                    code = COAP_RESPONSE_CODE(503);
+                    goto finish;
+                }
+
+                coap_free(rd->data.s);
+                rd->data.s = tmp.s;
+                rd->data.length = tmp.length;
+                memcpy(rd->data.s, data, rd->data.length);
+            }
+        }
+
+        if (etag)
+        {
+            rd->etag_len = min(COAP_OPT_LENGTH(etag), sizeof(rd->etag));
+            memcpy(rd->etag, COAP_OPT_VALUE(etag), rd->etag_len);
+        }
+
+        code = COAP_RESPONSE_CODE(204);
+        /* FIXME: update lifetime */
+
+    }
+    else
+    {
+
+        code = COAP_RESPONSE_CODE(503);
+    }
+
+    finish:
+    /* FIXME: do not create a new response but use the old one instead */
+    response = coap_pdu_init(type, code, request->hdr->id, size);
+
+    if (!response)
+    {
+        debug("cannot create response for message %d\n", request->hdr->id);
+        return;
+    }
+
+    if (request->hdr->token_length)
+    coap_add_token(response, request->hdr->token_length, request->hdr->token);
+
+    if (coap_send(ctx, peer, response) == COAP_INVALID_TID)
+    {
+        debug("hnd_get_rd: cannot send response for message %d\n",
+                request->hdr->id);
+    }
+    coap_delete_pdu(response);
+#endif
+}
+
+void hnd_delete_resource(coap_context_t *ctx, struct coap_resource_t *resource,
+        coap_address_t *peer, coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    rd_t *rd = NULL;
+
+    HASH_FIND(hh, resources, resource->key, sizeof(coap_key_t), rd);
+    if (rd)
+    {
+        HASH_DELETE(hh, resources, rd);
+        rd_delete(rd);
+    }
+    /* FIXME: link attributes for resource have been created dynamically
+     * using coap_malloc() and must be released. */
+    coap_delete_resource(ctx, resource->key);
+
+    response->hdr->code = COAP_RESPONSE_CODE(202);
+}
+
+void hnd_get_rd(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    unsigned char buf[3];
+
+    response->hdr->code = COAP_RESPONSE_CODE(205);
+
+    coap_add_option(response, COAP_OPTION_CONTENT_TYPE,
+            coap_encode_var_bytes(buf, COAP_MEDIATYPE_APPLICATION_LINK_FORMAT), buf);
+
+    coap_add_option(response, COAP_OPTION_MAXAGE, coap_encode_var_bytes(buf, 0x2ffff), buf);
+}
+
+int parse_param(unsigned char *search, size_t search_len, unsigned char *data, size_t data_len,
+        str *result)
+{
+
+    if (result)
+        memset(result, 0, sizeof(str));
+
+    if (!search_len)
+        return 0;
+
+    while (search_len <= data_len)
+    {
+
+        /* handle parameter if found */
+        if (memcmp(search, data, search_len) == 0)
+        {
+            data += search_len;
+            data_len -= search_len;
+
+            /* key is only valid if we are at end of string or delimiter follows */
+            if (!data_len || *data == '=' || *data == '&')
+            {
+                while (data_len && *data != '=')
+                {
+                    ++data;
+                    --data_len;
+                }
+
+                if (data_len > 1 && result)
+                {
+                    /* value begins after '=' */
+
+                    result->s = ++data;
+                    while (--data_len && *data != '&')
+                    {
+                        ++data;
+                        result->length++;
+                    }
+                }
+
+                return 1;
+            }
+        }
+
+        /* otherwise proceed to next */
+        while (--data_len && *data++ != '&')
+            ;
+    }
+
+    return 0;
+}
+
+void add_source_address(struct coap_resource_t *resource, coap_address_t *peer)
+{
+#define BUFSIZE 64
+    char *buf;
+    size_t n = 1;
+
+    buf = (char *) coap_malloc(BUFSIZE);
+    if (!buf)
+        return;
+
+    buf[0] = '"';
+
+    switch (peer->addr.sa.sa_family)
+    {
+
+        case AF_INET:
+            /* FIXME */
+            break;
+
+        case AF_INET6:
+            n += snprintf(buf + n, BUFSIZE - n, "[%02x%02x:%02x%02x:%02x%02x:%02x%02x"
+                    ":%02x%02x:%02x%02x:%02x%02x:%02x%02x]", peer->addr.sin6.sin6_addr.s6_addr[0],
+                    peer->addr.sin6.sin6_addr.s6_addr[1], peer->addr.sin6.sin6_addr.s6_addr[2],
+                    peer->addr.sin6.sin6_addr.s6_addr[3], peer->addr.sin6.sin6_addr.s6_addr[4],
+                    peer->addr.sin6.sin6_addr.s6_addr[5], peer->addr.sin6.sin6_addr.s6_addr[6],
+                    peer->addr.sin6.sin6_addr.s6_addr[7], peer->addr.sin6.sin6_addr.s6_addr[8],
+                    peer->addr.sin6.sin6_addr.s6_addr[9], peer->addr.sin6.sin6_addr.s6_addr[10],
+                    peer->addr.sin6.sin6_addr.s6_addr[11], peer->addr.sin6.sin6_addr.s6_addr[12],
+                    peer->addr.sin6.sin6_addr.s6_addr[13], peer->addr.sin6.sin6_addr.s6_addr[14],
+                    peer->addr.sin6.sin6_addr.s6_addr[15]);
+
+            if (peer->addr.sin6.sin6_port != htons(COAP_DEFAULT_PORT))
+            {
+                n += snprintf(buf + n, BUFSIZE - n, ":%d", peer->addr.sin6.sin6_port);
+            }
+            break;
+        default:
+            ;
+    }
+
+    if (n < BUFSIZE)
+        buf[n++] = '"';
+
+    coap_add_attr(resource, (unsigned char *) "A", 1, (unsigned char *) buf, n,
+            COAP_ATTR_FLAGS_RELEASE_VALUE);
+#undef BUFSIZE
+}
+
+rd_t *
+make_rd(coap_address_t *peer, coap_pdu_t *pdu)
+{
+    rd_t *rd;
+    unsigned char *data;
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *etag;
+
+    rd = rd_new();
+
+    if (!rd)
+    {
+        debug("hnd_get_rd: cannot allocate storage for rd\n");
+        return NULL;
+    }
+
+    if (coap_get_data(pdu, &rd->data.length, &data))
+    {
+        rd->data.s = (unsigned char *) coap_malloc(rd->data.length);
+        if (!rd->data.s)
+        {
+            debug("hnd_get_rd: cannot allocate storage for rd->data\n");
+            rd_delete(rd);
+            return NULL;
+        }
+        memcpy(rd->data.s, data, rd->data.length);
+    }
+
+    etag = coap_check_option(pdu, COAP_OPTION_ETAG, &opt_iter);
+    if (etag)
+    {
+        rd->etag_len = min(COAP_OPT_LENGTH(etag), sizeof(rd->etag));
+        memcpy(rd->etag, COAP_OPT_VALUE(etag), rd->etag_len);
+    }
+
+    return rd;
+}
+
+void hnd_post_rd(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    coap_resource_t *r;
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *query;
+#define LOCSIZE 68
+    unsigned char *loc;
+    size_t loc_size;
+    str h =
+    { 0, NULL }, ins =
+    { 0, NULL }, rt =
+    { 0, NULL }, lt =
+    { 0, NULL }; /* store query parameters */
+    unsigned char *buf;
+
+    loc = (unsigned char *) coap_malloc(LOCSIZE);
+    if (!loc)
+    {
+        response->hdr->code = COAP_RESPONSE_CODE(500);
+        return;
+    }
+    memcpy(loc, RD_ROOT_STR, RD_ROOT_SIZE);
+
+    loc_size = RD_ROOT_SIZE;
+    loc[loc_size++] = '/';
+
+    /* store query parameters for later use */
+    query = coap_check_option(request, COAP_OPTION_URI_QUERY, &opt_iter);
+    if (query)
+    {
+        parse_param((unsigned char *) "h", 1, COAP_OPT_VALUE(query), COAP_OPT_LENGTH(query), &h);
+        parse_param((unsigned char *) "ins", 3, COAP_OPT_VALUE(query), COAP_OPT_LENGTH(query),
+                &ins);
+        parse_param((unsigned char *) "lt", 2, COAP_OPT_VALUE(query), COAP_OPT_LENGTH(query), &lt);
+        parse_param((unsigned char *) "rt", 2, COAP_OPT_VALUE(query), COAP_OPT_LENGTH(query), &rt);
+    }
+
+    if (h.length)
+    { /* client has specified a node name */
+        memcpy(loc + loc_size, h.s, min(h.length, LOCSIZE - loc_size - 1));
+        loc_size += min(h.length, LOCSIZE - loc_size - 1);
+
+        if (ins.length && loc_size > 1)
+        {
+            loc[loc_size++] = '-';
+            memcpy((char *) (loc + loc_size), ins.s, min(ins.length, LOCSIZE - loc_size - 1));
+            loc_size += min(ins.length, LOCSIZE - loc_size - 1);
+        }
+
+    }
+    else
+    { /* generate node identifier */
+        loc_size += snprintf((char *) (loc + loc_size), LOCSIZE - loc_size - 1, "%x",
+                request->hdr->id);
+
+        if (loc_size > 1)
+        {
+            if (ins.length)
+            {
+                loc[loc_size++] = '-';
+                memcpy((char *) (loc + loc_size), ins.s, min(ins.length, LOCSIZE - loc_size - 1));
+                loc_size += min(ins.length, LOCSIZE - loc_size - 1);
+            }
+            else
+            {
+                coap_tick_t now;
+                coap_ticks(&now);
+
+                loc_size += snprintf((char *) (loc + loc_size), LOCSIZE - loc_size - 1, "-%x", now);
+            }
+        }
+    }
+
+    /* TODO:
+     *   - use lt to check expiration
+     */
+
+    r = coap_resource_init(loc, loc_size, COAP_RESOURCE_FLAGS_RELEASE_URI);
+    coap_register_handler(r, COAP_REQUEST_GET, hnd_get_resource);
+    coap_register_handler(r, COAP_REQUEST_PUT, hnd_put_resource);
+    coap_register_handler(r, COAP_REQUEST_DELETE, hnd_delete_resource);
+
+    if (ins.s)
+    {
+        buf = (unsigned char *) coap_malloc(ins.length + 2);
+        if (buf)
+        {
+            /* add missing quotes */
+            buf[0] = '"';
+            memcpy(buf + 1, ins.s, ins.length);
+            buf[ins.length + 1] = '"';
+            coap_add_attr(r, (unsigned char *) "ins", 3, buf, ins.length + 2,
+                    COAP_ATTR_FLAGS_RELEASE_VALUE);
+        }
+    }
+
+    if (rt.s)
+    {
+        buf = (unsigned char *) coap_malloc(rt.length + 2);
+        if (buf)
+        {
+            /* add missing quotes */
+            buf[0] = '"';
+            memcpy(buf + 1, rt.s, rt.length);
+            buf[rt.length + 1] = '"';
+            coap_add_attr(r, (unsigned char *) "rt", 2, buf, rt.length + 2,
+                    COAP_ATTR_FLAGS_RELEASE_VALUE);
+        }
+    }
+
+    add_source_address(r, peer);
+
+    {
+        rd_t *rd;
+        rd = make_rd(peer, request);
+        if (rd)
+        {
+            coap_hash_path(loc, loc_size, rd->key);
+            HASH_ADD(hh, resources, key, sizeof(coap_key_t), rd);
+        }
+        else
+        {
+            /* FIXME: send error response and delete r */
+        }
+    }
+
+    coap_add_resource(ctx, r);
+
+    /* create response */
+
+    response->hdr->code = COAP_RESPONSE_CODE(201);
+
+    { /* split path into segments and add Location-Path options */
+        unsigned char _b[LOCSIZE];
+        unsigned char *b = _b;
+        size_t buflen = sizeof(_b);
+        int nseg;
+
+        nseg = coap_split_path(loc, loc_size, b, &buflen);
+        while (nseg--)
+        {
+            coap_add_option(response, COAP_OPTION_LOCATION_PATH, COAP_OPT_LENGTH(b),
+                    COAP_OPT_VALUE(b));
+            b += COAP_OPT_SIZE(b);
+        }
+    }
+}
+
+void init_resources(coap_context_t *ctx)
+{
+    coap_resource_t *r;
+
+    r = coap_resource_init(RD_ROOT_STR, RD_ROOT_SIZE, 0);
+    coap_register_handler(r, COAP_REQUEST_GET, hnd_get_rd);
+    coap_register_handler(r, COAP_REQUEST_POST, hnd_post_rd);
+
+    coap_add_attr(r, (unsigned char *) "ct", 2, (unsigned char *) "40", 2, 0);
+    coap_add_attr(r, (unsigned char *) "rt", 2, (unsigned char *) "\"core-rd\"", 9, 0);
+    coap_add_attr(r, (unsigned char *) "ins", 2, (unsigned char *) "\"default\"", 9, 0);
+
+    coap_add_resource(ctx, r);
+
+}
+
+void usage(const char *program, const char *version)
+{
+    const char *p;
+
+    p = strrchr(program, '/');
+    if (p)
+        program = ++p;
+
+    fprintf(stderr, "%s v%s -- CoRE Resource Directory implementation\n"
+            "(c) 2011-2012 Olaf Bergmann <bergmann@tzi.org>\n\n"
+            "usage: %s [-A address] [-p port]\n\n"
+            "\t-A address\tinterface address to bind to\n"
+            "\t-p port\t\tlisten on specified port\n"
+            "\t-v num\t\tverbosity level (default: 3)\n", program, version, program);
+}
+
+coap_context_t *
+get_context(const char *node, const char *port)
+{
+    coap_context_t *ctx = NULL;
+    int s;
+    struct addrinfo hints;
+    struct addrinfo *result, *rp;
+
+    memset(&hints, 0, sizeof(struct addrinfo));
+    hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */
+    hints.ai_socktype = SOCK_DGRAM; /* Coap uses UDP */
+    hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
+
+    s = getaddrinfo(node, port, &hints, &result);
+    if (s != 0)
+    {
+        fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(s));
+        return NULL;
+    }
+
+    /* iterate through results until success */
+    for (rp = result; rp != NULL; rp = rp->ai_next)
+    {
+        coap_address_t addr;
+
+        if (rp->ai_addrlen <= sizeof(addr.addr))
+        {
+            coap_address_init(&addr);
+            addr.size = rp->ai_addrlen;
+            memcpy(&addr.addr, rp->ai_addr, rp->ai_addrlen);
+
+            ctx = coap_new_context(&addr);
+            if (ctx)
+            {
+                /* TODO: output address:port for successful binding */
+                goto finish;
+            }
+        }
+    }
+
+    fprintf(stderr, "no context available for interface '%s'\n", node);
+
+    finish: freeaddrinfo(result);
+    return ctx;
+}
+
+int join(coap_context_t *ctx, char *group_name)
+{
+    struct ipv6_mreq mreq;
+    struct addrinfo *reslocal = NULL, *resmulti = NULL, hints, *ainfo;
+    int result = -1;
+
+    /* we have to resolve the link-local interface to get the interface id */
+    memset(&hints, 0, sizeof(hints));
+    hints.ai_family = AF_INET6;
+    hints.ai_socktype = SOCK_DGRAM;
+
+    result = getaddrinfo("::", NULL, &hints, &reslocal);
+    if (result < 0)
+    {
+        perror("join: cannot resolve link-local interface");
+        goto finish;
+    }
+
+    /* get the first suitable interface identifier */
+    for (ainfo = reslocal; ainfo != NULL; ainfo = ainfo->ai_next)
+    {
+        if (ainfo->ai_family == AF_INET6)
+        {
+            mreq.ipv6mr_interface = ((struct sockaddr_in6 *) ainfo->ai_addr)->sin6_scope_id;
+            break;
+        }
+    }
+
+    memset(&hints, 0, sizeof(hints));
+    hints.ai_family = AF_INET6;
+    hints.ai_socktype = SOCK_DGRAM;
+
+    /* resolve the multicast group address */
+    result = getaddrinfo(group_name, NULL, &hints, &resmulti);
+
+    if (result < 0)
+    {
+        perror("join: cannot resolve multicast address");
+        goto finish;
+    }
+
+    for (ainfo = resmulti; ainfo != NULL; ainfo = ainfo->ai_next)
+    {
+        if (ainfo->ai_family == AF_INET6)
+        {
+            mreq.ipv6mr_multiaddr = ((struct sockaddr_in6 *) ainfo->ai_addr)->sin6_addr;
+            break;
+        }
+    }
+
+    result = setsockopt(ctx->sockfd, IPPROTO_IPV6, IPV6_JOIN_GROUP, (char *) &mreq, sizeof(mreq));
+    if (result < 0)
+        perror("join: setsockopt");
+
+    finish: freeaddrinfo(resmulti);
+    freeaddrinfo(reslocal);
+
+    return result;
+}
+
+int main(int argc, char **argv)
+{
+    coap_context_t *ctx;
+    fd_set readfds;
+    struct timeval tv, *timeout;
+    int result;
+    coap_tick_t now;
+    coap_queue_t *nextpdu;
+    char addr_str[NI_MAXHOST] = "::";
+    char port_str[NI_MAXSERV] = "5683";
+    char *group = NULL;
+    int opt;
+    coap_log_t log_level = LOG_WARNING;
+
+    while ((opt = getopt(argc, argv, "A:g:p:v:")) != -1)
+    {
+        switch (opt)
+        {
+            case 'A':
+                strncpy(addr_str, optarg, NI_MAXHOST - 1);
+                addr_str[NI_MAXHOST - 1] = '\0';
+                break;
+            case 'g':
+                group = optarg;
+                break;
+            case 'p':
+                strncpy(port_str, optarg, NI_MAXSERV - 1);
+                port_str[NI_MAXSERV - 1] = '\0';
+                break;
+            case 'v':
+                log_level = strtol(optarg, NULL, 10);
+                break;
+            default:
+                usage(argv[0], PACKAGE_VERSION);
+                exit(1);
+        }
+    }
+
+    coap_set_log_level(log_level);
+
+    ctx = get_context(addr_str, port_str);
+    if (!ctx)
+        return -1;
+
+    if (group)
+        join(ctx, group);
+
+    init_resources(ctx);
+
+    signal(SIGINT, handle_sigint);
+
+    while (!quit)
+    {
+        FD_ZERO(&readfds);
+        FD_SET(ctx->sockfd, &readfds);
+
+        nextpdu = coap_peek_next(ctx);
+
+        coap_ticks(&now);
+        while (nextpdu && nextpdu->t <= now)
+        {
+            coap_retransmit(ctx, coap_pop_next(ctx));
+            nextpdu = coap_peek_next(ctx);
+        }
+
+        if (nextpdu && nextpdu->t <= now + COAP_RESOURCE_CHECK_TIME)
+        {
+            /* set timeout if there is a pdu to send before our automatic timeout occurs */
+            tv.tv_usec = ((nextpdu->t - now) % COAP_TICKS_PER_SECOND) * 1000000
+                    / COAP_TICKS_PER_SECOND;
+            tv.tv_sec = (nextpdu->t - now) / COAP_TICKS_PER_SECOND;
+            timeout = &tv;
+        }
+        else
+        {
+            tv.tv_usec = 0;
+            tv.tv_sec = COAP_RESOURCE_CHECK_TIME;
+            timeout = &tv;
+        }
+        result = select(FD_SETSIZE, &readfds, 0, 0, timeout);
+
+        if (result < 0)
+        { /* error */
+            if (errno != EINTR)
+                perror("select");
+        }
+        else if (result > 0)
+        { /* read from socket */
+            if (FD_ISSET(ctx->sockfd, &readfds))
+            {
+                coap_read(ctx); /* read received data */
+                coap_dispatch(ctx); /* and dispatch PDUs from receivequeue */
+            }
+        }
+        else
+        { /* timeout */
+            /* coap_check_resource_list( ctx ); */
+        }
+    }
+
+    coap_free_context(ctx);
+
+    return 0;
+}
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/server.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/server.c
new file mode 100644 (file)
index 0000000..0d3e055
--- /dev/null
@@ -0,0 +1,456 @@
+/* coap -- simple implementation of the Constrained Application Protocol (CoAP)
+ *         as defined in draft-ietf-core-coap
+ *
+ * Copyright (C) 2010--2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <string.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <ctype.h>
+#include <sys/select.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <netdb.h>
+#include <sys/stat.h>
+#include <dirent.h>
+#include <errno.h>
+#include <signal.h>
+
+#include "config.h"
+#include "resource.h"
+#include "coap.h"
+
+#define COAP_RESOURCE_CHECK_TIME 2
+
+#ifndef min
+#define min(a,b) ((a) < (b) ? (a) : (b))
+#endif
+
+/* temporary storage for dynamic resource representations */
+static int quit = 0;
+
+/* changeable clock base (see handle_put_time()) */
+static time_t my_clock_base = 0;
+
+struct coap_resource_t *time_resource = NULL;
+
+#ifndef WITHOUT_ASYNC
+/* This variable is used to mimic long-running tasks that require
+ * asynchronous responses. */
+static coap_async_state_t *async = NULL;
+#endif /* WITHOUT_ASYNC */
+
+/* SIGINT handler: set quit to 1 for graceful termination */
+void handle_sigint(int signum)
+{
+    quit = 1;
+}
+
+#define INDEX "This is a test server made with libcoap (see http://libcoap.sf.net)\n" \
+             "Copyright (C) 2010--2013 Olaf Bergmann <bergmann@tzi.org>\n\n"
+
+void hnd_get_index(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    unsigned char buf[3];
+
+    response->hdr->code = COAP_RESPONSE_CODE(205);
+
+    coap_add_option(response, COAP_OPTION_CONTENT_TYPE,
+            coap_encode_var_bytes(buf, COAP_MEDIATYPE_TEXT_PLAIN), buf);
+
+    coap_add_option(response, COAP_OPTION_MAXAGE, coap_encode_var_bytes(buf, 0x2ffff), buf);
+
+    coap_add_data(response, strlen(INDEX), (unsigned char *) INDEX);
+}
+
+void hnd_get_time(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *option;
+    unsigned char buf[40];
+    size_t len;
+    time_t now;
+    coap_tick_t t;
+    coap_subscription_t *subscription;
+
+    /* FIXME: return time, e.g. in human-readable by default and ticks
+     * when query ?ticks is given. */
+
+    /* if my_clock_base was deleted, we pretend to have no such resource */
+    response->hdr->code = my_clock_base ? COAP_RESPONSE_CODE(205) : COAP_RESPONSE_CODE(404);
+
+    if (request != NULL && coap_check_option(request, COAP_OPTION_OBSERVE, &opt_iter))
+    {
+        subscription = coap_add_observer(resource, peer, token);
+        if (subscription)
+        {
+            subscription->non = request->hdr->type == COAP_MESSAGE_NON;
+            coap_add_option(response, COAP_OPTION_OBSERVE, 0, NULL);
+        }
+    }
+    if (resource->dirty == 1)
+        coap_add_option(response, COAP_OPTION_OBSERVE, coap_encode_var_bytes(buf, ctx->observe),
+                buf);
+
+    if (my_clock_base)
+        coap_add_option(response, COAP_OPTION_CONTENT_FORMAT,
+                coap_encode_var_bytes(buf, COAP_MEDIATYPE_TEXT_PLAIN), buf);
+
+    coap_add_option(response, COAP_OPTION_MAXAGE, coap_encode_var_bytes(buf, 0x01), buf);
+
+    if (my_clock_base)
+    {
+
+        /* calculate current time */
+        coap_ticks(&t);
+        now = my_clock_base + (t / COAP_TICKS_PER_SECOND);
+
+        if (request != NULL
+                && (option = coap_check_option(request, COAP_OPTION_URI_QUERY, &opt_iter))
+                && memcmp(COAP_OPT_VALUE(option), "ticks", min(5, COAP_OPT_LENGTH(option))) == 0)
+        {
+            /* output ticks */
+            len = snprintf((char *) buf, min(sizeof(buf), response->max_size - response->length),
+                    "%u", (unsigned int) now);
+            coap_add_data(response, len, buf);
+
+        }
+        else
+        { /* output human-readable time */
+            struct tm *tmp;
+            tmp = gmtime(&now);
+            len = strftime((char *) buf, min(sizeof(buf), response->max_size - response->length),
+                    "%b %d %H:%M:%S", tmp);
+            coap_add_data(response, len, buf);
+        }
+    }
+}
+
+void hnd_put_time(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    coap_tick_t t;
+    size_t size;
+    unsigned char *data;
+
+    /* FIXME: re-set my_clock_base to clock_offset if my_clock_base == 0
+     * and request is empty. When not empty, set to value in request payload
+     * (insist on query ?ticks). Return Created or Ok.
+     */
+
+    /* if my_clock_base was deleted, we pretend to have no such resource */
+    response->hdr->code = my_clock_base ? COAP_RESPONSE_CODE(204) : COAP_RESPONSE_CODE(201);
+
+    resource->dirty = 1;
+
+    coap_get_data(request, &size, &data);
+
+    if (size == 0) /* re-init */
+        my_clock_base = clock_offset;
+    else
+    {
+        my_clock_base = 0;
+        coap_ticks(&t);
+        while (size--)
+            my_clock_base = my_clock_base * 10 + *data++;
+        my_clock_base -= t / COAP_TICKS_PER_SECOND;
+    }
+}
+
+void hnd_delete_time(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    my_clock_base = 0; /* mark clock as "deleted" */
+
+    /* type = request->hdr->type == COAP_MESSAGE_CON  */
+    /*   ? COAP_MESSAGE_ACK : COAP_MESSAGE_NON; */
+}
+
+#ifndef WITHOUT_ASYNC
+void hnd_get_async(coap_context_t *ctx, struct coap_resource_t *resource, coap_address_t *peer,
+        coap_pdu_t *request, str *token, coap_pdu_t *response)
+{
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *option;
+    unsigned long delay = 5;
+    size_t size;
+
+    if (async)
+    {
+        if (async->id != request->hdr->id)
+        {
+            coap_opt_filter_t f;
+            coap_option_filter_clear(f);
+            response->hdr->code = COAP_RESPONSE_CODE(503);
+        }
+        return;
+    }
+
+    option = coap_check_option(request, COAP_OPTION_URI_QUERY, &opt_iter);
+    if (option)
+    {
+        unsigned char *p = COAP_OPT_VALUE(option);
+
+        delay = 0;
+        for (size = COAP_OPT_LENGTH(option); size; --size, ++p)
+            delay = delay * 10 + (*p - '0');
+    }
+
+    async = coap_register_async(ctx, peer, request, COAP_ASYNC_SEPARATE | COAP_ASYNC_CONFIRM,
+            (void *) (COAP_TICKS_PER_SECOND * delay));
+}
+
+void check_async(coap_context_t *ctx, coap_tick_t now)
+{
+    coap_pdu_t *response;
+    coap_async_state_t *tmp;
+
+    size_t size = sizeof(coap_hdr_t) + 8;
+
+    if (!async || now < async->created + (unsigned long) async->appdata)
+        return;
+
+    response = coap_pdu_init(async->flags & COAP_ASYNC_CONFIRM ? COAP_MESSAGE_CON : COAP_MESSAGE_NON,
+    COAP_RESPONSE_CODE(205), 0, size);
+    if (!response)
+    {
+        debug("check_async: insufficient memory, we'll try later\n");
+        async->appdata = (void *) ((unsigned long) async->appdata + 15 * COAP_TICKS_PER_SECOND);
+        return;
+    }
+
+    response->hdr->id = coap_new_message_id(ctx);
+
+    if (async->tokenlen)
+        coap_add_token(response, async->tokenlen, async->token);
+
+    coap_add_data(response, 4, (unsigned char *) "done");
+
+    if (coap_send(ctx, &async->peer, response) == COAP_INVALID_TID)
+    {
+        debug("check_async: cannot send response for message %d\n", response->hdr->id);
+    }
+    coap_delete_pdu(response);
+    coap_remove_async(ctx, async->id, &tmp);
+    coap_free_async(async);
+    async = NULL;
+}
+#endif /* WITHOUT_ASYNC */
+
+void init_resources(coap_context_t *ctx)
+{
+    coap_resource_t *r;
+
+    r = coap_resource_init(NULL, 0, 0);
+    coap_register_handler(r, COAP_REQUEST_GET, hnd_get_index);
+
+    coap_add_attr(r, (unsigned char *) "ct", 2, (unsigned char *) "0", 1, 0);
+    coap_add_attr(r, (unsigned char *) "title", 5, (unsigned char *) "\"General Info\"", 14, 0);
+    coap_add_resource(ctx, r);
+
+    /* store clock base to use in /time */
+    my_clock_base = clock_offset;
+
+    r = coap_resource_init((unsigned char *) "time", 4, 0);
+    coap_register_handler(r, COAP_REQUEST_GET, hnd_get_time);
+    coap_register_handler(r, COAP_REQUEST_PUT, hnd_put_time);
+    coap_register_handler(r, COAP_REQUEST_DELETE, hnd_delete_time);
+
+    coap_add_attr(r, (unsigned char *) "ct", 2, (unsigned char *) "0", 1, 0);
+    coap_add_attr(r, (unsigned char *) "title", 5, (unsigned char *) "\"Internal Clock\"", 16, 0);
+    coap_add_attr(r, (unsigned char *) "rt", 2, (unsigned char *) "\"Ticks\"", 7, 0);
+    r->observable = 1;
+    coap_add_attr(r, (unsigned char *) "if", 2, (unsigned char *) "\"clock\"", 7, 0);
+
+    coap_add_resource(ctx, r);
+    time_resource = r;
+
+#ifndef WITHOUT_ASYNC
+    r = coap_resource_init((unsigned char *) "async", 5, 0);
+    coap_register_handler(r, COAP_REQUEST_GET, hnd_get_async);
+
+    coap_add_attr(r, (unsigned char *) "ct", 2, (unsigned char *) "0", 1, 0);
+    coap_add_resource(ctx, r);
+#endif /* WITHOUT_ASYNC */
+}
+
+void usage(const char *program, const char *version)
+{
+    const char *p;
+
+    p = strrchr(program, '/');
+    if (p)
+        program = ++p;
+
+    fprintf(stderr, "%s v%s -- a small CoAP implementation\n"
+            "(c) 2010,2011 Olaf Bergmann <bergmann@tzi.org>\n\n"
+            "usage: %s [-A address] [-p port]\n\n"
+            "\t-A address\tinterface address to bind to\n"
+            "\t-p port\t\tlisten on specified port\n"
+            "\t-v num\t\tverbosity level (default: 3)\n", program, version, program);
+}
+
+coap_context_t *
+get_context(const char *node, const char *port)
+{
+    coap_context_t *ctx = NULL;
+    int s;
+    struct addrinfo hints;
+    struct addrinfo *result, *rp;
+
+    memset(&hints, 0, sizeof(struct addrinfo));
+    hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */
+    hints.ai_socktype = SOCK_DGRAM; /* Coap uses UDP */
+    hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
+
+    s = getaddrinfo(node, port, &hints, &result);
+    if (s != 0)
+    {
+        fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(s));
+        return NULL;
+    }
+
+    /* iterate through results until success */
+    for (rp = result; rp != NULL; rp = rp->ai_next)
+    {
+        coap_address_t addr;
+
+        if (rp->ai_addrlen <= sizeof(addr.addr))
+        {
+            coap_address_init(&addr);
+            addr.size = rp->ai_addrlen;
+            memcpy(&addr.addr, rp->ai_addr, rp->ai_addrlen);
+
+            ctx = coap_new_context(&addr);
+            if (ctx)
+            {
+                /* TODO: output address:port for successful binding */
+                goto finish;
+            }
+        }
+    }
+
+    fprintf(stderr, "no context available for interface '%s'\n", node);
+
+    finish: freeaddrinfo(result);
+    return ctx;
+}
+
+int main(int argc, char **argv)
+{
+    coap_context_t *ctx;
+    fd_set readfds;
+    struct timeval tv, *timeout;
+    int result;
+    coap_tick_t now;
+    coap_queue_t *nextpdu;
+    char addr_str[NI_MAXHOST] = "::";
+    char port_str[NI_MAXSERV] = "5683";
+    int opt;
+    coap_log_t log_level = LOG_WARNING;
+
+    while ((opt = getopt(argc, argv, "A:p:v:")) != -1)
+    {
+        switch (opt)
+        {
+            case 'A':
+                strncpy(addr_str, optarg, NI_MAXHOST - 1);
+                addr_str[NI_MAXHOST - 1] = '\0';
+                break;
+            case 'p':
+                strncpy(port_str, optarg, NI_MAXSERV - 1);
+                port_str[NI_MAXSERV - 1] = '\0';
+                break;
+            case 'v':
+                log_level = strtol(optarg, NULL, 10);
+                break;
+            default:
+                usage(argv[0], PACKAGE_VERSION);
+                exit(1);
+        }
+    }
+
+    coap_set_log_level(log_level);
+
+    ctx = get_context(addr_str, port_str);
+    if (!ctx)
+        return -1;
+
+    init_resources(ctx);
+
+    signal(SIGINT, handle_sigint);
+
+    while (!quit)
+    {
+        FD_ZERO(&readfds);
+        FD_SET(ctx->sockfd, &readfds);
+
+        nextpdu = coap_peek_next(ctx);
+
+        coap_ticks(&now);
+        while (nextpdu && nextpdu->t <= now - ctx->sendqueue_basetime)
+        {
+            coap_retransmit(ctx, coap_pop_next(ctx));
+            nextpdu = coap_peek_next(ctx);
+        }
+
+        if (nextpdu && nextpdu->t <= COAP_RESOURCE_CHECK_TIME)
+        {
+            /* set timeout if there is a pdu to send before our automatic timeout occurs */
+            tv.tv_usec = ((nextpdu->t) % COAP_TICKS_PER_SECOND) * 1000000 / COAP_TICKS_PER_SECOND;
+            tv.tv_sec = (nextpdu->t) / COAP_TICKS_PER_SECOND;
+            timeout = &tv;
+        }
+        else
+        {
+            tv.tv_usec = 0;
+            tv.tv_sec = COAP_RESOURCE_CHECK_TIME;
+            timeout = &tv;
+        }
+        result = select(FD_SETSIZE, &readfds, 0, 0, timeout);
+
+        if (result < 0)
+        { /* error */
+            if (errno != EINTR)
+                perror("select");
+        }
+        else if (result > 0)
+        { /* read from socket */
+            if (FD_ISSET(ctx->sockfd, &readfds))
+            {
+                coap_read(ctx); /* read received data */
+                coap_dispatch(ctx); /* and dispatch PDUs from receivequeue */
+            }
+        }
+        else
+        { /* timeout */
+            if (time_resource)
+            {
+                time_resource->dirty = 1;
+            }
+        }
+
+#ifndef WITHOUT_ASYNC
+        /* check if we have to send asynchronous responses */
+        check_async(ctx, now);
+#endif /* WITHOUT_ASYNC */
+
+#ifndef WITHOUT_OBSERVE
+        /* check if we have to send observe notifications */
+        coap_check_notify(ctx);
+#endif /* WITHOUT_OBSERVE */
+    }
+
+    coap_free_context(ctx);
+
+    return 0;
+}
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/tiny.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/examples/tiny.c
new file mode 100644 (file)
index 0000000..6c9afe1
--- /dev/null
@@ -0,0 +1,157 @@
+/* tiny -- tiny sender
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <string.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <ctype.h>
+#include <limits.h>
+#include <sys/select.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <netdb.h>
+
+#include "../coap.h"
+
+static coap_tid_t id;
+
+coap_pdu_t *
+make_pdu(unsigned int value)
+{
+    coap_pdu_t *pdu;
+    unsigned char enc;
+    static unsigned char buf[20];
+    int len, ls;
+
+    if (!(pdu = coap_new_pdu()))
+        return NULL;
+
+    pdu->hdr->type = COAP_MESSAGE_NON;
+    pdu->hdr->code = COAP_REQUEST_POST;
+    pdu->hdr->id = htons(id++);
+
+    enc = COAP_PSEUDOFP_ENCODE_8_4_DOWN(value,ls);
+    coap_add_data(pdu, 1, &enc);
+
+    len = sprintf((char *) buf, "%u", COAP_PSEUDOFP_DECODE_8_4(enc));
+    if (len > 0)
+    {
+        coap_add_data(pdu, len, buf);
+    }
+
+    return pdu;
+}
+
+void usage(const char *program)
+{
+    const char *p;
+
+    p = strrchr(program, '/');
+    if (p)
+        program = ++p;
+
+    fprintf(stderr, "%s -- tiny fake sensor\n"
+            "(c) 2010 Olaf Bergmann <bergmann@tzi.org>\n\n"
+            "usage: %s [group address]\n"
+            "\n\nSends some fake sensor values to specified multicast group\n", program, program);
+}
+
+coap_context_t *
+get_context(const char *node, const char *port)
+{
+    coap_context_t *ctx = NULL;
+    int s;
+    struct addrinfo hints;
+    struct addrinfo *result, *rp;
+
+    memset(&hints, 0, sizeof(struct addrinfo));
+    hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */
+    hints.ai_socktype = SOCK_DGRAM; /* Coap uses UDP */
+    hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST | AI_NUMERICSERV | AI_ALL;
+
+    s = getaddrinfo(node, port, &hints, &result);
+    if (s != 0)
+    {
+        fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(s));
+        return NULL;
+    }
+
+    /* iterate through results until success */
+    for (rp = result; rp != NULL; rp = rp->ai_next)
+    {
+        ctx = coap_new_context(rp->ai_addr, rp->ai_addrlen);
+        if (ctx)
+        {
+            /* TODO: output address:port for successful binding */
+            goto finish;
+        }
+    }
+
+    fprintf(stderr, "no context available for interface '%s'\n", node);
+
+    finish: freeaddrinfo(result);
+    return ctx;
+}
+
+int main(int argc, char **argv)
+{
+    coap_context_t *ctx;
+    struct timeval tv;
+    coap_pdu_t *pdu;
+    struct sockaddr_in6 dst;
+    int hops = 16;
+
+    if (argc > 1 && strncmp(argv[1], "-h", 2) == 0)
+    {
+        usage(argv[0]);
+        exit(1);
+    }
+
+    ctx = get_context("::", NULL);
+    if (!ctx)
+        return -1;
+
+    id = rand() & INT_MAX;
+
+    memset(&dst, 0, sizeof(struct sockaddr_in6));
+    dst.sin6_family = AF_INET6;
+    inet_pton(AF_INET6, argc > 1 ? argv[1] : "::1", &dst.sin6_addr);
+    dst.sin6_port = htons(COAP_DEFAULT_PORT);
+
+    if (IN6_IS_ADDR_MULTICAST(&dst.sin6_addr))
+    {
+        /* set socket options for multicast */
+
+        if (setsockopt(ctx->sockfd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, (char *) &hops, sizeof(hops))
+                < 0)
+            perror("setsockopt: IPV6_MULTICAST_HOPS");
+
+    }
+
+    while (1)
+    {
+
+        if (!(pdu = make_pdu(rand() & 0xfff)))
+            return -1;
+
+        coap_send(ctx, (struct sockaddr *) &dst, sizeof(dst), pdu);
+        coap_delete_pdu(pdu);
+
+        tv.tv_sec = 5;
+        tv.tv_usec = 0;
+
+        select(0, 0, 0, 0, &tv);
+
+    }
+
+    coap_free_context(ctx);
+
+    return 0;
+}
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/hashkey.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/hashkey.c
new file mode 100644 (file)
index 0000000..a794292
--- /dev/null
@@ -0,0 +1,31 @@
+/* hashkey.c -- definition of hash key type and helper functions
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "hashkey.h"
+
+/* Caution: When changing this, update COAP_DEFAULT_WKC_HASHKEY
+ * accordingly (see int coap_hash_path());
+ */
+void coap_hash_impl(const unsigned char *s, unsigned int len, coap_key_t h)
+{
+    size_t j;
+
+    while (len--)
+    {
+        j = sizeof(coap_key_t) - 1;
+
+        while (j)
+        {
+            h[j] = ((h[j] << 7) | (h[j - 1] >> 1)) + h[j];
+            --j;
+        }
+
+        h[0] = (h[0] << 7) + h[0] + *s++;
+    }
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/hashkey.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/hashkey.h
new file mode 100644 (file)
index 0000000..4732a70
--- /dev/null
@@ -0,0 +1,57 @@
+/* hashkey.h -- definition of hash key type and helper functions
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+/** 
+ * @file hashkey.h
+ * @brief definition of hash key type and helper functions
+ */
+
+#ifndef _COAP_HASHKEY_H_
+#define _COAP_HASHKEY_H_
+
+#include "str.h"
+
+typedef unsigned char coap_key_t[4];
+
+#ifndef coap_hash
+/** 
+ * Calculates a fast hash over the given string @p s of length @p len
+ * and stores the result into @p h. Depending on the exact
+ * implementation, this function cannot be used as one-way function to
+ * check message integrity or simlar.
+ * 
+ * @param s   The string used for hash calculation.
+ * @param len The length of @p s.
+ * @param h   The result buffer to store the calculated hash key.
+ */
+void coap_hash_impl(const unsigned char *s, unsigned int len, coap_key_t h);
+
+#define coap_hash(String,Length,Result) \
+  coap_hash_impl((String),(Length),(Result))
+
+/* This is used to control the pre-set hash-keys for resources. */
+#define __COAP_DEFAULT_HASH
+#else
+#undef __COAP_DEFAULT_HASH
+#endif /* coap_hash */
+
+/** 
+ * Calls coap_hash() with given @c str object as parameter.
+ * 
+ * @param Str Must contain a pointer to a coap string object.
+ * @param H   A coap_key_t object to store the result.
+ * 
+ * @hideinitializer
+ */
+#define coap_str_hash(Str,H) {                 \
+    assert(Str);                               \
+    memset((H), 0, sizeof(coap_key_t));                \
+    coap_hash((H), (Str)->s, (Str)->length);   \
+  }
+
+#endif /* _COAP_HASHKEY_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/mem.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/mem.h
new file mode 100644 (file)
index 0000000..a84405e
--- /dev/null
@@ -0,0 +1,18 @@
+/* mem.h -- CoAP memory handling
+ *          Currently, this is just a dummy for malloc/free
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _COAP_MEM_H_
+#define _COAP_MEM_H_
+
+#include <stdlib.h>
+
+#define coap_malloc(size) malloc(size)
+#define coap_free(size) free(size)
+
+#endif /* _COAP_MEM_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/net.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/net.c
new file mode 100644 (file)
index 0000000..7138f4a
--- /dev/null
@@ -0,0 +1,1805 @@
+/* net.c -- CoAP network interface
+ *
+ * Copyright (C) 2010--2014 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+
+#include <ctype.h>
+#include <stdio.h>
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#elif HAVE_SYS_UNISTD_H
+#include <sys/unistd.h>
+#endif
+#include <sys/types.h>
+#ifdef HAVE_SYS_SOCKET_H
+#include <sys/socket.h>
+#endif
+#ifdef HAVE_NETINET_IN_H
+#include <netinet/in.h>
+#endif
+#ifdef HAVE_ARPA_INET_H
+#include <arpa/inet.h>
+#endif
+
+#ifdef WITH_LWIP
+#include <lwip/pbuf.h>
+#include <lwip/udp.h>
+#include <lwip/timers.h>
+#endif
+
+#include "debug.h"
+#include "mem.h"
+#include "str.h"
+#include "async.h"
+#include "resource.h"
+#include "option.h"
+#include "encode.h"
+#include "block.h"
+#include "net.h"
+
+#if defined(WITH_POSIX)
+
+time_t clock_offset;
+
+static inline coap_queue_t *
+coap_malloc_node()
+{
+    return (coap_queue_t *)coap_malloc(sizeof(coap_queue_t));
+}
+
+static inline void
+coap_free_node(coap_queue_t *node)
+{
+    coap_free(node);
+}
+#endif /* WITH_POSIX */
+#ifdef WITH_LWIP
+
+#include <lwip/memp.h>
+
+static void coap_retransmittimer_execute(void *arg);
+static void coap_retransmittimer_restart(coap_context_t *ctx);
+
+static inline coap_queue_t *
+coap_malloc_node()
+{
+    return (coap_queue_t *)memp_malloc(MEMP_COAP_NODE);
+}
+
+static inline void
+coap_free_node(coap_queue_t *node)
+{
+    memp_free(MEMP_COAP_NODE, node);
+}
+
+#endif /* WITH_LWIP */
+#ifdef WITH_CONTIKI
+# ifndef DEBUG
+#  define DEBUG DEBUG_PRINT
+# endif /* DEBUG */
+
+#include "memb.h"
+#include "net/uip-debug.h"
+
+clock_time_t clock_offset;
+
+#define UIP_IP_BUF   ((struct uip_ip_hdr *)&uip_buf[UIP_LLH_LEN])
+#define UIP_UDP_BUF  ((struct uip_udp_hdr *)&uip_buf[UIP_LLIPH_LEN])
+
+void coap_resources_init();
+void coap_pdu_resources_init();
+
+unsigned char initialized = 0;
+coap_context_t the_coap_context;
+
+MEMB(node_storage, coap_queue_t, COAP_PDU_MAXCNT);
+
+PROCESS(coap_retransmit_process, "message retransmit process");
+
+static inline coap_queue_t *
+coap_malloc_node()
+{
+    return (coap_queue_t *)memb_alloc(&node_storage);
+}
+
+static inline void
+coap_free_node(coap_queue_t *node)
+{
+    memb_free(&node_storage, node);
+}
+#endif /* WITH_CONTIKI */
+#ifdef WITH_LWIP
+
+/** Callback to udp_recv when using lwIP. Gets called by lwIP on arriving
+ * packages, places a reference in context->pending_package, and calls
+ * coap_read to process the package. Thus, coap_read needs not be called in
+ * lwIP main loops. (When modifying this for thread-like operation, ie. if you
+ * remove the coap_read call from this, make sure that coap_read gets a chance
+ * to run before this callback is entered the next time.)
+ */
+static void received_package(void *arg, struct udp_pcb *upcb, struct pbuf *p, ip_addr_t *addr, u16_t port)
+{
+    struct coap_context_t *context = (coap_context_t *)arg;
+
+    LWIP_ASSERT("pending_package was not cleared.", context->pending_package == NULL);
+
+    context->pending_package = p; /* we don't free it, coap_read has to do that */
+    context->pending_address.addr = addr->addr; /* FIXME: this has to become address-type independent, probably there'll be an lwip function for that */
+    context->pending_port = port;
+
+    char* data;
+    coap_read(context, data);
+}
+
+#endif /* WITH_LWIP */
+
+int print_wellknown(coap_context_t *, unsigned char *, size_t *, size_t, coap_opt_t *);
+
+void coap_handle_failed_notify(coap_context_t *, const coap_address_t *, const str *);
+
+unsigned int coap_adjust_basetime(coap_context_t *ctx, coap_tick_t now)
+{
+    unsigned int result = 0;
+    coap_tick_diff_t delta = now - ctx->sendqueue_basetime;
+
+    if (ctx->sendqueue)
+    {
+        /* delta < 0 means that the new time stamp is before the old. */
+        if (delta <= 0)
+        {
+            ctx->sendqueue->t -= delta;
+        }
+        else
+        {
+            /* This case is more complex: The time must be advanced forward,
+             * thus possibly leading to timed out elements at the queue's
+             * start. For every element that has timed out, its relative
+             * time is set to zero and the result counter is increased. */
+
+            coap_queue_t *q = ctx->sendqueue;
+            coap_tick_t t = 0;
+            while (q && (t + q->t < (coap_tick_t) delta))
+            {
+                t += q->t;
+                q->t = 0;
+                result++;
+                q = q->next;
+            }
+
+            /* finally adjust the first element that has not expired */
+            if (q)
+            {
+                q->t = (coap_tick_t) delta - t;
+            }
+        }
+    }
+
+    /* adjust basetime */
+    ctx->sendqueue_basetime += delta;
+
+    return result;
+}
+
+int coap_insert_node(coap_queue_t **queue, coap_queue_t *node)
+{
+    coap_queue_t *p, *q;
+    if (!queue || !node)
+        return 0;
+
+    /* set queue head if empty */
+    if (!*queue)
+    {
+        *queue = node;
+        return 1;
+    }
+
+    /* replace queue head if PDU's time is less than head's time */
+    q = *queue;
+    if (node->t < q->t)
+    {
+        node->next = q;
+        *queue = node;
+        q->t -= node->t; /* make q->t relative to node->t */
+        return 1;
+    }
+
+    /* search for right place to insert */
+    do
+    {
+        node->t -= q->t; /* make node-> relative to q->t */
+        p = q;
+        q = q->next;
+    } while (q && q->t <= node->t);
+
+    /* insert new item */
+    if (q)
+    {
+        q->t -= node->t; /* make q->t relative to node->t */
+    }
+    node->next = q;
+    p->next = node;
+    return 1;
+}
+
+int coap_delete_node(coap_queue_t *node)
+{
+    if (!node)
+        return 0;
+
+    coap_delete_pdu(node->pdu);
+    coap_free_node(node);
+
+    return 1;
+}
+
+void coap_delete_all(coap_queue_t *queue)
+{
+    if (!queue)
+        return;
+
+    coap_delete_all(queue->next);
+    coap_delete_node(queue);
+}
+
+coap_queue_t *
+coap_new_node()
+{
+    coap_queue_t *node;
+    node = coap_malloc_node();
+
+    if (!node)
+    {
+#ifndef NDEBUG
+        coap_log(LOG_WARNING, "coap_new_node: malloc\n");
+#endif
+        return NULL;
+    }
+
+    memset(node, 0, sizeof *node);
+    return node;
+}
+
+coap_queue_t *
+coap_peek_next(coap_context_t *context)
+{
+    if (!context || !context->sendqueue)
+        return NULL;
+
+    return context->sendqueue;
+}
+
+coap_queue_t *
+coap_pop_next(coap_context_t *context)
+{
+    coap_queue_t *next;
+
+    if (!context || !context->sendqueue)
+        return NULL;
+
+    next = context->sendqueue;
+    context->sendqueue = context->sendqueue->next;
+    if (context->sendqueue)
+    {
+        context->sendqueue->t += next->t;
+    }
+    next->next = NULL;
+    return next;
+}
+
+#ifdef COAP_DEFAULT_WKC_HASHKEY
+/** Checks if @p Key is equal to the pre-defined hash key for.well-known/core. */
+#define is_wkc(Key)                                                    \
+  (memcmp((Key), COAP_DEFAULT_WKC_HASHKEY, sizeof(coap_key_t)) == 0)
+#else
+/* Implements a singleton to store a hash key for the .wellknown/core
+ * resources. */
+int
+is_wkc(coap_key_t k)
+{
+    static coap_key_t wkc;
+    static unsigned char _initialized = 0;
+    if (!_initialized)
+    {
+        _initialized = coap_hash_path((unsigned char *)COAP_DEFAULT_URI_WELLKNOWN,
+                sizeof(COAP_DEFAULT_URI_WELLKNOWN) - 1, wkc);
+    }
+    return memcmp(k, wkc, sizeof(coap_key_t)) == 0;
+}
+#endif
+
+coap_context_t *
+coap_new_context(const coap_address_t *listen_addr)
+{
+#ifdef WITH_POSIX
+    coap_context_t *c = coap_malloc( sizeof( coap_context_t ) );
+    int reuse = 1;
+#endif /* WITH_POSIX */
+#ifdef WITH_LWIP
+    coap_context_t *c = memp_malloc(MEMP_COAP_CONTEXT);
+#endif /* WITH_LWIP */
+#ifdef WITH_CONTIKI
+    coap_context_t *c;
+
+    if (initialized)
+    return NULL;
+#endif /* WITH_CONTIKI */
+
+    if (!listen_addr)
+    {
+        coap_log(LOG_EMERG, "no listen address specified\n");
+        return NULL;
+    }
+
+    coap_clock_init();
+#ifdef WITH_LWIP
+    prng_init(LWIP_RAND());
+#else /* WITH_LWIP */
+    prng_init((unsigned long)listen_addr ^ clock_offset);
+#endif /* WITH_LWIP */
+
+#ifndef WITH_CONTIKI
+    if (!c)
+    {
+#ifndef NDEBUG
+        coap_log(LOG_EMERG, "coap_init: malloc:\n");
+#endif
+        return NULL;
+    }
+#endif /* not WITH_CONTIKI */
+#ifdef WITH_CONTIKI
+    coap_resources_init();
+    coap_pdu_resources_init();
+
+    c = &the_coap_context;
+    initialized = 1;
+#endif /* WITH_CONTIKI */
+
+    memset(c, 0, sizeof(coap_context_t));
+
+    /* initialize message id */
+    prng((unsigned char *)&c->message_id, sizeof(unsigned short));
+
+    /* register the critical options that we know */
+    coap_register_option(c, COAP_OPTION_IF_MATCH);
+    coap_register_option(c, COAP_OPTION_URI_HOST);
+    coap_register_option(c, COAP_OPTION_IF_NONE_MATCH);
+    coap_register_option(c, COAP_OPTION_URI_PORT);
+    coap_register_option(c, COAP_OPTION_URI_PATH);
+    coap_register_option(c, COAP_OPTION_URI_QUERY);
+    coap_register_option(c, COAP_OPTION_ACCEPT);
+    coap_register_option(c, COAP_OPTION_PROXY_URI);
+    coap_register_option(c, COAP_OPTION_PROXY_SCHEME);
+    coap_register_option(c, COAP_OPTION_BLOCK2);
+    coap_register_option(c, COAP_OPTION_BLOCK1);
+
+#ifdef WITH_POSIX
+    c->sockfd = socket(listen_addr->addr.sa.sa_family, SOCK_DGRAM, 0);
+    if ( c->sockfd < 0 )
+    {
+#ifndef NDEBUG
+        coap_log(LOG_EMERG, "coap_new_context: socket\n");
+#endif /* WITH_POSIX */
+        goto onerror;
+    }
+
+    if ( setsockopt( c->sockfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse) ) < 0 )
+    {
+#ifndef NDEBUG
+        coap_log(LOG_WARNING, "setsockopt SO_REUSEADDR\n");
+#endif
+    }
+
+    if (bind(c->sockfd, &listen_addr->addr.sa, listen_addr->size) < 0)
+    {
+#ifndef NDEBUG
+        coap_log(LOG_EMERG, "coap_new_context: bind\n");
+#endif
+        goto onerror;
+    }
+
+    return c;
+
+    onerror:
+    if ( c->sockfd >= 0 )
+    close ( c->sockfd );
+    coap_free( c );
+    return NULL;
+
+#endif /* WITH_POSIX */
+#ifdef WITH_CONTIKI
+    c->conn = udp_new(NULL, 0, NULL);
+    udp_bind(c->conn, listen_addr->port);
+
+    process_start(&coap_retransmit_process, (char *)c);
+
+    PROCESS_CONTEXT_BEGIN(&coap_retransmit_process);
+#ifndef WITHOUT_OBSERVE
+    etimer_set(&c->notify_timer, COAP_RESOURCE_CHECK_TIME * COAP_TICKS_PER_SECOND);
+#endif /* WITHOUT_OBSERVE */
+    /* the retransmit timer must be initialized to some large value */
+    etimer_set(&the_coap_context.retransmit_timer, 0xFFFF);
+    PROCESS_CONTEXT_END(&coap_retransmit_process);
+    return c;
+#endif /* WITH_CONTIKI */
+#ifdef WITH_LWIP
+    c->pcb = udp_new();
+    /* hard assert: this is not expected to fail dynamically */
+    LWIP_ASSERT("Failed to allocate PCB for CoAP", c->pcb != NULL);
+
+    udp_recv(c->pcb, received_package, (void*)c);
+    udp_bind(c->pcb, &listen_addr->addr, listen_addr->port);
+
+    c->timer_configured = 0;
+
+    return c;
+#endif
+}
+
+void coap_free_context(coap_context_t *context)
+{
+#if defined(WITH_POSIX) || defined(WITH_LWIP)
+    coap_resource_t *res;
+#ifndef COAP_RESOURCES_NOHASH
+    coap_resource_t *rtmp;
+#endif
+#endif /* WITH_POSIX || WITH_LWIP */
+    if (!context)
+        return;
+
+    coap_delete_all(context->recvqueue);
+    coap_delete_all(context->sendqueue);
+
+#ifdef WITH_LWIP
+    context->sendqueue = NULL;
+    coap_retransmittimer_restart(context);
+#endif
+
+#if defined(WITH_POSIX) || defined(WITH_LWIP)
+#ifdef COAP_RESOURCES_NOHASH
+    LL_FOREACH(context->resources, res)
+    {
+#else
+        HASH_ITER(hh, context->resources, res, rtmp)
+        {
+#endif
+            coap_delete_resource(context, res->key);
+        }
+#endif /* WITH_POSIX || WITH_LWIP */
+
+#ifdef WITH_POSIX
+    /* coap_delete_list(context->subscriptions); */
+    close( context->sockfd );
+    coap_free( context );
+#endif
+#ifdef WITH_LWIP
+    udp_remove(context->pcb);
+    memp_free(MEMP_COAP_CONTEXT, context);
+#endif
+#ifdef WITH_CONTIKI
+    memset(&the_coap_context, 0, sizeof(coap_context_t));
+    initialized = 0;
+#endif /* WITH_CONTIKI */
+}
+
+int coap_option_check_critical(coap_context_t *ctx, coap_pdu_t *pdu, coap_opt_filter_t unknown)
+{
+
+    coap_opt_iterator_t opt_iter;
+    int ok = 1;
+
+    coap_option_iterator_init(pdu, &opt_iter, COAP_OPT_ALL);
+
+    while (coap_option_next(&opt_iter))
+    {
+
+        /* The following condition makes use of the fact that
+         * coap_option_getb() returns -1 if type exceeds the bit-vector
+         * filter. As the vector is supposed to be large enough to hold
+         * the largest known option, we know that everything beyond is
+         * bad.
+         */
+        if (opt_iter.type & 0x01 && coap_option_getb(ctx->known_options, opt_iter.type) < 1)
+        {
+            debug("unknown critical option %d\n", opt_iter.type);
+
+            ok = 0;
+
+            /* When opt_iter.type is beyond our known option range,
+             * coap_option_setb() will return -1 and we are safe to leave
+             * this loop. */
+            if (coap_option_setb(unknown, opt_iter.type) == -1)
+                break;
+        }
+    }
+
+    return ok;
+}
+
+void coap_transaction_id(const coap_address_t *peer, const coap_pdu_t *pdu, coap_tid_t *id)
+{
+    coap_key_t h;
+
+    memset(h, 0, sizeof(coap_key_t));
+
+    /* Compare the complete address structure in case of IPv4. For IPv6,
+     * we need to look at the transport address only. */
+
+#ifdef WITH_POSIX
+    switch (peer->addr.sa.sa_family)
+    {
+        case AF_INET:
+        coap_hash((const unsigned char *)&peer->addr.sa, peer->size, h);
+        break;
+        case AF_INET6:
+        coap_hash((const unsigned char *)&peer->addr.sin6.sin6_port,
+                sizeof(peer->addr.sin6.sin6_port), h);
+        coap_hash((const unsigned char *)&peer->addr.sin6.sin6_addr,
+                sizeof(peer->addr.sin6.sin6_addr), h);
+        break;
+        default:
+        return;
+    }
+#endif
+#if defined(WITH_LWIP) || defined(WITH_CONTIKI)
+    /* FIXME: with lwip, we can do better */
+    coap_hash((const unsigned char *)&peer->port, sizeof(peer->port), h);
+    coap_hash((const unsigned char *)&peer->addr, sizeof(peer->addr), h);
+#endif /* WITH_LWIP || WITH_CONTIKI */
+
+    coap_hash((const unsigned char *)&pdu->hdr->id, sizeof(unsigned short), h);
+
+    *id = ((h[0] << 8) | h[1]) ^ ((h[2] << 8) | h[3]);
+}
+
+coap_tid_t coap_send_ack(coap_context_t *context, const coap_address_t *dst, coap_pdu_t *request)
+{
+    coap_pdu_t *response;
+    coap_tid_t result = COAP_INVALID_TID;
+
+    if (request && request->hdr->type == COAP_MESSAGE_CON)
+    {
+        response = coap_pdu_init(COAP_MESSAGE_ACK, 0, request->hdr->id, sizeof(coap_pdu_t));
+        if (response)
+        {
+            result = coap_send(context, dst, response);
+            coap_delete_pdu(response);
+        }
+    }
+    return result;
+}
+
+#ifdef WITH_POSIX
+/* releases space allocated by PDU if free_pdu is set */
+coap_tid_t
+coap_send_impl(coap_context_t *context,
+        const coap_address_t *dst,
+        coap_pdu_t *pdu)
+{
+
+    char* z = inet_ntoa(*(struct in_addr *)&(dst->addr));
+
+    ssize_t bytes_written;
+    coap_tid_t id = COAP_INVALID_TID;
+
+    if ( !context || !dst || !pdu )
+    return id;
+
+    bytes_written = sendto( context->sockfd, pdu->hdr, pdu->length, 0,
+            &dst->addr.sa, dst->size);
+
+    if (bytes_written >= 0)
+    {
+        coap_transaction_id(dst, pdu, &id);
+    }
+    else
+    {
+        coap_log(LOG_CRIT, "coap_send: sendto\n");
+    }
+
+    return id;
+}
+#endif /* WITH_POSIX */
+#ifdef WITH_CONTIKI
+/* releases space allocated by PDU if free_pdu is set */
+coap_tid_t
+coap_send_impl(coap_context_t *context,
+        const coap_address_t *dst,
+        coap_pdu_t *pdu)
+{
+    coap_tid_t id = COAP_INVALID_TID;
+
+    if ( !context || !dst || !pdu )
+    return id;
+
+    /* FIXME: is there a way to check if send was successful? */
+    uip_udp_packet_sendto(context->conn, pdu->hdr, pdu->length,
+            &dst->addr, dst->port);
+
+    coap_transaction_id(dst, pdu, &id);
+
+    return id;
+}
+#endif /* WITH_CONTIKI */
+#ifdef WITH_LWIP
+coap_tid_t
+coap_send_impl(coap_context_t *context,
+        const coap_address_t *dst,
+        coap_pdu_t *pdu)
+{
+    coap_tid_t id = COAP_INVALID_TID;
+    struct pbuf *p;
+    uint8_t err;
+    char *data_backup;
+
+    if ( !context || !dst || !pdu )
+    {
+        return id;
+    }
+
+    data_backup = pdu->data;
+
+    /* FIXME: we can't check this here with the existing infrastructure, but we
+     * should actually check that the pdu is not held by anyone but us. the
+     * respective pbuf is already exclusively owned by the pdu. */
+
+    p = pdu->pbuf;
+    LWIP_ASSERT("The PDU header is not where it is expected", pdu->hdr == p->payload + sizeof(coap_pdu_t));
+
+    err = pbuf_header(p, -sizeof(coap_pdu_t));
+    if (err)
+    {
+        debug("coap_send_impl: pbuf_header failed\n");
+        pbuf_free(p);
+        return id;
+    }
+
+    coap_transaction_id(dst, pdu, &id);
+
+    pbuf_realloc(p, pdu->length);
+
+    udp_sendto(context->pcb, p,
+            &dst->addr, dst->port);
+
+    pbuf_header(p, -(ptrdiff_t)((uint8_t*)pdu - (uint8_t*)p->payload) - sizeof(coap_pdu_t)); /* FIXME hack around udp_sendto not restoring; see http://lists.gnu.org/archive/html/lwip-users/2013-06/msg00008.html. for udp over ip over ethernet, this was -42; as we're doing ppp too, this has to be calculated generically */
+
+    err = pbuf_header(p, sizeof(coap_pdu_t));
+    LWIP_ASSERT("Cannot undo pbuf_header", err == 0);
+
+    /* restore destroyed pdu data */
+    LWIP_ASSERT("PDU not restored", p->payload == pdu);
+    pdu->max_size = p->tot_len - sizeof(coap_pdu_t); /* reduced after pbuf_realloc */
+    pdu->hdr = p->payload + sizeof(coap_pdu_t);
+    pdu->max_delta = 0; /* won't be used any more */
+    pdu->length = pdu->max_size;
+    pdu->data = data_backup;
+    pdu->pbuf = p;
+
+    return id;
+}
+#endif /* WITH_LWIP */
+
+coap_tid_t coap_send(coap_context_t *context, const coap_address_t *dst, coap_pdu_t *pdu)
+{
+    return coap_send_impl(context, dst, pdu);
+}
+
+coap_tid_t coap_send_error(coap_context_t *context, coap_pdu_t *request, const coap_address_t *dst,
+        unsigned char code, coap_opt_filter_t opts)
+{
+    coap_pdu_t *response;
+    coap_tid_t result = COAP_INVALID_TID;
+
+    assert(request);
+    assert(dst);
+
+    response = coap_new_error_response(request, code, opts);
+    if (response)
+    {
+        result = coap_send(context, dst, response);
+        coap_delete_pdu(response);
+    }
+
+    return result;
+}
+
+coap_tid_t coap_send_message_type(coap_context_t *context, const coap_address_t *dst,
+        coap_pdu_t *request, unsigned char type)
+{
+    coap_pdu_t *response;
+    coap_tid_t result = COAP_INVALID_TID;
+
+    if (request)
+    {
+        response = coap_pdu_init(type, 0, request->hdr->id, sizeof(coap_pdu_t));
+        if (response)
+        {
+            result = coap_send(context, dst, response);
+            coap_delete_pdu(response);
+        }
+    }
+    return result;
+}
+
+coap_tid_t coap_send_confirmed(coap_context_t *context, const coap_address_t *dst, coap_pdu_t *pdu)
+{
+    coap_queue_t *node;
+    coap_tick_t now;
+    int r;
+
+    node = coap_new_node();
+    if (!node)
+    {
+        debug("coap_send_confirmed: insufficient memory\n");
+        return COAP_INVALID_TID;
+    }
+
+    node->id = coap_send_impl(context, dst, pdu);
+    if (COAP_INVALID_TID == node->id)
+    {
+        debug("coap_send_confirmed: error sending pdu\n");
+        coap_free_node(node);
+        return COAP_INVALID_TID;
+    }
+
+    prng((unsigned char *)&r, sizeof(r));
+
+    /* add randomized RESPONSE_TIMEOUT to determine retransmission timeout */
+    node->timeout = COAP_DEFAULT_RESPONSE_TIMEOUT * COAP_TICKS_PER_SECOND
+            + (COAP_DEFAULT_RESPONSE_TIMEOUT >> 1) * ((COAP_TICKS_PER_SECOND * (r & 0xFF)) >> 8);
+
+    memcpy(&node->remote, dst, sizeof(coap_address_t));
+    node->pdu = pdu;
+
+    /* Set timer for pdu retransmission. If this is the first element in
+     * the retransmission queue, the base time is set to the current
+     * time and the retransmission time is node->timeout. If there is
+     * already an entry in the sendqueue, we must check if this node is
+     * to be retransmitted earlier. Therefore, node->timeout is first
+     * normalized to the base time and then inserted into the queue with
+     * an adjusted relative time.
+     */coap_ticks(&now);
+    if (context->sendqueue == NULL)
+    {
+        node->t = node->timeout;
+        context->sendqueue_basetime = now;
+    }
+    else
+    {
+        /* make node->t relative to context->sendqueue_basetime */
+        node->t = (now - context->sendqueue_basetime) + node->timeout;
+    }
+
+    coap_insert_node(&context->sendqueue, node);
+
+#ifdef WITH_LWIP
+    if (node == context->sendqueue) /* don't bother with timer stuff if there are earlier retransmits */
+    coap_retransmittimer_restart(context);
+#endif
+
+#ifdef WITH_CONTIKI
+    { /* (re-)initialize retransmission timer */
+        coap_queue_t *nextpdu;
+
+        nextpdu = coap_peek_next(context);
+        assert(nextpdu); /* we have just inserted a node */
+
+        /* must set timer within the context of the retransmit process */
+        PROCESS_CONTEXT_BEGIN(&coap_retransmit_process);
+        etimer_set(&context->retransmit_timer, nextpdu->t);
+        PROCESS_CONTEXT_END(&coap_retransmit_process);
+    }
+#endif /* WITH_CONTIKI */
+
+    return node->id;
+}
+
+coap_tid_t coap_retransmit(coap_context_t *context, coap_queue_t *node)
+{
+    if (!context || !node)
+        return COAP_INVALID_TID;
+
+    /* re-initialize timeout when maximum number of retransmissions are not reached yet */
+    if (node->retransmit_cnt < COAP_DEFAULT_MAX_RETRANSMIT)
+    {
+        node->retransmit_cnt++;
+        node->t = node->timeout << node->retransmit_cnt;
+        coap_insert_node(&context->sendqueue, node);
+#ifdef WITH_LWIP
+        if (node == context->sendqueue) /* don't bother with timer stuff if there are earlier retransmits */
+        coap_retransmittimer_restart(context);
+#endif
+
+        debug(
+                "** retransmission #%d of transaction %d\n", node->retransmit_cnt, ntohs(node->pdu->hdr->id));
+
+        node->id = coap_send_impl(context, &node->remote, node->pdu);
+        return node->id;
+    }
+
+    /* no more retransmissions, remove node from system */
+
+#ifndef WITH_CONTIKI
+    debug("** removed transaction %d\n", ntohs(node->id));
+#endif
+
+#ifndef WITHOUT_OBSERVE
+    /* Check if subscriptions exist that should be canceled after
+     COAP_MAX_NOTIFY_FAILURES */
+    if (node->pdu->hdr->code >= 64)
+    {
+        str token =
+        { 0, NULL };
+
+        token.length = node->pdu->hdr->token_length;
+        token.s = node->pdu->hdr->token;
+
+        coap_handle_failed_notify(context, &node->remote, &token);
+    }
+#endif /* WITHOUT_OBSERVE */
+
+    /* And finally delete the node */
+    coap_delete_node(node);
+    return COAP_INVALID_TID;
+}
+
+/** 
+ * Checks if @p opt fits into the message that ends with @p maxpos.
+ * This function returns @c 1 on success, or @c 0 if the option @p opt
+ * would exceed @p maxpos.
+ */
+static inline int check_opt_size(coap_opt_t *opt, unsigned char *maxpos)
+{
+    if (opt && opt < maxpos)
+    {
+        if (((*opt & 0x0f) < 0x0f) || (opt + 1 < maxpos))
+            return opt + COAP_OPT_SIZE(opt) < maxpos;
+    }
+    return 0;
+}
+
+int coap_read(coap_context_t *ctx, char* data)
+{
+#ifdef WITH_POSIX
+    static char buf[COAP_MAX_PDU_SIZE];
+#endif
+#if defined(WITH_LWIP) || defined(WITH_CONTIKI)
+    char *buf;
+#endif
+    coap_hdr_t *pdu;
+    ssize_t bytes_read = -1;
+    coap_address_t src, dst;
+    coap_queue_t *node;
+
+#ifdef WITH_CONTIKI
+    buf = uip_appdata;
+#endif /* WITH_CONTIKI */
+#ifdef WITH_LWIP
+    LWIP_ASSERT("No package pending", ctx->pending_package != NULL);
+    LWIP_ASSERT("Can only deal with contiguous PBUFs to read the initial details", ctx->pending_package->tot_len == ctx->pending_package->len);
+    buf = ctx->pending_package->payload;
+#endif /* WITH_LWIP */
+
+    pdu = (coap_hdr_t *) buf;
+
+    coap_address_init(&src);
+
+#ifdef WITH_POSIX
+    bytes_read = recvfrom(ctx->sockfd, buf, sizeof(buf), 0, &src.addr.sa, &src.size);
+
+#endif /* WITH_POSIX */
+#ifdef WITH_CONTIKI
+    if(uip_newdata())
+    {
+        uip_ipaddr_copy(&src.addr, &UIP_IP_BUF->srcipaddr);
+        src.port = UIP_UDP_BUF->srcport;
+        uip_ipaddr_copy(&dst.addr, &UIP_IP_BUF->destipaddr);
+        dst.port = UIP_UDP_BUF->destport;
+
+        bytes_read = uip_datalen();
+        ((char *)uip_appdata)[bytes_read] = 0;
+        PRINTF("Server received %d bytes from [", (int)bytes_read);
+        PRINT6ADDR(&src.addr);
+        PRINTF("]:%d\n", uip_ntohs(src.port));
+    }
+#endif /* WITH_CONTIKI */
+#ifdef WITH_LWIP
+    /* FIXME: use lwip address operation functions */
+    src.addr.addr = ctx->pending_address.addr;
+    src.port = ctx->pending_port;
+    bytes_read = ctx->pending_package->tot_len;
+#endif /* WITH_LWIP */
+
+    if (bytes_read < 0)
+    {
+        warn("coap_read: recvfrom");
+        goto error_early;
+    }
+
+    if ((size_t) bytes_read < sizeof(coap_hdr_t))
+    {
+        debug("coap_read: discarded invalid frame\n");
+        goto error_early;
+    }
+
+    if (pdu->version != COAP_DEFAULT_VERSION)
+    {
+        debug("coap_read: unknown protocol version\n");
+        goto error_early;
+    }
+
+    node = coap_new_node();
+    if (!node)
+        goto error_early;
+
+#ifdef WITH_LWIP
+    node->pdu = coap_pdu_from_pbuf(ctx->pending_package);
+    ctx->pending_package = NULL;
+#else
+    node->pdu = coap_pdu_init(0, 0, 0, bytes_read);
+#endif
+    if (!node->pdu)
+        goto error;
+
+    coap_ticks(&node->t);
+    memcpy(&node->local, &dst, sizeof(coap_address_t));
+    memcpy(&node->remote, &src, sizeof(coap_address_t));
+
+    if (!coap_pdu_parse((unsigned char *) buf, bytes_read, node->pdu))
+    {
+        warn("discard malformed PDU");
+        goto error;
+    }
+
+    /* and add new node to receive queue */
+    coap_transaction_id(&node->remote, node->pdu, &node->id);
+    coap_insert_node(&ctx->recvqueue, node);
+
+#ifndef NDEBUG
+    if (LOG_DEBUG <= coap_get_log_level())
+    {
+#ifndef INET6_ADDRSTRLEN
+#define INET6_ADDRSTRLEN 40
+#endif
+        unsigned char addr[INET6_ADDRSTRLEN + 8];
+
+        if (coap_print_addr(&src, addr, INET6_ADDRSTRLEN + 8))
+            debug("** received %d bytes from %s:\n", (int)bytes_read, addr);
+
+        coap_show_pdu(node->pdu);
+    }
+#endif
+
+    return 0;
+
+    error:
+    /* FIXME: send back RST? */
+    coap_delete_node(node);
+    return -1;
+    error_early:
+#ifdef WITH_LWIP
+    /* even if there was an error, clean up */
+    pbuf_free(ctx->pending_package);
+    ctx->pending_package = NULL;
+#endif
+    return -1;
+}
+
+int coap_remove_from_queue(coap_queue_t **queue, coap_tid_t id, coap_queue_t **node)
+{
+    coap_queue_t *p, *q;
+
+    if (!queue || !*queue)
+        return 0;
+
+    /* replace queue head if PDU's time is less than head's time */
+
+    if (id == (*queue)->id)
+    { /* found transaction */
+        *node = *queue;
+        *queue = (*queue)->next;
+        if (*queue)
+        { /* adjust relative time of new queue head */
+            (*queue)->t += (*node)->t;
+        }
+        (*node)->next = NULL;
+        /* coap_delete_node( q ); */
+        debug("*** removed transaction %u\n", id);
+        return 1;
+    }
+
+    /* search transaction to remove (only first occurence will be removed) */
+    q = *queue;
+    do
+    {
+        p = q;
+        q = q->next;
+    } while (q && id != q->id);
+
+    if (q)
+    { /* found transaction */
+        p->next = q->next;
+        if (p->next)
+        { /* must update relative time of p->next */
+            p->next->t += q->t;
+        }
+        q->next = NULL;
+        *node = q;
+        /* coap_delete_node( q ); */
+        debug("*** removed transaction %u\n", id);
+        return 1;
+    }
+
+    return 0;
+
+}
+
+static inline int token_match(const unsigned char *a, size_t alen, const unsigned char *b,
+        size_t blen)
+{
+    return alen == blen && (alen == 0 || memcmp(a, b, alen) == 0);
+}
+
+void coap_cancel_all_messages(coap_context_t *context, const coap_address_t *dst,
+        const unsigned char *token, size_t token_length)
+{
+    /* cancel all messages in sendqueue that are for dst 
+     * and use the specified token */
+    coap_queue_t *p, *q;
+
+    debug("cancel_all_messages\n");
+    while (context->sendqueue && coap_address_equals(dst, &context->sendqueue->remote)
+            && token_match(token, token_length, context->sendqueue->pdu->hdr->token,
+                    context->sendqueue->pdu->hdr->token_length))
+    {
+        q = context->sendqueue;
+        context->sendqueue = q->next;
+        debug("**** removed transaction %d\n", ntohs(q->pdu->hdr->id));
+        coap_delete_node(q);
+    }
+
+    if (!context->sendqueue)
+        return;
+
+    p = context->sendqueue;
+    q = p->next;
+
+    /* when q is not NULL, it does not match (dst, token), so we can skip it */
+    while (q)
+    {
+        if (coap_address_equals(dst, &q->remote)
+                && token_match(token, token_length, q->pdu->hdr->token, q->pdu->hdr->token_length))
+        {
+            p->next = q->next;
+            debug("**** removed transaction %d\n", ntohs(q->pdu->hdr->id));
+            coap_delete_node(q);
+            q = p->next;
+        }
+        else
+        {
+            p = q;
+            q = q->next;
+        }
+    }
+}
+
+coap_queue_t *
+coap_find_transaction(coap_queue_t *queue, coap_tid_t id)
+{
+    while (queue && queue->id != id)
+        queue = queue->next;
+
+    return queue;
+}
+
+coap_pdu_t *
+coap_new_error_response(coap_pdu_t *request, unsigned char code, coap_opt_filter_t opts)
+{
+    coap_opt_iterator_t opt_iter;
+    coap_pdu_t *response;
+    size_t size = sizeof(coap_hdr_t) + request->hdr->token_length;
+    int type;
+    coap_opt_t *option;
+    unsigned short opt_type = 0; /* used for calculating delta-storage */
+
+#if COAP_ERROR_PHRASE_LENGTH > 0
+    char *phrase = coap_response_phrase(code);
+
+    /* Need some more space for the error phrase and payload start marker */
+    if (phrase)
+        size += strlen(phrase) + 1;
+#endif
+
+    assert(request);
+
+    /* cannot send ACK if original request was not confirmable */
+    type = request->hdr->type == COAP_MESSAGE_CON ? COAP_MESSAGE_ACK : COAP_MESSAGE_NON;
+
+    /* Estimate how much space we need for options to copy from
+     * request. We always need the Token, for 4.02 the unknown critical
+     * options must be included as well. */
+    coap_option_clrb(opts, COAP_OPTION_CONTENT_TYPE); /* we do not want this */
+
+    coap_option_iterator_init(request, &opt_iter, opts);
+
+    /* Add size of each unknown critical option. As known critical
+     options as well as elective options are not copied, the delta
+     value might grow.
+     */
+    while ((option = coap_option_next(&opt_iter)))
+    {
+        unsigned short delta = opt_iter.type - opt_type;
+        /* calculate space required to encode (opt_iter.type - opt_type) */
+        if (delta < 13)
+        {
+            size++;
+        }
+        else if (delta < 269)
+        {
+            size += 2;
+        }
+        else
+        {
+            size += 3;
+        }
+
+        /* add coap_opt_length(option) and the number of additional bytes
+         * required to encode the option length */
+
+        size += coap_opt_length(option);
+        switch (*option & 0x0f)
+        {
+            case 0x0e:
+                size++;
+                /* fall through */
+            case 0x0d:
+                size++;
+                break;
+            default:
+                ;
+        }
+
+        opt_type = opt_iter.type;
+    }
+
+    /* Now create the response and fill with options and payload data. */
+    response = coap_pdu_init(type, code, request->hdr->id, size);
+    if (response)
+    {
+        /* copy token */
+        if (!coap_add_token(response, request->hdr->token_length, request->hdr->token))
+        {
+            debug("cannot add token to error response\n");
+            coap_delete_pdu(response);
+            return NULL;
+        }
+
+        /* copy all options */
+        coap_option_iterator_init(request, &opt_iter, opts);
+        while ((option = coap_option_next(&opt_iter)))
+            coap_add_option(response, opt_iter.type, COAP_OPT_LENGTH(option),
+                    COAP_OPT_VALUE(option));
+
+#if COAP_ERROR_PHRASE_LENGTH > 0
+        /* note that diagnostic messages do not need a Content-Format option. */
+        if (phrase)
+            coap_add_data(response, strlen(phrase), (unsigned char *) phrase);
+#endif
+    }
+
+    return response;
+}
+
+/**
+ * Quick hack to determine the size of the resource description for
+ * .well-known/core.
+ */
+static inline size_t get_wkc_len(coap_context_t *context, coap_opt_t *query_filter)
+{
+    unsigned char buf[1];
+    size_t len = 0;
+
+    if (print_wellknown(context, buf, &len, UINT_MAX, query_filter) & COAP_PRINT_STATUS_ERROR)
+    {
+        warn("cannot determine length of /.well-known/core\n");
+        return 0;
+    }
+
+    debug("get_wkc_len: print_wellknown() returned %zu\n", len);
+
+    return len;
+}
+
+#define SZX_TO_BYTES(SZX) ((size_t)(1 << ((SZX) + 4)))
+
+coap_pdu_t *
+wellknown_response(coap_context_t *context, coap_pdu_t *request)
+{
+    coap_pdu_t *resp;
+    coap_opt_iterator_t opt_iter;
+    size_t len, wkc_len;
+    unsigned char buf[2];
+    int result = 0;
+    int need_block2 = 0; /* set to 1 if Block2 option is required */
+    coap_block_t block;
+    coap_opt_t *query_filter;
+    size_t offset = 0;
+
+    resp = coap_pdu_init(
+            request->hdr->type == COAP_MESSAGE_CON ? COAP_MESSAGE_ACK : COAP_MESSAGE_NON,
+            COAP_RESPONSE_CODE(205),
+            request->hdr->id, COAP_MAX_PDU_SIZE);
+    if (!resp)
+    {
+        debug("wellknown_response: cannot create PDU\n");
+        return NULL;
+    }
+
+    if (!coap_add_token(resp, request->hdr->token_length, request->hdr->token))
+    {
+        debug("wellknown_response: cannot add token\n");
+        goto error;
+    }
+
+    query_filter = coap_check_option(request, COAP_OPTION_URI_QUERY, &opt_iter);
+    wkc_len = get_wkc_len(context, query_filter);
+
+    /* check whether the request contains the Block2 option */
+    if (coap_get_block(request, COAP_OPTION_BLOCK2, &block))
+    {
+        offset = block.num << (block.szx + 4);
+        if (block.szx > 6)
+        { /* invalid, MUST lead to 4.00 Bad Request */
+            resp->hdr->code = COAP_RESPONSE_CODE(400);
+            return resp;
+        }
+        else if (block.szx > COAP_MAX_BLOCK_SZX)
+        {
+            block.szx = COAP_MAX_BLOCK_SZX;
+            block.num = offset >> (block.szx + 4);
+        }
+
+        need_block2 = 1;
+    }
+
+    /* Check if there is sufficient space to add Content-Format option 
+     * and data. We do this before adding the Content-Format option to
+     * avoid sending error responses with that option but no actual
+     * content. */
+    if (resp->max_size <= (size_t) resp->length + 3)
+    {
+        debug("wellknown_response: insufficient storage space\n");
+        goto error;
+    }
+
+    /* Add Content-Format. As we have checked for available storage,
+     * nothing should go wrong here. */
+    assert(coap_encode_var_bytes(buf, COAP_MEDIATYPE_APPLICATION_LINK_FORMAT) == 1);
+    coap_add_option(resp, COAP_OPTION_CONTENT_FORMAT,
+            coap_encode_var_bytes(buf, COAP_MEDIATYPE_APPLICATION_LINK_FORMAT), buf);
+
+    /* check if Block2 option is required even if not requested */
+    if (!need_block2 && (resp->max_size - (size_t) resp->length < wkc_len))
+    {
+        assert(resp->length <= resp->max_size);
+        const size_t payloadlen = resp->max_size - resp->length;
+        /* yes, need block-wise transfer */
+        block.num = 0;
+        block.m = 0; /* the M bit is set by coap_write_block_opt() */
+        block.szx = COAP_MAX_BLOCK_SZX;
+        while (payloadlen < SZX_TO_BYTES(block.szx))
+        {
+            if (block.szx == 0)
+            {
+                debug("wellknown_response: message to small even for szx == 0\n");
+                goto error;
+            }
+            else
+            {
+                block.szx--;
+            }
+        }
+
+        need_block2 = 1;
+    }
+
+    /* write Block2 option if necessary */
+    if (need_block2)
+    {
+        if (coap_write_block_opt(&block, COAP_OPTION_BLOCK2, resp, wkc_len) < 0)
+        {
+            debug("wellknown_response: cannot add Block2 option\n");
+            goto error;
+        }
+    }
+
+    /* Manually set payload of response to let print_wellknown() write,
+     * into our buffer without copying data. */
+
+    resp->data = (unsigned char *) resp->hdr + resp->length;
+    *resp->data = COAP_PAYLOAD_START;
+    resp->data++;
+    resp->length++;
+    len = need_block2 ? SZX_TO_BYTES(block.szx) : resp->max_size - resp->length;
+
+    result = print_wellknown(context, resp->data, &len, offset, query_filter);
+    if ((result & COAP_PRINT_STATUS_ERROR) != 0)
+    {
+        debug("print_wellknown failed\n");
+        goto error;
+    }
+
+    resp->length += COAP_PRINT_OUTPUT_LENGTH(result);
+    return resp;
+
+    error:
+    /* set error code 5.03 and remove all options and data from response */
+    resp->hdr->code = COAP_RESPONSE_CODE(503);
+    resp->length = sizeof(coap_hdr_t) + resp->hdr->token_length;
+    return resp;
+}
+
+#define WANT_WKC(Pdu,Key)                                      \
+  (((Pdu)->hdr->code == COAP_REQUEST_GET) && is_wkc(Key))
+
+void handle_request(coap_context_t *context, coap_queue_t *node, const char* responseData)
+{
+
+    coap_method_handler_t h = NULL;
+    coap_pdu_t *response = NULL;
+    coap_opt_filter_t opt_filter;
+    coap_resource_t *resource;
+    coap_key_t key;
+
+    coap_option_filter_clear(opt_filter);
+
+    /* try to find the resource from the request URI */
+    coap_hash_request_uri(node->pdu, key);
+    resource = coap_get_resource_from_key(context, key);
+
+    if (!resource)
+    {
+        /* The resource was not found. Check if the request URI happens to
+         * be the well-known URI. In that case, we generate a default
+         * response, otherwise, we return 4.04 */
+
+        switch (node->pdu->hdr->code)
+        {
+
+            case COAP_REQUEST_GET:
+                if (is_wkc(key))
+                { /* GET request for .well-known/core */
+                    info("create default response for %s\n", COAP_DEFAULT_URI_WELLKNOWN);
+
+                    response = wellknown_response(context, node->pdu);
+
+                }
+                else
+                { /* GET request for any another resource, return 4.04 */
+
+                    debug(
+                            "GET for unknown resource 0x%02x%02x%02x%02x, return 4.04\n", key[0], key[1], key[2], key[3]);
+                    response = coap_new_error_response(node->pdu, COAP_RESPONSE_CODE(404),
+                            opt_filter);
+                }
+                break;
+
+            default: /* any other request type */
+
+                debug(
+                        "unhandled request for unknown resource 0x%02x%02x%02x%02x\r\n", key[0], key[1], key[2], key[3]);
+                if (!coap_is_mcast(&node->local))
+                    response = coap_new_error_response(node->pdu, COAP_RESPONSE_CODE(405),
+                            opt_filter);
+        }
+
+        if (response && coap_send(context, &node->remote, response) == COAP_INVALID_TID)
+        {
+            warn("cannot send response for transaction %u\n", node->id);
+        }
+        coap_delete_pdu(response);
+
+        return;
+    }
+
+    /* the resource was found, check if there is a registered handler */
+    if ((size_t) node->pdu->hdr->code - 1
+            < sizeof(resource->handler) / sizeof(coap_method_handler_t))
+        h = resource->handler[node->pdu->hdr->code - 1];
+
+    if (h)
+    {
+        debug(
+                "call custom handler for resource 0x%02x%02x%02x%02x\n", key[0], key[1], key[2], key[3]);
+        response = coap_pdu_init(
+                node->pdu->hdr->type == COAP_MESSAGE_CON ? COAP_MESSAGE_ACK : COAP_MESSAGE_NON,
+                0, node->pdu->hdr->id, COAP_MAX_PDU_SIZE);
+
+        /* Implementation detail: coap_add_token() immediately returns 0
+         if response == NULL */
+        if (coap_add_token(response, node->pdu->hdr->token_length, node->pdu->hdr->token))
+        {
+            str token =
+            { node->pdu->hdr->token_length, node->pdu->hdr->token };
+
+            //h(context, resource, &node->remote, 
+            //node->pdu, &token, response);
+
+            unsigned char buf[3];
+            response->hdr->code = COAP_RESPONSE_CODE(205);
+            coap_add_option(response, COAP_OPTION_CONTENT_TYPE,
+                    coap_encode_var_bytes(buf, COAP_MEDIATYPE_TEXT_PLAIN), buf);
+            coap_add_option(response, COAP_OPTION_MAXAGE, coap_encode_var_bytes(buf, 0x2ffff), buf);
+            coap_add_data(response, strlen(responseData), (unsigned char *) responseData);
+
+            if (response->hdr->type != COAP_MESSAGE_NON
+                    || (response->hdr->code >= 64 && !coap_is_mcast(&node->local)))
+            {
+
+                if (coap_send(context, &node->remote, response) == COAP_INVALID_TID)
+                {
+                    debug("cannot send response for message %d\n", node->pdu->hdr->id);
+                }
+            }
+
+            coap_delete_pdu(response);
+        }
+        else
+        {
+            warn("cannot generate response\r\n");
+        }
+    }
+    else
+    {
+        if (WANT_WKC(node->pdu, key))
+        {
+            debug("create default response for %s\n", COAP_DEFAULT_URI_WELLKNOWN);
+            response = wellknown_response(context, node->pdu);
+        }
+        else
+            response = coap_new_error_response(node->pdu, COAP_RESPONSE_CODE(405), opt_filter);
+
+        if (!response || (coap_send(context, &node->remote, response) == COAP_INVALID_TID))
+        {
+            debug("cannot send response for transaction %u\n", node->id);
+        }
+        coap_delete_pdu(response);
+    }
+}
+
+static inline void handle_response(coap_context_t *context, coap_queue_t *sent, coap_queue_t *rcvd)
+{
+
+    /* Call application-specific reponse handler when available.  If
+     * not, we must acknowledge confirmable messages. */
+    if (context->response_handler)
+    {
+
+        context->response_handler(context, &rcvd->remote, sent ? sent->pdu : NULL, rcvd->pdu,
+                rcvd->id);
+    }
+    else
+    {
+        /* send ACK if rcvd is confirmable (i.e. a separate response) */
+        coap_send_ack(context, &rcvd->remote, rcvd->pdu);
+    }
+}
+
+static inline int
+#ifdef __GNUC__
+handle_locally(coap_context_t *context __attribute__ ((unused)),
+        coap_queue_t *node __attribute__ ((unused)))
+{
+#else /* not a GCC */
+    handle_locally(coap_context_t *context, coap_queue_t *node)
+    {
+#endif /* GCC */
+        /* this function can be used to check if node->pdu is really for us */
+        return 1;
+    }
+
+    /**
+     * This function handles RST messages received for the message passed
+     * in @p sent.
+     */
+    static void coap_handle_rst(coap_context_t *context, const coap_queue_t *sent)
+    {
+#ifndef WITHOUT_OBSERVE
+        coap_resource_t *r;
+#ifndef COAP_RESOURCES_NOHASH
+        coap_resource_t *tmp;
+#endif
+        str token =
+        { 0, NULL };
+
+        /* remove observer for this resource, if any 
+         * get token from sent and try to find a matching resource. Uh!
+         */
+
+        COAP_SET_STR(&token, sent->pdu->hdr->token_length, sent->pdu->hdr->token);
+
+#ifndef WITH_CONTIKI
+#ifdef COAP_RESOURCES_NOHASH
+        LL_FOREACH(context->resources, r)
+        {
+#else
+        HASH_ITER(hh, context->resources, r, tmp)
+        {
+#endif
+            coap_delete_observer(r, &sent->remote, &token);
+            coap_cancel_all_messages(context, &sent->remote, token.s, token.length);
+        }
+#else /* WITH_CONTIKI */
+        r = (coap_resource_t *)resource_storage.mem;
+        for (i = 0; i < resource_storage.num; ++i, ++r)
+        {
+            if (resource_storage.count[i])
+            {
+                coap_delete_observer(r, &sent->remote, &token);
+                coap_cancel_all_messages(context, &sent->remote, token.s, token.length);
+            }
+        }
+#endif /* WITH_CONTIKI */
+#endif /* WITOUT_OBSERVE */  
+    }
+
+    void coap_dispatch(coap_context_t *context, const char* responseData)
+    {
+        coap_queue_t *rcvd = NULL, *sent = NULL;
+        coap_pdu_t *response;
+        coap_opt_filter_t opt_filter;
+
+        if (!context)
+            return;
+
+        memset(opt_filter, 0, sizeof(coap_opt_filter_t));
+
+        while (context->recvqueue)
+        {
+            rcvd = context->recvqueue;
+
+            /* remove node from recvqueue */
+            context->recvqueue = context->recvqueue->next;
+            rcvd->next = NULL;
+
+            if (rcvd->pdu->hdr->version != COAP_DEFAULT_VERSION)
+            {
+                debug("dropped packet with unknown version %u\n", rcvd->pdu->hdr->version);
+                goto cleanup;
+            }
+
+            switch (rcvd->pdu->hdr->type)
+            {
+                case COAP_MESSAGE_ACK:
+                    /* find transaction in sendqueue to stop retransmission */
+                    coap_remove_from_queue(&context->sendqueue, rcvd->id, &sent);
+
+                    if (rcvd->pdu->hdr->code == 0)
+                        goto cleanup;
+
+                    /* FIXME: if sent code was >= 64 the message might have been a 
+                     * notification. Then, we must flag the observer to be alive
+                     * by setting obs->fail_cnt = 0. */
+                    if (sent && COAP_RESPONSE_CLASS(sent->pdu->hdr->code) == 2)
+                    {
+                        const str token =
+                        { sent->pdu->hdr->token_length, sent->pdu->hdr->token };
+                        coap_touch_observer(context, &sent->remote, &token);
+                    }
+                    break;
+
+                case COAP_MESSAGE_RST:
+                    /* We have sent something the receiver disliked, so we remove
+                     * not only the transaction but also the subscriptions we might
+                     * have. */
+
+                    coap_log(LOG_ALERT, "got RST for message %u\n", ntohs(rcvd->pdu->hdr->id));
+
+                    /* find transaction in sendqueue to stop retransmission */
+                    coap_remove_from_queue(&context->sendqueue, rcvd->id, &sent);
+
+                    if (sent)
+                        coap_handle_rst(context, sent);
+                    goto cleanup;
+
+                case COAP_MESSAGE_NON: /* check for unknown critical options */
+                    if (coap_option_check_critical(context, rcvd->pdu, opt_filter) == 0)
+                        goto cleanup;
+                    break;
+
+                case COAP_MESSAGE_CON: /* check for unknown critical options */
+                    if (coap_option_check_critical(context, rcvd->pdu, opt_filter) == 0)
+                    {
+
+                        /* FIXME: send response only if we have received a request. Otherwise, 
+                         * send RST. */
+                        response = coap_new_error_response(rcvd->pdu, COAP_RESPONSE_CODE(402),
+                                opt_filter);
+
+                        if (!response)
+                            warn("coap_dispatch: cannot create error reponse\n");
+                        else
+                        {
+                            if (coap_send(context, &rcvd->remote, response) == COAP_INVALID_TID)
+                            {
+                                warn("coap_dispatch: error sending reponse\n");
+                            }
+                            coap_delete_pdu(response);
+                        }
+
+                        goto cleanup;
+                    }
+                    break;
+            }
+
+            /* Pass message to upper layer if a specific handler was
+             * registered for a request that should be handled locally. */
+            if (handle_locally(context, rcvd))
+            {
+                if (COAP_MESSAGE_IS_REQUEST(rcvd->pdu->hdr))
+                    handle_request(context, rcvd, responseData);
+                else if (COAP_MESSAGE_IS_RESPONSE(rcvd->pdu->hdr))
+                    handle_response(context, sent, rcvd);
+                else
+                {
+                    debug("dropped message with invalid code\n");
+                    coap_send_message_type(context, &rcvd->remote, rcvd->pdu, COAP_MESSAGE_RST);
+                }
+            }
+
+            cleanup: coap_delete_node(sent);
+            coap_delete_node(rcvd);
+        }
+    }
+
+    int coap_can_exit(coap_context_t *context)
+    {
+        return !context || (context->recvqueue == NULL && context->sendqueue == NULL);
+    }
+
+#ifdef WITH_CONTIKI
+
+    /*---------------------------------------------------------------------------*/
+    /* CoAP message retransmission */
+    /*---------------------------------------------------------------------------*/
+    PROCESS_THREAD(coap_retransmit_process, ev, data)
+    {
+        coap_tick_t now;
+        coap_queue_t *nextpdu;
+
+        PROCESS_BEGIN();
+
+        debug("Started retransmit process\r\n");
+
+        while(1)
+        {
+            PROCESS_YIELD();
+            if (ev == PROCESS_EVENT_TIMER)
+            {
+                if (etimer_expired(&the_coap_context.retransmit_timer))
+                {
+
+                    nextpdu = coap_peek_next(&the_coap_context);
+
+                    coap_ticks(&now);
+                    while (nextpdu && nextpdu->t <= now)
+                    {
+                        coap_retransmit(&the_coap_context, coap_pop_next(&the_coap_context));
+                        nextpdu = coap_peek_next(&the_coap_context);
+                    }
+
+                    /* need to set timer to some value even if no nextpdu is available */
+                    etimer_set(&the_coap_context.retransmit_timer,
+                            nextpdu ? nextpdu->t - now : 0xFFFF);
+                }
+#ifndef WITHOUT_OBSERVE
+                if (etimer_expired(&the_coap_context.notify_timer))
+                {
+                    coap_check_notify(&the_coap_context);
+                    etimer_reset(&the_coap_context.notify_timer);
+                }
+#endif /* WITHOUT_OBSERVE */
+            }
+        }
+
+        PROCESS_END();
+    }
+    /*---------------------------------------------------------------------------*/
+
+#endif /* WITH_CONTIKI */
+
+#ifdef WITH_LWIP
+    /* FIXME: retransmits that are not required any more due to incoming packages
+     * do *not* get cleared at the moment, the wakeup when the transmission is due
+     * is silently accepted. this is mainly due to the fact that the required
+     * checks are similar in two places in the code (when receiving ACK and RST)
+     * and that they cause more than one patch chunk, as it must be first checked
+     * whether the sendqueue item to be dropped is the next one pending, and later
+     * the restart function has to be called. nothing insurmountable, but it can
+     * also be implemented when things have stabilized, and the performance
+     * penality is minimal
+     *
+     * also, this completely ignores COAP_RESOURCE_CHECK_TIME.
+     * */
+
+    static void coap_retransmittimer_execute(void *arg)
+    {
+        coap_context_t *ctx = (coap_context_t*)arg;
+        coap_tick_t now;
+        coap_tick_t elapsed;
+        coap_queue_t *nextinqueue;
+
+        ctx->timer_configured = 0;
+
+        coap_ticks(&now);
+
+        elapsed = now - ctx->sendqueue_basetime; /* that's positive for sure, and unless we haven't been called for a complete wrapping cycle, did not wrap */
+
+        nextinqueue = coap_peek_next(ctx);
+        while (nextinqueue != NULL)
+        {
+            if (nextinqueue->t > elapsed)
+            {
+                nextinqueue->t -= elapsed;
+                break;
+            }
+            else
+            {
+                elapsed -= nextinqueue->t;
+                coap_retransmit(ctx, coap_pop_next(ctx));
+                nextinqueue = coap_peek_next(ctx);
+            }
+        }
+
+        ctx->sendqueue_basetime = now;
+
+        coap_retransmittimer_restart(ctx);
+    }
+
+    static void coap_retransmittimer_restart(coap_context_t *ctx)
+    {
+        coap_tick_t now, elapsed, delay;
+
+        if (ctx->timer_configured)
+        {
+            printf("clearing\n");
+            sys_untimeout(coap_retransmittimer_execute, (void*)ctx);
+            ctx->timer_configured = 0;
+        }
+        if (ctx->sendqueue != NULL)
+        {
+            coap_ticks(&now);
+            elapsed = now - ctx->sendqueue_basetime;
+            if (ctx->sendqueue->t >= elapsed)
+            {
+                delay = ctx->sendqueue->t - elapsed;
+            }
+            else
+            {
+                /* a strange situation, but not completely impossible.
+                 *
+                 * this happens, for example, right after
+                 * coap_retransmittimer_execute, when a retransmission
+                 * was *just not yet* due, and the clock ticked before
+                 * our coap_ticks was called.
+                 *
+                 * not trying to retransmit anything now, as it might
+                 * cause uncontrollable recursion; let's just try again
+                 * with the next main loop run.
+                 * */
+                delay = 0;
+            }
+
+            printf("scheduling for %d ticks\n", delay);
+            sys_timeout(delay, coap_retransmittimer_execute, (void*)ctx);
+            ctx->timer_configured = 1;
+        }
+    }
+#endif
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/net.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/net.h
new file mode 100644 (file)
index 0000000..254b2b4
--- /dev/null
@@ -0,0 +1,448 @@
+/* net.h -- CoAP network interface
+ *
+ * Copyright (C) 2010--2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _COAP_NET_H_
+#define _COAP_NET_H_
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+#include "config.h"
+
+#ifdef HAVE_ASSERT_H
+#include <assert.h>
+#else
+#ifndef assert
+#warning "assertions are disabled"
+#  define assert(x)
+#endif
+#endif
+
+#include <stdlib.h>
+#include <string.h>
+#ifdef HAVE_NETINET_IN_H
+#include <netinet/in.h>
+#endif
+#ifdef HAVE_TIME_H
+#include <time.h>
+#endif
+#ifdef HAVE_SYS_TIME_H
+#include <sys/time.h>
+#endif
+
+#ifdef WITH_LWIP
+#include <lwip/ip_addr.h>
+#endif
+
+#include "option.h"
+#include "address.h"
+#include "prng.h"
+#include "pdu.h"
+#include "coap_time.h"
+
+    struct coap_queue_t;
+
+    typedef struct coap_queue_t
+    {
+        struct coap_queue_t *next;
+
+        coap_tick_t t; /**< when to send PDU for the next time */
+        unsigned char retransmit_cnt; /**< retransmission counter, will be removed when zero */
+        unsigned int timeout; /**< the randomized timeout value */
+
+        coap_address_t local; /**< local address */
+        coap_address_t remote; /**< remote address */
+        coap_tid_t id; /**< unique transaction id */
+
+        coap_pdu_t *pdu; /**< the CoAP PDU to send */
+    } coap_queue_t;
+
+    /** Adds node to given queue, ordered by node->t. */
+    int coap_insert_node(coap_queue_t **queue, coap_queue_t *node);
+
+    /** Destroys specified node. */
+    int coap_delete_node(coap_queue_t *node);
+
+    /** Removes all items from given queue and frees the allocated storage. */
+    void coap_delete_all(coap_queue_t *queue);
+
+    /** Creates a new node suitable for adding to the CoAP sendqueue. */
+    coap_queue_t *coap_new_node();
+
+    struct coap_resource_t;
+    struct coap_context_t;
+#ifndef WITHOUT_ASYNC
+    struct coap_async_state_t;
+#endif
+
+    /** Message handler that is used as call-back in coap_context_t */
+    typedef void (*coap_response_handler_t)(struct coap_context_t *, const coap_address_t *remote,
+            coap_pdu_t *sent, coap_pdu_t *received, const coap_tid_t id);
+
+#define COAP_MID_CACHE_SIZE 3
+    typedef struct
+    {
+        unsigned char flags[COAP_MID_CACHE_SIZE];
+        coap_key_t item[COAP_MID_CACHE_SIZE];
+    } coap_mid_cache_t;
+
+    /** The CoAP stack's global state is stored in a coap_context_t object */
+    typedef struct coap_context_t
+    {
+        coap_opt_filter_t known_options;
+#ifndef WITH_CONTIKI
+        struct coap_resource_t *resources; /**< hash table or list of known resources */
+#endif /* WITH_CONTIKI */
+#ifndef WITHOUT_ASYNC
+        /** list of asynchronous transactions */
+        struct coap_async_state_t *async_state;
+#endif /* WITHOUT_ASYNC */
+        /**
+         * The time stamp in the first element of the sendqeue is relative
+         * to sendqueue_basetime. */
+        coap_tick_t sendqueue_basetime;
+        coap_queue_t *sendqueue, *recvqueue;
+#if WITH_POSIX
+        int sockfd; /**< send/receive socket */
+#endif /* WITH_POSIX */
+#ifdef WITH_CONTIKI
+        struct uip_udp_conn *conn; /**< uIP connection object */
+
+        struct etimer retransmit_timer; /**< fires when the next packet must be sent */
+        struct etimer notify_timer; /**< used to check resources periodically */
+#endif /* WITH_CONTIKI */
+#ifdef WITH_LWIP
+        struct udp_pcb *pcb; /**< the underlying lwIP UDP PCB */
+        struct pbuf *pending_package; /**< pbuf containing the last received package if not handled yet. This is only used to pass the package from the udp_recv callback into the coap_read function, which frees the pbuf and clears this field. */
+        ip_addr_t pending_address; /**< the address associated with pending_package */
+        u16_t pending_port; /**< the port associated with pending_package */
+
+        uint8_t timer_configured; /**< Set to 1 when a retransmission is scheduled using lwIP timers for this context, otherwise 0. */
+#endif /* WITH_LWIP */
+
+        /**
+         * The last message id that was used is stored in this field.  The
+         * initial value is set by coap_new_context() and is usually a
+         * random value. A new message id can be created with
+         * coap_new_message_id().
+         */
+        unsigned short message_id;
+
+        /**
+         * The next value to be used for Observe. This field is global for
+         * all resources and will be updated when notifications are created.
+         */
+        unsigned int observe;
+
+        coap_response_handler_t response_handler;
+    } coap_context_t;
+
+    /**
+     * Registers a new message handler that is called whenever a response
+     * was received that matches an ongoing transaction. 
+     * 
+     * @param context The context to register the handler for.
+     * @param handler The response handler to register.
+     */
+    static inline void coap_register_response_handler(coap_context_t *context,
+            coap_response_handler_t handler)
+    {
+        context->response_handler = handler;
+    }
+
+    /** 
+     * Registers the option type @p type with the given context object @p
+     * ctx.
+     * 
+     * @param ctx  The context to use.
+     * @param type The option type to register.
+     */
+    inline static void coap_register_option(coap_context_t *ctx, unsigned char type)
+    {
+        coap_option_setb(ctx->known_options, type);
+    }
+
+    /**
+     * Set sendqueue_basetime in the given context object @p ctx to @p
+     * now. This function returns the number of elements in the queue
+     * head that have timed out.
+     */
+    unsigned int coap_adjust_basetime(coap_context_t *ctx, coap_tick_t now);
+
+    /** Returns the next pdu to send without removing from sendqeue. */
+    coap_queue_t *coap_peek_next(coap_context_t *context);
+
+    /** Returns the next pdu to send and removes it from the sendqeue. */
+    coap_queue_t *coap_pop_next(coap_context_t *context);
+
+    /** Creates a new coap_context_t object that will hold the CoAP stack status.  */
+    coap_context_t *coap_new_context(const coap_address_t *listen_addr);
+
+    /** 
+     * Returns a new message id and updates @p context->message_id
+     * accordingly. The message id is returned in network byte order
+     * to make it easier to read in tracing tools. 
+     *
+     * @param context the current coap_context_t object
+     * @return incremented message id in network byte order
+     */
+    static inline unsigned short coap_new_message_id(coap_context_t *context)
+    {
+#ifndef WITH_CONTIKI
+        return htons(++(context->message_id));
+#else /* WITH_CONTIKI */
+        return uip_htons(++context->message_id);
+#endif
+    }
+
+    /* CoAP stack context must be released with coap_free_context() */
+    void coap_free_context(coap_context_t *context);
+
+    /**
+     * Sends a confirmed CoAP message to given destination. The memory
+     * that is allocated by pdu will not be released by
+     * coap_send_confirmed(). The caller must release the memory.
+     *
+     * @param context The CoAP context to use.
+     * @param dst     The address to send to.
+     * @param pdu     The CoAP PDU to send.
+     * @return The message id of the sent message or @c COAP_INVALID_TID on error.
+     */
+    coap_tid_t coap_send_confirmed(coap_context_t *context, const coap_address_t *dst,
+            coap_pdu_t *pdu);
+
+    /** 
+     * Creates a new ACK PDU with specified error @p code. The options
+     * specified by the filter expression @p opts will be copied from the
+     * original request contained in @p request.  Unless @c
+     * SHORT_ERROR_RESPONSE was defined at build time, the textual reason
+     * phrase for @p code will be added as payload, with Content-Type @c
+     * 0.  This function returns a pointer to the new response message, or
+     * @c NULL on error. The storage allocated for the new message must be
+     * relased with coap_free().
+     * 
+     * @param request Specification of the received (confirmable) request.
+     * @param code The error code to set.
+     * @param opts An option filter that specifies which options to copy
+     *             from the original request in @p node.
+     * 
+     * @return A pointer to the new message or @c NULL on error.
+     */
+    coap_pdu_t *coap_new_error_response(coap_pdu_t *request, unsigned char code,
+            coap_opt_filter_t opts);
+    /**
+     * Sends a non-confirmed CoAP message to given destination. The memory
+     * that is allocated by pdu will not be released by coap_send().
+     * The caller must release the memory.
+     *
+     * @param context The CoAP context to use.
+     * @param dst     The address to send to.
+     * @param pdu     The CoAP PDU to send.
+     * @return The message id of the sent message or @c COAP_INVALID_TID on error.
+     */
+    coap_tid_t coap_send(coap_context_t *context, const coap_address_t *dst, coap_pdu_t *pdu);
+
+    /** 
+     * Sends an error response with code @p code for request @p request to
+     * @p dst.  @p opts will be passed to coap_new_error_response() to
+     * copy marked options from the request. This function returns the
+     * transaction id if the message was sent, or @c COAP_INVALID_TID
+     * otherwise.
+     * 
+     * @param context The context to use.
+     * @param request The original request to respond to.
+     * @param dst     The remote peer that sent the request.
+     * @param code    The reponse code.
+     * @param opts    A filter that specifies the options to copy from the 
+     *                @p request.
+     * 
+     * @return The transaction id if the message was sent, or @c
+     * COAP_INVALID_TID otherwise.
+     */
+    coap_tid_t coap_send_error(coap_context_t *context, coap_pdu_t *request,
+            const coap_address_t *dst, unsigned char code, coap_opt_filter_t opts);
+
+    /** 
+     * Helper funktion to create and send a message with @p type (usually
+     * ACK or RST).  This function returns @c COAP_INVALID_TID when the
+     * message was not sent, a valid transaction id otherwise.
+     *
+     * @param context The CoAP context.
+     * @param dst Where to send the context.
+     * @param request The request that should be responded to.
+     * @param type Which type to set
+     * @return transaction id on success or @c COAP_INVALID_TID otherwise.
+     */
+    coap_tid_t
+    coap_send_message_type(coap_context_t *context, const coap_address_t *dst, coap_pdu_t *request,
+            unsigned char type);
+    /** 
+     * Sends an ACK message with code @c 0 for the specified @p request to
+     * @p dst. This function returns the corresponding transaction id if
+     * the message was sent or @c COAP_INVALID_TID on error.
+     * 
+     * @param context The context to use.
+     * @param dst     The destination address.
+     * @param request The request to be acknowledged.
+     * 
+     * @return The transaction id if ACK was sent or @c COAP_INVALID_TID
+     * on error.
+     */
+    coap_tid_t coap_send_ack(coap_context_t *context, const coap_address_t *dst,
+            coap_pdu_t *request);
+
+    /** 
+     * Sends an RST message with code @c 0 for the specified @p request to
+     * @p dst. This function returns the corresponding transaction id if
+     * the message was sent or @c COAP_INVALID_TID on error.
+     * 
+     * @param context The context to use.
+     * @param dst     The destination address.
+     * @param request The request to be reset.
+     * 
+     * @return The transaction id if RST was sent or @c COAP_INVALID_TID
+     * on error.
+     */
+    static inline coap_tid_t coap_send_rst(coap_context_t *context, const coap_address_t *dst,
+            coap_pdu_t *request)
+    {
+        return coap_send_message_type(context, dst, request, COAP_MESSAGE_RST);
+    }
+
+    /** Handles retransmissions of confirmable messages */
+    coap_tid_t coap_retransmit(coap_context_t *context, coap_queue_t *node);
+
+    /**
+     * Reads data from the network and tries to parse as CoAP PDU. On success, 0 is returned
+     * and a new node with the parsed PDU is added to the receive queue in the specified context
+     * object.
+     */
+    int coap_read(coap_context_t *context, char* data);
+
+    /** 
+     * Calculates a unique transaction id from given arguments @p peer and
+     * @p pdu. The id is returned in @p id.
+     * 
+     * @param peer The remote party who sent @p pdu.
+     * @param pdu  The message that initiated the transaction.
+     * @param id   Set to the new id.
+     */
+    void coap_transaction_id(const coap_address_t *peer, const coap_pdu_t *pdu, coap_tid_t *id);
+
+    /** 
+     * This function removes the element with given @p id from the list
+     * given list. If @p id was found, @p node is updated to point to the
+     * removed element. Note that the storage allocated by @p node is 
+     * @b not released. The caller must do this manually using
+     * coap_delete_node(). This function returns @c 1 if the element with
+     * id @p id was found, @c 0 otherwise. For a return value of @c 0,
+     * the contents of @p node is undefined.
+     * 
+     * @param queue The queue to search for @p id.
+     * @param id    The node id to look for.
+     * @param node  If found, @p node is updated to point to the 
+     *   removed node. You must release the storage pointed to by
+     *   @p node manually.
+     * 
+     * @return @c 1 if @p id was found, @c 0 otherwise.
+     */
+    int coap_remove_from_queue(coap_queue_t **queue, coap_tid_t id, coap_queue_t **node);
+
+    /** 
+     * Removes the transaction identified by @p id from given @p queue.
+     * This is a convenience function for coap_remove_from_queue() with
+     * automatic deletion of the removed node.
+     * 
+     * @param queue The queue to search for @p id.
+     * @param id    The transaction id.
+     * 
+     * @return @c 1 if node was found, removed and destroyed, @c 0 otherwise.
+     */
+    inline static int coap_remove_transaction(coap_queue_t **queue, coap_tid_t id)
+    {
+        coap_queue_t *node;
+        if (!coap_remove_from_queue(queue, id, &node))
+            return 0;
+
+        coap_delete_node(node);
+        return 1;
+    }
+
+    /**
+     * Retrieves transaction from queue.
+     * @queue The transaction queue to be searched
+     * @id Unique key of the transaction to find.
+     * @return A pointer to the transaction object or NULL if not found
+     */
+    coap_queue_t *coap_find_transaction(coap_queue_t *queue, coap_tid_t id);
+
+    /**
+     * Cancels all outstanding messages for peer @p dst that have the 
+     * specified token.
+     *
+     * @param context The context in use
+     * @param dst     Destination address of the messages to remove.
+     * @param token   Message token
+     * @param token_length Actual length of @p token 
+     */
+    void coap_cancel_all_messages(coap_context_t *context, const coap_address_t *dst,
+            const unsigned char *token, size_t token_length);
+
+    /** Dispatches the PDUs from the receive queue in given context. */
+    void coap_dispatch(coap_context_t *context, const char* responseData);
+
+    /** Returns 1 if there are no messages to send or to dispatch in the context's queues. */
+    int coap_can_exit(coap_context_t *context);
+
+    /**
+     * Returns the current value of an internal tick counter. The counter
+     * counts \c COAP_TICKS_PER_SECOND ticks every second. 
+     */
+    void coap_ticks(coap_tick_t *);
+
+    /** 
+     * Verifies that @p pdu contains no unknown critical options. Options
+     * must be registered at @p ctx, using the function
+     * coap_register_option(). A basic set of options is registered
+     * automatically by coap_new_context(). This function returns @c 1 if
+     * @p pdu is ok, @c 0 otherwise. The given filter object @p unknown
+     * will be updated with the unknown options. As only @c COAP_MAX_OPT
+     * options can be signalled this way, remaining options must be
+     * examined manually. 
+     *
+     * @code
+     coap_opt_filter_t f = COAP_OPT_NONE;
+     coap_opt_iterator_t opt_iter;
+     
+     if (coap_option_check_critical(ctx, pdu, f) == 0) {
+     coap_option_iterator_init(pdu, &opt_iter, f);
+
+     while (coap_option_next(&opt_iter)) {
+     if (opt_iter.type & 0x01) {
+     ... handle unknown critical option in opt_iter ...
+     }
+     }
+     }
+     * @endcode 
+     *
+     * @param ctx      The context where all known options are registered.
+     * @param pdu      The PDU to check.
+     * @param unknown  The output filter that will be updated to indicate the
+     *                 unknown critical options found in @p pdu.
+     * 
+     * @return @c 1 if everything was ok, @c 0 otherwise.
+     */
+    int coap_option_check_critical(coap_context_t *ctx, coap_pdu_t *pdu, coap_opt_filter_t unknown);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _COAP_NET_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/option.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/option.c
new file mode 100644 (file)
index 0000000..c8c8496
--- /dev/null
@@ -0,0 +1,440 @@
+/*
+ * option.c -- helpers for handling options in CoAP PDUs
+ *
+ * Copyright (C) 2010-2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+
+#if defined(HAVE_ASSERT_H) && !defined(assert)
+# include <assert.h>
+#endif
+
+#include <stdio.h>
+#include <string.h>
+
+#include "option.h"
+#include "debug.h"
+
+coap_opt_t *
+options_start(coap_pdu_t *pdu)
+{
+
+    if (pdu && pdu->hdr
+            && (pdu->hdr->token + pdu->hdr->token_length < (unsigned char *) pdu->hdr + pdu->length))
+    {
+
+        coap_opt_t *opt = pdu->hdr->token + pdu->hdr->token_length;
+        return (*opt == COAP_PAYLOAD_START) ? NULL : opt;
+
+    }
+    else
+        return NULL;
+}
+
+size_t coap_opt_parse(const coap_opt_t *opt, size_t length, coap_option_t *result)
+{
+
+    const coap_opt_t *opt_start = opt; /* store where parsing starts  */
+    assert(opt);
+    assert(result);
+
+#define ADVANCE_OPT(o,e,step) if ((e) < step) {                        \
+    debug("cannot advance opt past end\n");                    \
+    return 0;                                                  \
+  } else {                                                     \
+    (e) -= step;                                               \
+    (o) = ((unsigned char *)(o)) + step;                       \
+  }
+
+    if (length < 1)
+        return 0;
+
+    result->delta = (*opt & 0xf0) >> 4;
+    result->length = *opt & 0x0f;
+
+    switch (result->delta)
+    {
+        case 15:
+            if (*opt != COAP_PAYLOAD_START)
+                debug("ignored reserved option delta 15\n");
+            return 0;
+        case 14:
+            /* Handle two-byte value: First, the MSB + 269 is stored as delta value.
+             * After that, the option pointer is advanced to the LSB which is handled
+             * just like case delta == 13. */
+            ADVANCE_OPT(opt, length, 1);
+            result->delta = ((*opt & 0xff) << 8) + 269;
+            if (result->delta < 269)
+            {
+                debug("delta too large\n");
+                return 0;
+            }
+            /* fall through */
+        case 13:
+            ADVANCE_OPT(opt, length, 1);
+            result->delta += *opt & 0xff;
+            break;
+
+        default:
+            ;
+    }
+
+    switch (result->length)
+    {
+        case 15:
+            debug("found reserved option length 15\n");
+            return 0;
+        case 14:
+            /* Handle two-byte value: First, the MSB + 269 is stored as delta value.
+             * After that, the option pointer is advanced to the LSB which is handled
+             * just like case delta == 13. */
+            ADVANCE_OPT(opt, length, 1);
+            result->length = ((*opt & 0xff) << 8) + 269;
+            /* fall through */
+        case 13:
+            ADVANCE_OPT(opt, length, 1);
+            result->length += *opt & 0xff;
+            break;
+
+        default:
+            ;
+    }
+
+    ADVANCE_OPT(opt, length, 1);
+    /* opt now points to value, if present */
+
+    result->value = (unsigned char *) opt;
+    if (length < result->length)
+    {
+        debug("invalid option length\n");
+        return 0;
+    }
+    //printf("[COAP] Option - coap_opt_parse result : %s, %d\n", result->value, result->length);
+
+#undef ADVANCE_OPT
+
+    return (opt + result->length) - opt_start;
+}
+
+coap_opt_iterator_t *
+coap_option_iterator_init(coap_pdu_t *pdu, coap_opt_iterator_t *oi, const coap_opt_filter_t filter)
+{
+    assert(pdu);
+    assert(pdu->hdr);
+    assert(oi);
+
+    memset(oi, 0, sizeof(coap_opt_iterator_t));
+
+    oi->next_option = (unsigned char *) pdu->hdr + sizeof(coap_hdr_t) + pdu->hdr->token_length;
+    if ((unsigned char *) pdu->hdr + pdu->length <= oi->next_option)
+    {
+        oi->bad = 1;
+        return NULL;
+    }
+
+    assert((sizeof(coap_hdr_t) + pdu->hdr->token_length) <= pdu->length);
+
+    oi->length = pdu->length - (sizeof(coap_hdr_t) + pdu->hdr->token_length);
+
+    if (filter)
+    {
+        memcpy(oi->filter, filter, sizeof(coap_opt_filter_t));
+        oi->filtered = 1;
+    }
+    return oi;
+}
+
+static inline int opt_finished(coap_opt_iterator_t *oi)
+{
+    assert(oi);
+
+    if (oi->bad || oi->length == 0 || !oi->next_option || *oi->next_option == COAP_PAYLOAD_START)
+    {
+        oi->bad = 1;
+    }
+
+    return oi->bad;
+}
+
+coap_opt_t *
+coap_option_next(coap_opt_iterator_t *oi)
+{
+    coap_option_t option;
+    coap_opt_t *current_opt = NULL;
+    size_t optsize;
+    int b; /* to store result of coap_option_getb() */
+
+    assert(oi);
+
+    if (opt_finished(oi))
+        return NULL;
+
+    while (1)
+    {
+        /* oi->option always points to the next option to deliver; as
+         * opt_finished() filters out any bad conditions, we can assume that
+         * oi->option is valid. */
+        current_opt = oi->next_option;
+
+        /* Advance internal pointer to next option, skipping any option that
+         * is not included in oi->filter. */
+        optsize = coap_opt_parse(oi->next_option, oi->length, &option);
+        if (optsize)
+        {
+            assert(optsize <= oi->length);
+
+            oi->next_option += optsize;
+            oi->length -= optsize;
+
+            oi->type += option.delta;
+        }
+        else
+        { /* current option is malformed */
+            oi->bad = 1;
+            return NULL;
+        }
+
+        /* Exit the while loop when:
+         *   - no filtering is done at all
+         *   - the filter matches for the current option
+         *   - the filter is too small for the current option number 
+         */
+        if (!oi->filtered || (b = coap_option_getb(oi->filter, oi->type)) > 0)
+            break;
+        else if (b < 0)
+        { /* filter too small, cannot proceed */
+            oi->bad = 1;
+            return NULL;
+        }
+    }
+
+    return current_opt;
+}
+
+coap_opt_t *
+coap_check_option(coap_pdu_t *pdu, unsigned char type, coap_opt_iterator_t *oi)
+{
+    coap_opt_filter_t f;
+
+    coap_option_filter_clear(f);
+    coap_option_setb(f, type);
+
+    coap_option_iterator_init(pdu, oi, f);
+
+    return coap_option_next(oi);
+}
+
+unsigned short coap_opt_delta(const coap_opt_t *opt)
+{
+    unsigned short n;
+
+    n = (*opt++ & 0xf0) >> 4;
+
+    switch (n)
+    {
+        case 15: /* error */
+            warn("coap_opt_delta: illegal option delta\n");
+
+            /* This case usually should not happen, hence we do not have a
+             * proper way to indicate an error. */
+            return 0;
+        case 14:
+            /* Handle two-byte value: First, the MSB + 269 is stored as delta value.
+             * After that, the option pointer is advanced to the LSB which is handled
+             * just like case delta == 13. */
+            n = ((*opt++ & 0xff) << 8) + 269;
+            /* fall through */
+        case 13:
+            n += *opt & 0xff;
+            break;
+        default: /* n already contains the actual delta value */
+            ;
+    }
+
+    return n;
+}
+
+unsigned short coap_opt_length(const coap_opt_t *opt)
+{
+    unsigned short length;
+
+    length = *opt & 0x0f;
+    switch (*opt & 0xf0)
+    {
+        case 0xf0:
+            debug("illegal option delta\n");
+            return 0;
+        case 0xe0:
+            ++opt;
+            /* fall through to skip another byte */
+        case 0xd0:
+            ++opt;
+            /* fall through to skip another byte */
+        default:
+            ++opt;
+    }
+
+    switch (length)
+    {
+        case 0x0f:
+            debug("illegal option length\n");
+            return 0;
+        case 0x0e:
+            length = (*opt++ << 8) + 269;
+            /* fall through */
+        case 0x0d:
+            length += *opt++;
+            break;
+        default:
+            ;
+    }
+    return length;
+}
+
+unsigned char *
+coap_opt_value(coap_opt_t *opt)
+{
+    size_t ofs = 1;
+
+    switch (*opt & 0xf0)
+    {
+        case 0xf0:
+            debug("illegal option delta\n");
+            return 0;
+        case 0xe0:
+            ++ofs;
+            /* fall through */
+        case 0xd0:
+            ++ofs;
+            break;
+        default:
+            ;
+    }
+
+    switch (*opt & 0x0f)
+    {
+        case 0x0f:
+            debug("illegal option length\n");
+            return 0;
+        case 0x0e:
+            ++ofs;
+            /* fall through */
+        case 0x0d:
+            ++ofs;
+            break;
+        default:
+            ;
+    }
+
+    return (unsigned char *) opt + ofs;
+}
+
+size_t coap_opt_size(const coap_opt_t *opt)
+{
+    coap_option_t option;
+
+    /* we must assume that opt is encoded correctly */
+    return coap_opt_parse(opt, (size_t) - 1, &option);
+}
+
+size_t coap_opt_setheader(coap_opt_t *opt, size_t maxlen, unsigned short delta, size_t length)
+{
+    size_t skip = 0;
+
+    assert(opt);
+
+    if (maxlen == 0) /* need at least one byte */
+        return 0;
+
+    if (delta < 13)
+    {
+        opt[0] = delta << 4;
+    }
+    else if (delta < 270)
+    {
+        if (maxlen < 2)
+        {
+            debug("insufficient space to encode option delta %d", delta);
+            return 0;
+        }
+
+        opt[0] = 0xd0;
+        opt[++skip] = delta - 13;
+    }
+    else
+    {
+        if (maxlen < 3)
+        {
+            debug("insufficient space to encode option delta %d", delta);
+            return 0;
+        }
+
+        opt[0] = 0xe0;
+        opt[++skip] = ((delta - 269) >> 8) & 0xff;
+        opt[++skip] = (delta - 269) & 0xff;
+    }
+
+    if (length < 13)
+    {
+        opt[0] |= length & 0x0f;
+    }
+    else if (length < 270)
+    {
+        if (maxlen < skip + 1)
+        {
+            debug("insufficient space to encode option length %d", length);
+            return 0;
+        }
+
+        opt[0] |= 0x0d;
+        opt[++skip] = length - 13;
+    }
+    else
+    {
+        if (maxlen < skip + 2)
+        {
+            debug("insufficient space to encode option delta %d", delta);
+            return 0;
+        }
+
+        opt[0] |= 0x0e;
+        opt[++skip] = ((length - 269) >> 8) & 0xff;
+        opt[++skip] = (length - 269) & 0xff;
+    }
+
+    return skip + 1;
+}
+
+size_t coap_opt_encode(coap_opt_t *opt, size_t maxlen, unsigned short delta,
+        const unsigned char *val, size_t length)
+{
+    size_t l = 1;
+
+    l = coap_opt_setheader(opt, maxlen, delta, length);
+    assert(l <= maxlen);
+
+    if (!l)
+    {
+        debug("coap_opt_encode: cannot set option header\n");
+        return 0;
+    }
+
+    maxlen -= l;
+    opt += l;
+
+    if (maxlen < length)
+    {
+        debug("coap_opt_encode: option too large for buffer\n");
+        return 0;
+    }
+
+    if (val) /* better be safe here */
+        memcpy(opt, val, length);
+
+    return l + length;
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/option.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/option.h
new file mode 100644 (file)
index 0000000..78b2a03
--- /dev/null
@@ -0,0 +1,320 @@
+/*
+ * option.h -- helpers for handling options in CoAP PDUs
+ *
+ * Copyright (C) 2010-2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+/**
+ * @file option.h
+ * @brief helpers for handling options in CoAP PDUs
+ */
+
+#ifndef _OPTION_H_
+#define _OPTION_H_
+
+#include "bits.h"
+#include "pdu.h"
+
+/** 
+ * Use byte-oriented access methods here because sliding a complex
+ * struct coap_opt_t over the data buffer may cause bus error on
+ * certain platforms.
+ */
+typedef unsigned char coap_opt_t;
+#define PCHAR(p) ((coap_opt_t *)(p))
+
+/** Representation of CoAP options. */
+typedef struct
+{
+    unsigned short delta;
+    size_t length;
+    unsigned char *value;
+} coap_option_t;
+
+/**
+ * Parses the option pointed to by @p opt into @p result. This
+ * function returns the number of bytes that have been parsed, or @c 0
+ * on error. An error is signaled when illegal delta or length values
+ * are encountered or when option parsing would result in reading past
+ * the option (i.e. beyond opt + length). 
+ *
+ * @param opt    The beginning of the option to parse.
+ * @param length The maximum length of @p opt.
+ * @param result A pointer to the coap_option_t structure that is
+ *               filled with actual values iff coap_opt_parse() > 0.
+ * @return The number of bytes parsed or @c 0 on error.
+ */
+size_t coap_opt_parse(const coap_opt_t *opt, size_t length, coap_option_t *result);
+
+/**
+ * Returns the size of the given option, taking into account a
+ * possible option jump.
+ *
+ * @param opt An option jump or the beginning of the option.
+ * @return The number of bytes between @p opt and the end of
+ *         the option starting at @p opt. In case of an error,
+ *         this function returns @c 0 as options need at least
+ *         one byte storage space.
+ */
+size_t coap_opt_size(const coap_opt_t *opt);
+
+/** @deprecated { Use coap_opt_size() instead. } */
+#define COAP_OPT_SIZE(opt) coap_opt_size(opt)
+
+/**
+ * Calculates the beginning of the PDU's option section.
+ * 
+ * @param pdu The PDU containing the options.
+ * @return A pointer to the first option if available, or @c NULL otherwise.
+ */
+coap_opt_t *options_start(coap_pdu_t *pdu);
+
+/**
+ * Interprets @p opt as pointer to a CoAP option and advances to
+ * the next byte past this option.
+ * @hideinitializer
+ */
+#define options_next(opt) \
+  ((coap_opt_t *)((unsigned char *)(opt) + COAP_OPT_SIZE(opt)))
+
+/**
+ * @defgroup opt_filter Option Filters
+ * @{
+ */
+
+/** 
+ * Fixed-size bit-vector we use for option filtering. It is large
+ * enough to hold the highest option number known at build time (20 in
+ * the core spec).
+ */
+typedef unsigned char coap_opt_filter_t[(COAP_MAX_OPT >> 3) + 1];
+
+/** Pre-defined filter that includes all options. */
+#define COAP_OPT_ALL NULL
+
+/** 
+ * Clears filter @p f.
+ * 
+ * @param f The filter to clear.
+ */
+static inline void coap_option_filter_clear(coap_opt_filter_t f)
+{
+    memset(f, 0, sizeof(coap_opt_filter_t));
+}
+
+/** 
+ * Sets the corresponding bit for @p type in @p filter. This function
+ * returns @c 1 if bit was set or @c -1 on error (i.e. when the given
+ * type does not fit in the filter).
+ * 
+ * @param filter The filter object to change.
+ * @param type   The type for which the bit should be set. 
+ * 
+ * @return @c 1 if bit was set, @c -1 otherwise.
+ */
+inline static int coap_option_setb(coap_opt_filter_t filter, unsigned short type)
+{
+    return bits_setb((uint8_t *) filter, sizeof(coap_opt_filter_t), type);
+}
+
+/** 
+ * Clears the corresponding bit for @p type in @p filter. This function
+ * returns @c 1 if bit was cleared or @c -1 on error (i.e. when the given
+ * type does not fit in the filter).
+ * 
+ * @param filter The filter object to change.
+ * @param type   The type for which the bit should be cleared. 
+ * 
+ * @return @c 1 if bit was set, @c -1 otherwise.
+ */
+inline static int coap_option_clrb(coap_opt_filter_t filter, unsigned short type)
+{
+    return bits_clrb((uint8_t *) filter, sizeof(coap_opt_filter_t), type);
+}
+
+/** 
+ * Gets the corresponding bit for @p type in @p filter. This function
+ * returns @c 1 if the bit is set @c 0 if not, or @c -1 on error (i.e.
+ * when the given type does not fit in the filter).
+ * 
+ * @param filter The filter object to read bit from..
+ * @param type   The type for which the bit should be read.
+ * 
+ * @return @c 1 if bit was set, @c 0 if not, @c -1 on error.
+ */
+inline static int coap_option_getb(const coap_opt_filter_t filter, unsigned short type)
+{
+    return bits_getb((uint8_t *) filter, sizeof(coap_opt_filter_t), type);
+}
+
+/** 
+ * Iterator to run through PDU options. This object must be
+ * initialized with coap_option_iterator_init(). Call
+ * coap_option_next() to walk through the list of options until
+ * coap_option_next() returns @c NULL.
+ *
+ * @code
+ * coap_opt_t *option;
+ * coap_opt_iterator_t opt_iter;
+ * coap_option_iterator_init(pdu, &opt_iter, COAP_OPT_ALL);
+ *
+ * while ((option = coap_option_next(&opt_iter))) {
+ *   ... do something with option ...
+ * }
+ * @endcode
+ */
+typedef struct
+{
+    size_t length; /**< remaining length of PDU */
+    unsigned short type; /**< decoded option type */
+    unsigned int bad :1; /**< iterator object is ok if not set */
+    unsigned int filtered :1; /**< denotes whether or not filter is used */
+    coap_opt_t *next_option; /**< pointer to the unparsed next option */
+    coap_opt_filter_t filter; /**< option filter */
+} coap_opt_iterator_t;
+
+/** 
+ * Initializes the given option iterator @p oi to point to the
+ * beginning of the @p pdu's option list. This function returns @p oi
+ * on success, @c NULL otherwise (i.e. when no options exist).
+ * Note that a length check on the option list must be performed before
+ * coap_option_iterator_init() is called.
+ * 
+ * @param pdu  The PDU the options of which should be walked through.
+ * @param oi   An iterator object that will be initilized.
+ * @param filter An optional option type filter. 
+ *               With @p type != @c COAP_OPT_ALL, coap_option_next() 
+ *               will return only options matching this bitmask. 
+ *               Fence-post options @c 14, @c 28, @c 42, ... are always
+ *               skipped.
+ * 
+ * @return The iterator object @p oi on success, @c NULL otherwise.
+ */
+coap_opt_iterator_t *coap_option_iterator_init(coap_pdu_t *pdu, coap_opt_iterator_t *oi,
+        const coap_opt_filter_t filter);
+
+/** 
+ * Updates the iterator @p oi to point to the next option. This
+ * function returns a pointer to that option or @c NULL if no more
+ * options exist. The contents of @p oi will be updated. In
+ * particular, @c oi->n specifies the current option's ordinal number
+ * (counted from @c 1), @c oi->type is the option's type code, and @c
+ * oi->option points to the beginning of the current option
+ * itself. When advanced past the last option, @c oi->option will be
+ * @c NULL.
+ * 
+ * Note that options are skipped whose corresponding bits in the
+ * filter specified with coap_option_iterator_init() are @c 0. Options
+ * with type codes that do not fit in this filter hence will always be
+ * returned.
+ * 
+ * @param oi The option iterator to update.
+ * 
+ * @return The next option or @c NULL if no more options exist.
+ */
+coap_opt_t *coap_option_next(coap_opt_iterator_t *oi);
+
+/** 
+ * Retrieves the first option of type @p type from @p pdu. @p oi must
+ * point to a coap_opt_iterator_t object that will be initialized by
+ * this function to filter only options with code @p type. This
+ * function returns the first option with this type, or @c NULL if not
+ * found.
+ * 
+ * @param pdu  The PDU to parse for options.
+ * @param type The option type code to search for.
+ * @param oi   An iterator object to use.
+ * 
+ * @return A pointer to the first option of type @p type, or @c NULL 
+ *         if not found.
+ */
+coap_opt_t *coap_check_option(coap_pdu_t *pdu, unsigned char type, coap_opt_iterator_t *oi);
+
+/**
+ * Encodes the given delta and length values into @p opt. This
+ * function returns the number of bytes that were required to encode
+ * @p delta and @p length or @c 0 on error. Note that the result
+ * indicates by how many bytes @p opt must be advanced to encode the
+ * option value.
+ *
+ * @param opt    The option buffer space where @p delta and @p length are 
+ *               written
+ * @param maxlen The maximum length of @p opt
+ * @param delta The actual delta value to encode.
+ * @param length The actual length value to encode.
+ * @return The number of bytes used or @c 0 on error.
+ */
+size_t coap_opt_setheader(coap_opt_t *opt, size_t maxlen, unsigned short delta, size_t length);
+
+/**
+ * Encodes option with given @p delta into @p opt. This function returns
+ * the number of bytes written to @p opt or @c 0 on error. This happens
+ * especially when @p opt does not provide sufficient space to store
+ * the option value, delta, and option jumps when required.
+ *
+ * @param opt   The option buffer space where @p val is written
+ * @param n     Maximum length of @p opt.
+ * @param delta The option delta.
+ * @param val   The option value to copy into @p opt.
+ * @param len   The actual length of @p val.
+ * @return The number of bytes that have been written to @p opt or
+ *         @c 0 on error. The return value will always be less than @p n.
+ */
+size_t coap_opt_encode(coap_opt_t *opt, size_t n, unsigned short delta, const unsigned char *val,
+        size_t length);
+
+/**
+ * Decodes the delta value of the next option. This function returns
+ * the number of bytes read or @c 0 on error. The caller of this
+ * function must ensure that it does not read over the boundaries
+ * of @p opt (e.g. by calling coap_opt_check_delta().
+ *
+ * @param opt The option to examine
+ * @return The number of bytes read or @c 0 on error.
+ */
+unsigned short coap_opt_delta(const coap_opt_t *opt);
+
+/** @deprecated { Use coap_opt_delta() instead. } */
+#define COAP_OPT_DELTA(opt) coap_opt_delta(opt)
+
+/** @deprecated { Use coap_opt_encode() instead. } */
+#define COAP_OPT_SETDELTA(opt,val)                     \
+  coap_opt_encode((opt), COAP_MAX_PDU_SIZE, (val), NULL, 0)
+
+/**
+ * Returns the length of the given option. @p opt must point to an
+ * option jump or the beginning of the option. This function returns
+ * @c 0 when @p opt is not an option or the actual length of @p opt
+ * (which can be @c 0 as well).
+ *
+ * @note {The rationale for using @c 0 in case of an error is that in
+ * most contexts, the result of this function is used to skip the next
+ * coap_opt_length() bytes. }
+ *
+ * @param opt  The option whose length should be returned.
+ * @return The option's length or @c 0 when undefined.
+ */
+unsigned short coap_opt_length(const coap_opt_t *opt);
+
+/** @deprecated { Use coap_opt_length() instead. } */
+#define COAP_OPT_LENGTH(opt) coap_opt_length(opt)
+
+/**
+ * Returns a pointer to the value of the given option. @p opt must
+ * point to an option jump or the beginning of the option. This 
+ * function returns @c NULL if @p opt is not a valid option.
+ *
+ * @param opt  The option whose value should be returned.
+ * @return A pointer to the option value or @c NULL on error.
+ */
+unsigned char *coap_opt_value(coap_opt_t *opt);
+
+/** @deprecated { Use coap_opt_value() instead. } */
+#define COAP_OPT_VALUE(opt) coap_opt_value((coap_opt_t *)opt)
+
+/** @} */
+
+#endif /* _OPTION_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/pdu.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/pdu.c
new file mode 100644 (file)
index 0000000..b8aaaad
--- /dev/null
@@ -0,0 +1,467 @@
+/* pdu.c -- CoAP message structure
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+
+#if defined(HAVE_ASSERT_H) && !defined(assert)
+# include <assert.h>
+#endif
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#ifdef HAVE_ARPA_INET_H
+#include <arpa/inet.h>
+#endif
+
+#include "debug.h"
+#include "pdu.h"
+#include "option.h"
+#include "encode.h"
+
+#ifdef WITH_CONTIKI
+#include "memb.h"
+
+typedef unsigned char _pdu[sizeof(coap_pdu_t) + COAP_MAX_PDU_SIZE];
+
+MEMB(pdu_storage, _pdu, COAP_PDU_MAXCNT);
+
+void
+coap_pdu_resources_init()
+{
+    memb_init(&pdu_storage);
+}
+#else /* WITH_CONTIKI */
+#include "mem.h"
+#endif /* WITH_CONTIKI */
+
+void coap_pdu_clear(coap_pdu_t *pdu, size_t size)
+{
+    assert(pdu);
+
+    memset(pdu, 0, sizeof(coap_pdu_t) + size);
+    pdu->max_size = size;
+    pdu->hdr = (coap_hdr_t *) ((unsigned char *) pdu + sizeof(coap_pdu_t));
+    pdu->hdr->version = COAP_DEFAULT_VERSION;
+
+    /* data is NULL unless explicitly set by coap_add_data() */
+    pdu->length = sizeof(coap_hdr_t);
+}
+
+#ifdef WITH_LWIP
+coap_pdu_t *
+coap_pdu_from_pbuf(struct pbuf *pbuf)
+{
+    LWIP_ASSERT("Can only deal with contiguous PBUFs", pbuf->tot_len == pbuf->len);
+    LWIP_ASSERT("coap_read needs to receive an exclusive copy of the incoming pbuf", pbuf->ref == 1);
+
+    void *data = pbuf->payload;
+    coap_pdu_t *result;
+
+    u8_t header_error = pbuf_header(pbuf, sizeof(coap_pdu_t));
+    LWIP_ASSERT("CoAP PDU header does not fit in existing header space", header_error == 0);
+
+    result = (coap_pdu_t *)pbuf->payload;
+
+    memset(result, 0, sizeof(coap_pdu_t));
+
+    result->max_size = pbuf->tot_len - sizeof(coap_pdu_t);
+    result->length = pbuf->tot_len - sizeof(coap_pdu_t);
+    result->hdr = data;
+    result->pbuf = pbuf;
+
+    return result;
+}
+#endif
+
+coap_pdu_t *
+coap_pdu_init(unsigned char type, unsigned char code, unsigned short id, size_t size)
+{
+    coap_pdu_t *pdu;
+#ifdef WITH_LWIP
+    struct pbuf *p;
+#endif
+
+    assert(size <= COAP_MAX_PDU_SIZE);
+    /* Size must be large enough to fit the header. */
+    if (size < sizeof(coap_hdr_t) || size > COAP_MAX_PDU_SIZE)
+        return NULL;
+
+    /* size must be large enough for hdr */
+#ifdef WITH_POSIX
+    pdu = coap_malloc(sizeof(coap_pdu_t) + size);
+#endif
+#ifdef WITH_CONTIKI
+    pdu = (coap_pdu_t *)memb_alloc(&pdu_storage);
+#endif
+#ifdef WITH_LWIP
+    p = pbuf_alloc(PBUF_TRANSPORT, size, PBUF_RAM);
+    if (p != NULL)
+    {
+        u8_t header_error = pbuf_header(p, sizeof(coap_pdu_t));
+        /* we could catch that case and allocate larger memory in advance, but then
+         * again, we'd run into greater trouble with incoming packages anyway */
+        LWIP_ASSERT("CoAP PDU header does not fit in transport header", header_error == 0);
+        pdu = p->payload;
+    }
+    else
+    {
+        pdu = NULL;
+    }
+#endif
+    if (pdu)
+    {
+        coap_pdu_clear(pdu, size);
+        pdu->hdr->id = id;
+        pdu->hdr->type = type;
+        pdu->hdr->code = code;
+#ifdef WITH_LWIP
+        pdu->pbuf = p;
+#endif
+    }
+    return pdu;
+}
+
+coap_pdu_t *
+coap_new_pdu()
+{
+    coap_pdu_t *pdu;
+
+#ifndef WITH_CONTIKI
+    pdu = coap_pdu_init(0, 0, ntohs(COAP_INVALID_TID), COAP_MAX_PDU_SIZE);
+#else /* WITH_CONTIKI */
+    pdu = coap_pdu_init(0, 0, uip_ntohs(COAP_INVALID_TID), COAP_MAX_PDU_SIZE);
+#endif /* WITH_CONTIKI */
+
+#ifndef NDEBUG
+    if (!pdu)
+        coap_log(LOG_CRIT, "coap_new_pdu: cannot allocate memory for new PDU\n");
+#endif
+    return pdu;
+}
+
+void coap_delete_pdu(coap_pdu_t *pdu)
+{
+#ifdef WITH_POSIX
+    coap_free( pdu );
+#endif
+#ifdef WITH_LWIP
+    if (pdu != NULL) /* accepting double free as the other implementation accept that too */
+    pbuf_free(pdu->pbuf);
+#endif
+#ifdef WITH_CONTIKI
+    memb_free(&pdu_storage, pdu);
+#endif
+}
+
+int coap_add_token(coap_pdu_t *pdu, size_t len, const unsigned char *data)
+{
+    const size_t HEADERLENGTH = len + 4;
+    /* must allow for pdu == NULL as callers may rely on this */
+    if (!pdu || len > 8 || pdu->max_size < HEADERLENGTH)
+        return 0;
+
+    pdu->hdr->token_length = len;
+    if (len)
+        memcpy(pdu->hdr->token, data, len);
+    pdu->max_delta = 0;
+    pdu->length = HEADERLENGTH;
+    pdu->data = NULL;
+
+    return 1;
+}
+
+/** @FIXME de-duplicate code with coap_add_option_later */
+size_t coap_add_option(coap_pdu_t *pdu, unsigned short type, unsigned int len,
+        const unsigned char *data)
+{
+    size_t optsize;
+    coap_opt_t *opt;
+
+    assert(pdu);
+    pdu->data = NULL;
+
+    if (type < pdu->max_delta)
+    {
+        warn("coap_add_option: options are not in correct order\n");
+        return 0;
+    }
+
+    opt = (unsigned char *) pdu->hdr + pdu->length;
+
+    /* encode option and check length */
+    optsize = coap_opt_encode(opt, pdu->max_size - pdu->length, type - pdu->max_delta, data, len);
+
+    if (!optsize)
+    {
+        warn("coap_add_option: cannot add option\n");
+        /* error */
+        return 0;
+    }
+    else
+    {
+        pdu->max_delta = type;
+        pdu->length += optsize;
+    }
+
+    return optsize;
+}
+
+/** @FIXME de-duplicate code with coap_add_option */
+unsigned char*
+coap_add_option_later(coap_pdu_t *pdu, unsigned short type, unsigned int len)
+{
+    size_t optsize;
+    coap_opt_t *opt;
+
+    assert(pdu);
+    pdu->data = NULL;
+
+    if (type < pdu->max_delta)
+    {
+        warn("coap_add_option: options are not in correct order\n");
+        return NULL;
+    }
+
+    opt = (unsigned char *) pdu->hdr + pdu->length;
+
+    /* encode option and check length */
+    optsize = coap_opt_encode(opt, pdu->max_size - pdu->length, type - pdu->max_delta, NULL, len);
+
+    if (!optsize)
+    {
+        warn("coap_add_option: cannot add option\n");
+        /* error */
+        return NULL;
+    }
+    else
+    {
+        pdu->max_delta = type;
+        pdu->length += optsize;
+    }
+
+    return ((unsigned char*) opt) + optsize - len;
+}
+
+int coap_add_data(coap_pdu_t *pdu, unsigned int len, const unsigned char *data)
+{
+    assert(pdu);
+    assert(pdu->data == NULL);
+
+    if (len == 0)
+        return 1;
+
+    if (pdu->length + len + 1 > pdu->max_size)
+    {
+        warn("coap_add_data: cannot add: data too large for PDU\n");
+        assert(pdu->data == NULL);
+        return 0;
+    }
+
+    pdu->data = (unsigned char *) pdu->hdr + pdu->length;
+    *pdu->data = COAP_PAYLOAD_START;
+    pdu->data++;
+
+    memcpy(pdu->data, data, len);
+    pdu->length += len + 1;
+    return 1;
+}
+
+int coap_get_data(coap_pdu_t *pdu, size_t *len, unsigned char **data)
+{
+    assert(pdu);
+    assert(len);
+    assert(data);
+
+    if (pdu->data)
+    {
+        *len = (unsigned char *) pdu->hdr + pdu->length - pdu->data;
+        *data = pdu->data;
+    }
+    else
+    { /* no data, clear everything */
+        *len = 0;
+        *data = NULL;
+    }
+
+    return *data != NULL;
+}
+
+#ifndef SHORT_ERROR_RESPONSE
+typedef struct
+{
+    unsigned char code;
+    char *phrase;
+} error_desc_t;
+
+/* if you change anything here, make sure, that the longest string does not 
+ * exceed COAP_ERROR_PHRASE_LENGTH. */
+error_desc_t coap_error[] =
+{
+{ COAP_RESPONSE_CODE(65), "2.01 Created" },
+{ COAP_RESPONSE_CODE(66), "2.02 Deleted" },
+{ COAP_RESPONSE_CODE(67), "2.03 Valid" },
+{ COAP_RESPONSE_CODE(68), "2.04 Changed" },
+{ COAP_RESPONSE_CODE(69), "2.05 Content" },
+{ COAP_RESPONSE_CODE(400), "Bad Request" },
+{ COAP_RESPONSE_CODE(401), "Unauthorized" },
+{ COAP_RESPONSE_CODE(402), "Bad Option" },
+{ COAP_RESPONSE_CODE(403), "Forbidden" },
+{ COAP_RESPONSE_CODE(404), "Not Found" },
+{ COAP_RESPONSE_CODE(405), "Method Not Allowed" },
+{ COAP_RESPONSE_CODE(408), "Request Entity Incomplete" },
+{ COAP_RESPONSE_CODE(413), "Request Entity Too Large" },
+{ COAP_RESPONSE_CODE(415), "Unsupported Media Type" },
+{ COAP_RESPONSE_CODE(500), "Internal Server Error" },
+{ COAP_RESPONSE_CODE(501), "Not Implemented" },
+{ COAP_RESPONSE_CODE(502), "Bad Gateway" },
+{ COAP_RESPONSE_CODE(503), "Service Unavailable" },
+{ COAP_RESPONSE_CODE(504), "Gateway Timeout" },
+{ COAP_RESPONSE_CODE(505), "Proxying Not Supported" },
+{ 0, NULL } /* end marker */
+};
+
+char *
+coap_response_phrase(unsigned char code)
+{
+    int i;
+    for (i = 0; coap_error[i].code; ++i)
+    {
+        if (coap_error[i].code == code)
+            return coap_error[i].phrase;
+    }
+    return NULL;
+}
+#endif
+
+/**
+ * Advances *optp to next option if still in PDU. This function 
+ * returns the number of bytes opt has been advanced or @c 0
+ * on error.
+ */
+static size_t next_option_safe(coap_opt_t **optp, size_t *length, coap_option_t* option)
+{
+    //coap_option_t option;
+    size_t optsize;
+
+    assert(optp);
+    assert(*optp);
+    assert(length);
+    optsize = coap_opt_parse(*optp, *length, option);
+    if (optsize)
+    {
+        assert(optsize <= *length);
+
+        *optp += optsize;
+        *length -= optsize;
+    }
+
+    return optsize;
+}
+
+int coap_pdu_parse(unsigned char *data, size_t length, coap_pdu_t *pdu)
+{
+    coap_opt_t *opt;
+
+    char optionResult[256] =
+    { 0, };
+
+    assert(data);
+    assert(pdu);
+
+    if (pdu->max_size < length)
+    {
+        debug("insufficient space to store parsed PDU\n");
+        printf("[COAP] insufficient space to store parsed PDU\n");
+        return 0;
+    }
+
+    if (length < sizeof(coap_hdr_t))
+    {
+        debug("discarded invalid PDU\n");
+    }
+
+    pdu->hdr->version = data[0] >> 6;
+    pdu->hdr->type = (data[0] >> 4) & 0x03;
+    pdu->hdr->token_length = data[0] & 0x0f;
+    pdu->hdr->code = data[1];
+    /*
+     printf("[COAP] pdu - version : %d\n", pdu->hdr->version);
+     printf("[COAP] pdu - type : %d\n", pdu->hdr->type);
+     printf("[COAP] pdu - token_length : %d\n", pdu->hdr->token_length);
+     printf("[COAP] pdu - code : %d\n", pdu->hdr->code);
+     */
+    pdu->data = NULL;
+
+    /* sanity checks */
+    if (pdu->hdr->code == 0)
+    {
+        if (length != sizeof(coap_hdr_t) || pdu->hdr->token_length)
+        {
+            debug("coap_pdu_parse: empty message is not empty\n");
+            goto discard;
+        }
+    }
+
+    if (length < sizeof(coap_hdr_t) + pdu->hdr->token_length || pdu->hdr->token_length > 8)
+    {
+        debug("coap_pdu_parse: invalid Token\n");
+        goto discard;
+    }
+
+    /* Copy message id in network byte order, so we can easily write the
+     * response back to the network. */
+    memcpy(&pdu->hdr->id, data + 2, 2);
+
+    //printf("[COAP] pdu - id : %d\n", pdu->hdr->id);
+
+    /* append data (including the Token) to pdu structure */
+    memcpy(pdu->hdr + 1, data + sizeof(coap_hdr_t), length - sizeof(coap_hdr_t));
+    pdu->length = length;
+
+    /* Finally calculate beginning of data block and thereby check integrity
+     * of the PDU structure. */
+
+    /* skip header + token */
+    length -= (pdu->hdr->token_length + sizeof(coap_hdr_t));
+    opt = (unsigned char *) (pdu->hdr + 1) + pdu->hdr->token_length;
+
+    while (length && *opt != COAP_PAYLOAD_START)
+    {
+        coap_option_t option;
+        memset(&option, 0, sizeof(coap_option_t));
+        if (!next_option_safe(&opt, (size_t *) &length, &option))
+        {
+            debug("coap_pdu_parse: drop\n");
+            goto discard;
+        }
+    }
+
+    /* end of packet or start marker */
+    if (length)
+    {
+        assert(*opt == COAP_PAYLOAD_START);
+        opt++;
+        length--;
+
+        if (!length)
+        {
+            debug("coap_pdu_parse: message ending in payload start marker\n");
+            goto discard;
+        }
+
+        debug(
+                "set data to %p (pdu ends at %p)\n", (unsigned char *)opt, (unsigned char *)pdu->hdr + pdu->length);
+        pdu->data = (unsigned char *) opt;
+        //printf("[COAP] pdu - data : %s\n", pdu->data);
+    }
+
+    return 1;
+
+    discard: return 0;
+}
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/pdu.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/pdu.h
new file mode 100644 (file)
index 0000000..e01d851
--- /dev/null
@@ -0,0 +1,346 @@
+/* pdu.h -- CoAP message structure
+ *
+ * Copyright (C) 2010--2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _PDU_H_
+#define _PDU_H_
+
+#include "config.h"
+#include "coap_list.h"
+#include "uri.h"
+
+#ifdef WITH_LWIP
+#include <lwip/pbuf.h>
+#endif
+
+/* pre-defined constants that reflect defaults for CoAP */
+
+#define COAP_DEFAULT_RESPONSE_TIMEOUT  2 /* response timeout in seconds */
+#define COAP_DEFAULT_MAX_RETRANSMIT    4 /* max number of retransmissions */
+#define COAP_DEFAULT_PORT           5683 /* CoAP default UDP port */
+#define COAP_DEFAULT_MAX_AGE          60 /* default maximum object lifetime in seconds */
+#ifndef COAP_MAX_PDU_SIZE
+#define COAP_MAX_PDU_SIZE           1400 /* maximum size of a CoAP PDU */
+#endif /* COAP_MAX_PDU_SIZE */
+
+#define COAP_DEFAULT_VERSION           1 /* version of CoAP supported */
+#define COAP_DEFAULT_SCHEME        "coap" /* the default scheme for CoAP URIs */
+
+/** well-known resources URI */
+#define COAP_DEFAULT_URI_WELLKNOWN ".well-known/core"
+
+#ifdef __COAP_DEFAULT_HASH
+/* pre-calculated hash key for the default well-known URI */
+#define COAP_DEFAULT_WKC_HASHKEY   "\345\130\144\245"
+#endif
+
+/* CoAP message types */
+
+#define COAP_MESSAGE_CON               0 /* confirmable message (requires ACK/RST) */
+#define COAP_MESSAGE_NON               1 /* non-confirmable message (one-shot message) */
+#define COAP_MESSAGE_ACK               2 /* used to acknowledge confirmable messages */
+#define COAP_MESSAGE_RST               3 /* indicates error in received messages */
+
+/* CoAP request methods */
+
+#define COAP_REQUEST_GET       1
+#define COAP_REQUEST_POST      2
+#define COAP_REQUEST_PUT       3
+#define COAP_REQUEST_DELETE    4
+
+/* CoAP option types (be sure to update check_critical when adding options */
+
+#define COAP_OPTION_IF_MATCH      1 /* C, opaque, 0-8 B, (none) */
+#define COAP_OPTION_URI_HOST      3 /* C, String, 1-255 B, destination address */
+#define COAP_OPTION_ETAG          4 /* E, opaque, 1-8 B, (none) */
+#define COAP_OPTION_IF_NONE_MATCH 5 /* empty, 0 B, (none) */
+#define COAP_OPTION_URI_PORT      7 /* C, uint, 0-2 B, destination port */
+#define COAP_OPTION_LOCATION_PATH 8 /* E, String, 0-255 B, - */
+#define COAP_OPTION_URI_PATH     11 /* C, String, 0-255 B, (none) */
+#define COAP_OPTION_CONTENT_FORMAT 12 /* E, uint, 0-2 B, (none) */
+#define COAP_OPTION_CONTENT_TYPE COAP_OPTION_CONTENT_FORMAT
+#define COAP_OPTION_MAXAGE       14 /* E, uint, 0--4 B, 60 Seconds */
+#define COAP_OPTION_URI_QUERY    15 /* C, String, 1-255 B, (none) */
+#define COAP_OPTION_ACCEPT       17 /* C, uint,   0-2 B, (none) */
+#define COAP_OPTION_LOCATION_QUERY 20 /* E, String,   0-255 B, (none) */
+#define COAP_OPTION_PROXY_URI    35 /* C, String, 1-1034 B, (none) */
+#define COAP_OPTION_PROXY_SCHEME 39 /* C, String, 1-255 B, (none) */
+#define COAP_OPTION_SIZE1        60 /* E, uint, 0-4 B, (none) */
+
+/* option types from draft-ietf-coap-observe-09 */
+
+#define COAP_OPTION_OBSERVE       6 /* E, empty/uint, 0 B/0-3 B, (none) */
+#define COAP_OPTION_SUBSCRIPTION  COAP_OPTION_OBSERVE
+
+/* selected option types from draft-core-block-04 */
+
+#define COAP_OPTION_BLOCK2       23 /* C, uint, 0--3 B, (none) */
+#define COAP_OPTION_BLOCK1       27 /* C, uint, 0--3 B, (none) */
+
+#define COAP_MAX_OPT             63 /**< the highest option number we know */
+
+/* CoAP result codes (HTTP-Code / 100 * 40 + HTTP-Code % 100) */
+
+/* As of draft-ietf-core-coap-04, response codes are encoded to base
+ * 32, i.e.  the three upper bits determine the response class while
+ * the remaining five fine-grained information specific to that class.
+ */
+#define COAP_RESPONSE_CODE(N) (((N)/100 << 5) | (N)%100)
+
+/* Determines the class of response code C */
+#define COAP_RESPONSE_CLASS(C) (((C) >> 5) & 0xFF)
+
+#ifndef SHORT_ERROR_RESPONSE
+/** 
+ * Returns a human-readable response phrase for the specified CoAP
+ * response @p code. This function returns @c NULL if not found.
+ * 
+ * @param code The response code for which the literal phrase should
+ * be retrieved.
+ * 
+ * @return A zero-terminated string describing the error, or @c NULL
+ * if not found.
+ */
+char *coap_response_phrase(unsigned char code);
+
+#define COAP_ERROR_PHRASE_LENGTH 32 /**< maximum length of error phrase */
+
+#else
+#define coap_response_phrase(x) ((char *)NULL)
+
+#define COAP_ERROR_PHRASE_LENGTH 0 /**< maximum length of error phrase */
+#endif /* SHORT_ERROR_RESPONSE */
+
+/* The following definitions exist for backwards compatibility */
+#if 0 /* this does not exist any more */
+#define COAP_RESPONSE_100      40 /* 100 Continue */
+#endif
+#define COAP_RESPONSE_200      COAP_RESPONSE_CODE(200)  /* 2.00 OK */
+#define COAP_RESPONSE_201      COAP_RESPONSE_CODE(201)  /* 2.01 Created */
+#define COAP_RESPONSE_304      COAP_RESPONSE_CODE(203)  /* 2.03 Valid */
+#define COAP_RESPONSE_400      COAP_RESPONSE_CODE(400)  /* 4.00 Bad Request */
+#define COAP_RESPONSE_404      COAP_RESPONSE_CODE(404)  /* 4.04 Not Found */
+#define COAP_RESPONSE_405      COAP_RESPONSE_CODE(405)  /* 4.05 Method Not Allowed */
+#define COAP_RESPONSE_415      COAP_RESPONSE_CODE(415)  /* 4.15 Unsupported Media Type */
+#define COAP_RESPONSE_500      COAP_RESPONSE_CODE(500)  /* 5.00 Internal Server Error */
+#define COAP_RESPONSE_501      COAP_RESPONSE_CODE(501)  /* 5.01 Not Implemented */
+#define COAP_RESPONSE_503      COAP_RESPONSE_CODE(503)  /* 5.03 Service Unavailable */
+#define COAP_RESPONSE_504      COAP_RESPONSE_CODE(504)  /* 5.04 Gateway Timeout */
+#if 0  /* these response codes do not have a valid code any more */
+#  define COAP_RESPONSE_X_240    240   /* Token Option required by server */
+#  define COAP_RESPONSE_X_241    241   /* Uri-Authority Option required by server */
+#endif
+#define COAP_RESPONSE_X_242    COAP_RESPONSE_CODE(402)  /* Critical Option not supported */
+
+/* CoAP media type encoding */
+
+#define COAP_MEDIATYPE_TEXT_PLAIN                     0 /* text/plain (UTF-8) */
+#define COAP_MEDIATYPE_APPLICATION_LINK_FORMAT       40 /* application/link-format */
+#define COAP_MEDIATYPE_APPLICATION_XML               41 /* application/xml */
+#define COAP_MEDIATYPE_APPLICATION_OCTET_STREAM      42 /* application/octet-stream */
+#define COAP_MEDIATYPE_APPLICATION_RDF_XML           43 /* application/rdf+xml */
+#define COAP_MEDIATYPE_APPLICATION_EXI               47 /* application/exi  */
+#define COAP_MEDIATYPE_APPLICATION_JSON              50 /* application/json  */
+
+/* Note that identifiers for registered media types are in the range 0-65535. We
+ * use an unallocated type here and hope for the best. */
+#define COAP_MEDIATYPE_ANY                         0xff /* any media type */
+
+/* CoAP transaction id */
+/*typedef unsigned short coap_tid_t; */
+typedef int coap_tid_t;
+#define COAP_INVALID_TID -1
+
+#ifdef WORDS_BIGENDIAN
+typedef struct
+{
+    unsigned int version:2; /* protocol version */
+    unsigned int type:2; /* type flag */
+    unsigned int token_length:4; /* length of Token */
+    unsigned int code:8; /* request method (value 1--10) or response code (value 40-255) */
+    unsigned short id; /* message id */
+    unsigned char token[]; /* the actual token, if any */
+}coap_hdr_t;
+#else
+typedef struct
+{
+    unsigned int token_length :4; /* length of Token */
+    unsigned int type :2; /* type flag */
+    unsigned int version :2; /* protocol version */
+    unsigned int code :8; /* request method (value 1--10) or response code (value 40-255) */
+    unsigned short id; /* transaction id (network byte order!) */
+    unsigned char token[]; /* the actual token, if any */
+} coap_hdr_t;
+#endif
+
+#define COAP_MESSAGE_IS_EMPTY(MSG)    ((MSG)->code == 0)
+#define COAP_MESSAGE_IS_REQUEST(MSG)  (!COAP_MESSAGE_IS_EMPTY(MSG)     \
+                                      && ((MSG)->code < 32))
+#define COAP_MESSAGE_IS_RESPONSE(MSG) ((MSG)->code >= 64 && (MSG)->code <= 191)
+
+#define COAP_OPT_LONG 0x0F     /* OC == 0b1111 indicates that the option list in a
+                                * CoAP message is limited by 0b11110000 marker */
+
+#define COAP_OPT_END 0xF0      /* end marker */
+
+#define COAP_PAYLOAD_START 0xFF        /* payload marker */
+
+/**
+ * Structures for more convenient handling of options. (To be used with ordered
+ * coap_list_t.) The option's data will be added to the end of the coap_option
+ * structure (see macro COAP_OPTION_DATA).
+ */
+typedef struct
+{
+    unsigned short key; /* the option key (no delta coding) */
+    unsigned int length;
+} coap_option;
+
+#define COAP_OPTION_KEY(option) (option).key
+#define COAP_OPTION_LENGTH(option) (option).length
+#define COAP_OPTION_DATA(option) ((unsigned char *)&(option) + sizeof(coap_option))
+
+/** Header structure for CoAP PDUs */
+
+typedef struct
+{
+    size_t max_size; /**< allocated storage for options and data */
+
+    coap_hdr_t *hdr;
+    unsigned short max_delta; /**< highest option number */
+    unsigned short length; /**< PDU length (including header, options, data)  */
+    unsigned char *data; /**< payload */
+
+#ifdef WITH_LWIP
+    struct pbuf *pbuf; /**< lwIP PBUF. The allocated coap_pdu_t will always reside inside the pbuf's payload, but the pointer has to be kept because no exact offset can be given. This field must not be accessed from outside, because the pbuf's reference count is checked to be 1 when the pbuf is assigned to the pdu, and the pbuf stays exclusive to this pdu. */
+#endif
+
+} coap_pdu_t;
+
+/** Options in coap_pdu_t are accessed with the macro COAP_OPTION. */
+#define COAP_OPTION(node) ((coap_option *)(node)->options)
+
+#ifdef WITH_LWIP
+/**
+ * Creates a CoAP PDU from an lwIP @p pbuf, whose reference is passed on to
+ * this function.
+ *
+ * The pbuf is checked for being contiguous, for having enough head space for
+ * the PDU struct (which is located directly in front of the data, overwriting
+ * the old other headers), and for having only one reference. The reference is
+ * stored in the PDU and will be freed when the PDU is freed.
+ *
+ * (For now, these are errors; in future, a new pbuf might be allocated, the
+ * data copied and the passed pbuf freed).
+ *
+ * This behaves like coap_pdu_init(0, 0, 0, pbuf->tot_len), and afterwards
+ * copying the contents of the pbuf to the pdu.
+ *
+ * @return A pointer to the new PDU object or @c NULL on error.
+ */
+coap_pdu_t * coap_pdu_from_pbuf(struct pbuf *pbuf);
+#endif
+
+/** 
+ * Creates a new CoAP PDU of given @p size (must be large enough to hold the 
+ * basic CoAP message header (coap_hdr_t). The function returns a pointer to
+ * the node coap_pdu_t object on success, or @c NULL on error. The storage
+ * allocated for the result must be released with coap_delete_pdu().
+ * 
+ * @param type The type of the PDU (one of COAP_MESSAGE_CON,
+ *             COAP_MESSAGE_NON, COAP_MESSAGE_ACK, COAP_MESSAGE_RST). 
+ * @param code The message code.
+ * @param id   The message id to set or COAP_INVALID_TID if unknown.
+ * @param size The number of bytes to allocate for the actual message.
+ * 
+ * @return A pointer to the new PDU object or @c NULL on error.
+ */
+coap_pdu_t *
+coap_pdu_init(unsigned char type, unsigned char code, unsigned short id, size_t size);
+
+/** 
+ * Clears any contents from @p pdu and resets @c version field, @c
+ * length and @c data pointers. @c max_size is set to @p size, any
+ * other field is set to @c 0. Note that @p pdu must be a valid
+ * pointer to a coap_pdu_t object created e.g. by coap_pdu_init().
+ */
+void coap_pdu_clear(coap_pdu_t *pdu, size_t size);
+
+/**
+ * Creates a new CoAP PDU. The object is created on the heap and must be released
+ * using coap_delete_pdu();
+ * 
+ * @deprecated This function allocates the maximum storage for each
+ * PDU. Use coap_pdu_init() instead. 
+ */
+coap_pdu_t *coap_new_pdu();
+
+void coap_delete_pdu(coap_pdu_t *);
+
+/**
+ * Parses @p data into the CoAP PDU structure given in @p result. This
+ * function returns @c 0 on error or a number greater than zero on
+ * success.
+ *
+ * @param data   The raw data to parse as CoAP PDU
+ * @param length The actual size of @p data
+ * @param result The PDU structure to fill. Note that the structure must
+ *               provide space for at least @p length bytes to hold the
+ *               entire CoAP PDU.
+ * @return A value greater than zero on success or @c 0 on error.
+ */
+int coap_pdu_parse(unsigned char *data, size_t length, coap_pdu_t *result);
+
+/**
+ * Adds token of length @p len to @p pdu. Adding the token destroys
+ * any following contents of the pdu. Hence options and data must be
+ * added after coap_add_token() has been called. In @p pdu, length is
+ * set to @p len + @c 4, and max_delta is set to @c 0.  This funtion
+ * returns @c 0 on error or a value greater than zero on success.
+ *
+ * @param pdu  The PDU where the token is to be added.
+ * @param len  The length of the new token.
+ * @param data The token to add.
+ * @return A value greater than zero on success, or @c 0 on error.
+ */
+int coap_add_token(coap_pdu_t *pdu, size_t len, const unsigned char *data);
+
+/**
+ * Adds option of given type to pdu that is passed as first
+ * parameter. coap_add_option() destroys the PDU's data, so
+ * coap_add_data() must be called after all options have been added.
+ * As coap_add_token() destroys the options following the token,
+ * the token must be added before coap_add_option() is called.
+ * This function returns the number of bytes written or @c 0 on error.
+ */
+size_t coap_add_option(coap_pdu_t *pdu, unsigned short type, unsigned int len,
+        const unsigned char *data);
+
+/**
+ * Adds option of given type to pdu that is passed as first
+ * parameter, but does not write a value. It works like coap_add_option with
+ * respect to calling sequence (i.e. after token and before data).
+ * This function returns a memory address to which the option data has to be
+ * written before the PDU can be sent, or @c NULL on error.
+ */
+unsigned char *coap_add_option_later(coap_pdu_t *pdu, unsigned short type, unsigned int len);
+
+/**
+ * Adds given data to the pdu that is passed as first parameter. Note
+ * that the PDU's data is destroyed by coap_add_option(). coap_add_data()
+ * must be called only once per PDU, otherwise the result is undefined.
+ */
+int coap_add_data(coap_pdu_t *pdu, unsigned int len, const unsigned char *data);
+
+/**
+ * Retrieves the length and data pointer of specified PDU. Returns 0 on error
+ * or 1 if *len and *data have correct values. Note that these values are
+ * destroyed with the pdu.
+ */
+int coap_get_data(coap_pdu_t *pdu, size_t *len, unsigned char **data);
+
+#endif /* _PDU_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/prng.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/prng.h
new file mode 100644 (file)
index 0000000..ca86e72
--- /dev/null
@@ -0,0 +1,87 @@
+/* prng.h -- Pseudo Random Numbers
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+/** 
+ * @file prng.h
+ * @brief Pseudo Random Numbers
+ */
+
+#ifndef _COAP_PRNG_H_
+#define _COAP_PRNG_H_
+
+#include "config.h"
+
+/** 
+ * @defgroup prng Pseudo Random Numbers
+ * @{
+ */
+
+#ifndef WITH_CONTIKI
+#include <stdlib.h>
+
+/**
+ * Fills \p buf with \p len random bytes. This is the default
+ * implementation for prng().  You might want to change prng() to use
+ * a better PRNG on your specific platform.
+ */
+static inline int coap_prng_impl(unsigned char *buf, size_t len)
+{
+    while (len--)
+        *buf++ = rand() & 0xFF;
+    return 1;
+}
+#else /* WITH_CONTIKI */
+#include <string.h>
+
+/**
+ * Fills \p buf with \p len random bytes. This is the default
+ * implementation for prng().  You might want to change prng() to use
+ * a better PRNG on your specific platform.
+ */
+static inline int
+contiki_prng_impl(unsigned char *buf, size_t len)
+{
+    unsigned short v = random_rand();
+    while (len > sizeof(v))
+    {
+        memcpy(buf, &v, sizeof(v));
+        len -= sizeof(v);
+        buf += sizeof(v);
+        v = random_rand();
+    }
+
+    memcpy(buf, &v, len);
+    return 1;
+}
+
+#define prng(Buf,Length) contiki_prng_impl((Buf), (Length))
+#define prng_init(Value) random_init((unsigned short)(Value))
+#endif /* WITH_CONTIKI */
+
+#ifndef prng
+/** 
+ * Fills \p Buf with \p Length bytes of random data. 
+ * 
+ * @hideinitializer
+ */
+#define prng(Buf,Length) coap_prng_impl((Buf), (Length))
+#endif
+
+#ifndef prng_init
+/** 
+ * Called to set the PRNG seed. You may want to re-define this to
+ * allow for a better PRNG.
+ *
+ * @hideinitializer
+ */
+#define prng_init(Value) srand((unsigned long)(Value))
+#endif
+
+/** @} */
+
+#endif /* _COAP_PRNG_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/resource.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/resource.c
new file mode 100644 (file)
index 0000000..d6ae50f
--- /dev/null
@@ -0,0 +1,935 @@
+/* resource.c -- generic resource handling
+ *
+ * Copyright (C) 2010--2014 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+#include "net.h"
+#include "debug.h"
+#include "resource.h"
+#include "subscribe.h"
+
+#ifdef WITH_LWIP
+#include "utlist.h"
+/* mem.h is only needed for the string free calls for
+ * COAP_ATTR_FLAGS_RELEASE_NAME / COAP_ATTR_FLAGS_RELEASE_VALUE /
+ * COAP_RESOURCE_FLAGS_RELEASE_URI. not sure what those lines should actually
+ * do on lwip. */
+#include "mem.h"
+
+#include <lwip/memp.h>
+
+#define COAP_MALLOC_TYPE(Type) \
+  ((coap_##Type##_t *)memp_malloc(MEMP_COAP_##Type))
+#define COAP_FREE_TYPE(Type, Object) memp_free(MEMP_COAP_##Type, Object)
+
+#endif
+#ifdef WITH_POSIX
+#include "utlist.h"
+#include "mem.h"
+
+#define COAP_MALLOC_TYPE(Type) \
+  ((coap_##Type##_t *)coap_malloc(sizeof(coap_##Type##_t)))
+#define COAP_FREE_TYPE(Type, Object) coap_free(Object)
+
+#endif /* WITH_POSIX */
+#ifdef WITH_CONTIKI
+#include "memb.h"
+
+MEMB(resource_storage, coap_resource_t, COAP_MAX_RESOURCES);
+MEMB(attribute_storage, coap_attr_t, COAP_MAX_ATTRIBUTES);
+MEMB(subscription_storage, coap_subscription_t, COAP_MAX_SUBSCRIBERS);
+
+void
+coap_resources_init()
+{
+    memb_init(&resource_storage);
+    memb_init(&attribute_storage);
+    memb_init(&subscription_storage);
+}
+
+static inline coap_subscription_t *
+coap_malloc_subscription()
+{
+    return memb_alloc(&subscription_storage);
+}
+
+static inline void
+coap_free_subscription(coap_subscription_t *subscription)
+{
+    memb_free(&subscription_storage, subscription);
+}
+#endif /* WITH_CONTIKI */
+
+#define min(a,b) ((a) < (b) ? (a) : (b))
+
+/* Helper functions for conditional output of character sequences into
+ * a given buffer. The first Offset characters are skipped.
+ */
+
+/**
+ * Adds Char to Buf if Offset is zero. Otherwise, Char is not written
+ * and Offset is decremented.
+ */
+#define PRINT_WITH_OFFSET(Buf,Offset,Char)             \
+  if ((Offset) == 0) {                                 \
+    (*(Buf)++) = (Char);                               \
+  } else {                                             \
+    (Offset)--;                                                \
+  }                                                    \
+
+/**
+ * Adds Char to Buf if Offset is zero and Buf is less than Bufend.
+ */
+#define PRINT_COND_WITH_OFFSET(Buf,Bufend,Offset,Char,Result) {                \
+    if ((Buf) < (Bufend)) {                                            \
+      PRINT_WITH_OFFSET(Buf,Offset,Char);                              \
+    }                                                                  \
+    (Result)++;                                                                \
+  }
+
+/**
+ * Copies at most Length characters of Str to Buf. The first Offset
+ * characters are skipped. Output may be truncated to Bufend - Buf
+ * characters.
+ */
+#define COPY_COND_WITH_OFFSET(Buf,Bufend,Offset,Str,Length,Result) {   \
+    size_t i;                                                          \
+    for (i = 0; i < (Length); i++) {                                   \
+      PRINT_COND_WITH_OFFSET((Buf), (Bufend), (Offset), (Str)[i], (Result)); \
+    }                                                                  \
+  }
+
+int match(const str *text, const str *pattern, int match_prefix, int match_substring)
+{
+    assert(text);
+    assert(pattern);
+
+    if (text->length < pattern->length)
+        return 0;
+
+    if (match_substring)
+    {
+        unsigned char *next_token = text->s;
+        size_t remaining_length = text->length;
+        while (remaining_length)
+        {
+            size_t token_length;
+            unsigned char *token = next_token;
+            next_token = memchr(token, ' ', remaining_length);
+
+            if (next_token)
+            {
+                token_length = next_token - token;
+                remaining_length -= (token_length + 1);
+                next_token++;
+            }
+            else
+            {
+                token_length = remaining_length;
+                remaining_length = 0;
+            }
+
+            if ((match_prefix || pattern->length == token_length)
+                    && memcmp(token, pattern->s, pattern->length) == 0)
+                return 1;
+        }
+        return 0;
+    }
+
+    return (match_prefix || pattern->length == text->length)
+            && memcmp(text->s, pattern->s, pattern->length) == 0;
+}
+
+/** 
+ * Prints the names of all known resources to @p buf. This function
+ * sets @p buflen to the number of bytes actually written and returns
+ * @c 1 on succes. On error, the value in @p buflen is undefined and
+ * the return value will be @c 0.
+ * 
+ * @param context The context with the resource map.
+ * @param buf     The buffer to write the result.
+ * @param buflen  Must be initialized to the maximum length of @p buf and will be
+ *                set to the length of the well-known response on return.
+ * @param offset  The offset in bytes where the output shall start and is
+ *                shifted accordingly with the characters that have been
+ *                processed. This parameter is used to support the block 
+ *                option. 
+ * @param query_filter A filter query according to <a href="http://tools.ietf.org/html/draft-ietf-core-link-format-11#section-4.1">Link Format</a>
+ * 
+ * @return COAP_PRINT_STATUS_ERROR on error. Otherwise, the lower 28 bits are
+ *         set to the number of bytes that have actually been written to
+ *         @p buf. COAP_PRINT_STATUS_TRUNC is set when the output has been
+ *         truncated.
+ */
+#if defined(__GNUC__) && defined(WITHOUT_QUERY_FILTER)
+coap_print_status_t
+print_wellknown(coap_context_t *context, unsigned char *buf, size_t *buflen,
+        size_t offset,
+        coap_opt_t *query_filter __attribute__ ((unused)))
+{
+#else /* not a GCC */
+coap_print_status_t print_wellknown(coap_context_t *context, unsigned char *buf, size_t *buflen,
+        size_t offset, coap_opt_t *query_filter)
+{
+#endif /* GCC */
+    coap_resource_t *r;
+    unsigned char *p = buf;
+    const unsigned char *bufend = buf + *buflen;
+    size_t left, written = 0;
+    coap_print_status_t result;
+    const size_t old_offset = offset;
+    int subsequent_resource = 0;
+#ifndef COAP_RESOURCES_NOHASH
+    coap_resource_t *tmp;
+#endif
+#ifndef WITHOUT_QUERY_FILTER
+    str resource_param =
+    { 0, NULL }, query_pattern =
+    { 0, NULL };
+    int flags = 0; /* MATCH_SUBSTRING, MATCH_PREFIX, MATCH_URI */
+#define MATCH_URI       0x01
+#define MATCH_PREFIX    0x02
+#define MATCH_SUBSTRING 0x04
+    static const str _rt_attributes[] =
+    {
+    { 2, (unsigned char *) "rt" },
+    { 2, (unsigned char *) "if" },
+    { 3, (unsigned char *) "rel" },
+    { 0, NULL } };
+#endif /* WITHOUT_QUERY_FILTER */
+
+#ifdef WITH_CONTIKI
+    int i;
+#endif /* WITH_CONTIKI */
+
+#ifndef WITHOUT_QUERY_FILTER
+    /* split query filter, if any */
+    if (query_filter)
+    {
+        resource_param.s = COAP_OPT_VALUE(query_filter);
+        while (resource_param.length < COAP_OPT_LENGTH(query_filter)
+                && resource_param.s[resource_param.length] != '=')
+            resource_param.length++;
+
+        if (resource_param.length < COAP_OPT_LENGTH(query_filter))
+        {
+            const str *rt_attributes;
+            if (resource_param.length == 4 && memcmp(resource_param.s, "href", 4) == 0)
+                flags |= MATCH_URI;
+
+            for (rt_attributes = _rt_attributes; rt_attributes->s; rt_attributes++)
+            {
+                if (resource_param.length == rt_attributes->length
+                        && memcmp(resource_param.s, rt_attributes->s, rt_attributes->length) == 0)
+                {
+                    flags |= MATCH_SUBSTRING;
+                    break;
+                }
+            }
+
+            /* rest is query-pattern */
+            query_pattern.s = COAP_OPT_VALUE(query_filter) + resource_param.length + 1;
+
+            assert((resource_param.length + 1) <= COAP_OPT_LENGTH(query_filter));
+            query_pattern.length = COAP_OPT_LENGTH(query_filter) - (resource_param.length + 1);
+
+            if ((query_pattern.s[0] == '/') && ((flags & MATCH_URI) == MATCH_URI))
+            {
+                query_pattern.s++;
+                query_pattern.length--;
+            }
+
+            if (query_pattern.length && query_pattern.s[query_pattern.length - 1] == '*')
+            {
+                query_pattern.length--;
+                flags |= MATCH_PREFIX;
+            }
+        }
+    }
+#endif /* WITHOUT_QUERY_FILTER */
+
+#ifndef WITH_CONTIKI
+
+#ifdef COAP_RESOURCES_NOHASH
+    LL_FOREACH(context->resources, r)
+    {
+#else
+    HASH_ITER(hh, context->resources, r, tmp)
+    {
+#endif
+#else /* WITH_CONTIKI */
+        r = (coap_resource_t *)resource_storage.mem;
+        for (i = 0; i < resource_storage.num; ++i, ++r)
+        {
+            if (!resource_storage.count[i])
+            continue;
+#endif /* WITH_CONTIKI */
+
+#ifndef WITHOUT_QUERY_FILTER
+        if (resource_param.length)
+        { /* there is a query filter */
+
+            if (flags & MATCH_URI)
+            { /* match resource URI */
+                if (!match(&r->uri, &query_pattern, (flags & MATCH_PREFIX) != 0,
+                        (flags & MATCH_SUBSTRING) != 0))
+                    continue;
+            }
+            else
+            { /* match attribute */
+                coap_attr_t *attr;
+                str unquoted_val;
+                attr = coap_find_attr(r, resource_param.s, resource_param.length);
+                if (!attr)
+                    continue;
+                if (attr->value.s[0] == '"')
+                { /* if attribute has a quoted value, remove double quotes */
+                    unquoted_val.length = attr->value.length - 2;
+                    unquoted_val.s = attr->value.s + 1;
+                }
+                else
+                {
+                    unquoted_val = attr->value;
+                }
+                if (!(match(&unquoted_val, &query_pattern, (flags & MATCH_PREFIX) != 0,
+                        (flags & MATCH_SUBSTRING) != 0)))
+                    continue;
+            }
+        }
+#endif /* WITHOUT_QUERY_FILTER */
+
+        if (!subsequent_resource)
+        { /* this is the first resource  */
+            subsequent_resource = 1;
+        }
+        else
+        {
+            PRINT_COND_WITH_OFFSET(p, bufend, offset, ',', written);
+        }
+
+        left = bufend - p; /* calculate available space */
+        result = coap_print_link(r, p, &left, &offset);
+
+        if (result & COAP_PRINT_STATUS_ERROR)
+        {
+            break;
+        }
+
+        /* coap_print_link() returns the number of characters that
+         * where actually written to p. Now advance to its end. */
+        p += COAP_PRINT_OUTPUT_LENGTH(result);
+        written += left;
+    }
+
+    *buflen = written;
+    result = p - buf;
+    if (result + old_offset - offset < *buflen)
+    {
+        result |= COAP_PRINT_STATUS_TRUNC;
+    }
+    return result;
+}
+
+coap_resource_t *
+coap_resource_init(const unsigned char *uri, size_t len, int flags)
+{
+    coap_resource_t *r;
+
+#ifdef WITH_POSIX
+    r = (coap_resource_t *)coap_malloc(sizeof(coap_resource_t));
+#endif
+#ifdef WITH_LWIP
+    r = (coap_resource_t *)memp_malloc(MEMP_COAP_RESOURCE);
+#endif
+#ifdef WITH_CONTIKI
+    r = (coap_resource_t *)memb_alloc(&resource_storage);
+#endif
+    if (r)
+    {
+        memset(r, 0, sizeof(coap_resource_t));
+
+#ifdef WITH_CONTIKI
+        LIST_STRUCT_INIT(r, link_attr);
+#endif /* WITH_CONTIKI */
+        LIST_STRUCT_INIT(r, subscribers);
+
+        r->uri.s = (unsigned char *) uri;
+        r->uri.length = len;
+
+        coap_hash_path(r->uri.s, r->uri.length, r->key);
+
+        r->flags = flags;
+    }
+    else
+    {
+        debug("coap_resource_init: no memory left\n");
+    }
+
+    return r;
+}
+
+coap_attr_t *
+coap_add_attr(coap_resource_t *resource, const unsigned char *name, size_t nlen,
+        const unsigned char *val, size_t vlen, int flags)
+{
+    coap_attr_t *attr;
+
+    if (!resource || !name)
+        return NULL;
+
+#ifdef WITH_POSIX
+    attr = (coap_attr_t *)coap_malloc(sizeof(coap_attr_t));
+#endif
+#ifdef WITH_LWIP
+    attr = (coap_attr_t *)memp_malloc(MEMP_COAP_RESOURCEATTR);
+#endif
+#ifdef WITH_CONTIKI
+    attr = (coap_attr_t *)memb_alloc(&attribute_storage);
+#endif
+
+    if (attr)
+    {
+        attr->name.length = nlen;
+        attr->value.length = val ? vlen : 0;
+
+        attr->name.s = (unsigned char *) name;
+        attr->value.s = (unsigned char *) val;
+
+        attr->flags = flags;
+
+        /* add attribute to resource list */
+#ifndef WITH_CONTIKI
+        LL_PREPEND(resource->link_attr, attr);
+#else /* WITH_CONTIKI */
+        list_add(resource->link_attr, attr);
+#endif /* WITH_CONTIKI */
+    }
+    else
+    {
+        debug("coap_add_attr: no memory left\n");
+    }
+
+    return attr;
+}
+
+coap_attr_t *
+coap_find_attr(coap_resource_t *resource, const unsigned char *name, size_t nlen)
+{
+    coap_attr_t *attr;
+
+    if (!resource || !name)
+        return NULL;
+
+#ifndef WITH_CONTIKI
+    LL_FOREACH(resource->link_attr, attr)
+    {
+#else /* WITH_CONTIKI */
+        for (attr = list_head(resource->link_attr); attr;
+                attr = list_item_next(attr))
+        {
+#endif /* WITH_CONTIKI */    
+        if (attr->name.length == nlen && memcmp(attr->name.s, name, nlen) == 0)
+            return attr;
+    }
+
+    return NULL;
+}
+
+void coap_delete_attr(coap_attr_t *attr)
+{
+    if (!attr)
+        return;
+    if (attr->flags & COAP_ATTR_FLAGS_RELEASE_NAME)
+        coap_free(attr->name.s);
+    if (attr->flags & COAP_ATTR_FLAGS_RELEASE_VALUE)
+        coap_free(attr->value.s);
+#ifdef POSIX
+    coap_free(attr);
+#endif
+#ifdef WITH_LWIP
+    memp_free(MEMP_COAP_RESOURCEATTR, attr);
+#endif
+#ifdef WITH_CONTIKI
+    /* FIXME it looks like this was never implemented */
+#endif
+}
+
+void coap_hash_request_uri(const coap_pdu_t *request, coap_key_t key)
+{
+    coap_opt_iterator_t opt_iter;
+    coap_opt_filter_t filter;
+    coap_opt_t *option;
+
+    memset(key, 0, sizeof(coap_key_t));
+
+    coap_option_filter_clear(filter);
+    coap_option_setb(filter, COAP_OPTION_URI_PATH);
+
+    coap_option_iterator_init((coap_pdu_t *) request, &opt_iter, filter);
+    while ((option = coap_option_next(&opt_iter)))
+        coap_hash(COAP_OPT_VALUE(option), COAP_OPT_LENGTH(option), key);
+}
+
+void coap_add_resource(coap_context_t *context, coap_resource_t *resource)
+{
+#ifndef WITH_CONTIKI
+#ifdef COAP_RESOURCES_NOHASH
+    LL_PREPEND(context->resources, resource);
+#else
+    HASH_ADD(hh, context->resources, key, sizeof(coap_key_t), resource);
+#endif
+#endif /* WITH_CONTIKI */
+}
+
+int coap_delete_resource(coap_context_t *context, coap_key_t key)
+{
+    coap_resource_t *resource;
+    coap_attr_t *attr, *tmp;
+#ifdef WITH_CONTIKI
+    coap_subscription_t *obs;
+#endif
+
+    if (!context)
+        return 0;
+
+    resource = coap_get_resource_from_key(context, key);
+
+    if (!resource)
+        return 0;
+
+#if defined(WITH_POSIX) || defined(WITH_LWIP)
+#ifdef COAP_RESOURCES_NOHASH
+    LL_DELETE(context->resources, resource);
+#else
+    HASH_DELETE(hh, context->resources, resource);
+#endif
+
+    /* delete registered attributes */
+    LL_FOREACH_SAFE(resource->link_attr, attr, tmp) coap_delete_attr(attr);
+
+    if (resource->flags & COAP_RESOURCE_FLAGS_RELEASE_URI)
+    coap_free(resource->uri.s);
+
+#ifdef WITH_POSIX
+    coap_free(resource);
+#endif
+#ifdef WITH_LWIP
+    memp_free(MEMP_COAP_RESOURCE, resource);
+#endif
+#else /* not (WITH_POSIX || WITH_LWIP) */
+    /* delete registered attributes */
+    while ((attr = list_pop(resource->link_attr)))
+        memb_free(&attribute_storage, attr);
+
+    /* delete subscribers */
+    while ((obs = list_pop(resource->subscribers)))
+    {
+        /* FIXME: notify observer that its subscription has been removed */
+        memb_free(&subscription_storage, obs);
+    }
+
+    memb_free(&resource_storage, resource);
+#endif /* WITH_CONTIKI */
+
+    return 1;
+}
+
+coap_resource_t *
+coap_get_resource_from_key(coap_context_t *context, coap_key_t key)
+{
+#ifndef WITH_CONTIKI
+    coap_resource_t *resource;
+#ifdef COAP_RESOURCES_NOHASH
+    resource = NULL;
+    LL_FOREACH(context->resources, resource)
+    {
+        /* if you think you can outspart the compiler and speed things up by (eg by
+         * casting to uint32* and comparing alues), increment this counter: 1 */
+        if (memcmp(key, resource->key, sizeof(coap_key_t)) == 0)
+        return resource;
+    }
+    return NULL;
+#else
+    HASH_FIND(hh, context->resources, key, sizeof(coap_key_t), resource);
+
+    return resource;
+#endif
+#else /* WITH_CONTIKI */
+    int i;
+    coap_resource_t *ptr2;
+
+    /* the search function is basically taken from memb.c */
+    ptr2 = (coap_resource_t *)resource_storage.mem;
+    for (i = 0; i < resource_storage.num; ++i)
+    {
+        if (resource_storage.count[i] &&
+                (memcmp(ptr2->key, key, sizeof(coap_key_t)) == 0))
+        return (coap_resource_t *)ptr2;
+        ++ptr2;
+    }
+
+    return NULL;
+#endif /* WITH_CONTIKI */
+}
+
+coap_print_status_t coap_print_link(const coap_resource_t *resource, unsigned char *buf,
+        size_t *len, size_t *offset)
+{
+    unsigned char *p = buf;
+    const unsigned char *bufend = buf + *len;
+    coap_attr_t *attr;
+    coap_print_status_t result = 0;
+    const size_t old_offset = *offset;
+
+    *len = 0;
+    PRINT_COND_WITH_OFFSET(p, bufend, *offset, '<', *len);
+    PRINT_COND_WITH_OFFSET(p, bufend, *offset, '/', *len);
+
+    COPY_COND_WITH_OFFSET(p, bufend, *offset, resource->uri.s, resource->uri.length, *len);
+
+    PRINT_COND_WITH_OFFSET(p, bufend, *offset, '>', *len);
+
+#ifndef WITH_CONTIKI
+    LL_FOREACH(resource->link_attr, attr)
+    {
+#else /* WITH_CONTIKI */
+        for (attr = list_head(resource->link_attr); attr;
+                attr = list_item_next(attr))
+        {
+#endif /* WITH_CONTIKI */
+
+        PRINT_COND_WITH_OFFSET(p, bufend, *offset, ';', *len);
+
+        COPY_COND_WITH_OFFSET(p, bufend, *offset, attr->name.s, attr->name.length, *len);
+
+        if (attr->value.s)
+        {
+            PRINT_COND_WITH_OFFSET(p, bufend, *offset, '=', *len);
+
+            COPY_COND_WITH_OFFSET(p, bufend, *offset, attr->value.s, attr->value.length, *len);
+        }
+
+    }
+    if (resource->observable)
+    {
+        COPY_COND_WITH_OFFSET(p, bufend, *offset, ";obs", 4, *len);
+    }
+
+    result = p - buf;
+    if (result + old_offset - *offset < *len)
+    {
+        result |= COAP_PRINT_STATUS_TRUNC;
+    }
+
+    return result;
+}
+
+#ifndef WITHOUT_OBSERVE
+coap_subscription_t *
+coap_find_observer(coap_resource_t *resource, const coap_address_t *peer, const str *token)
+{
+    coap_subscription_t *s;
+
+    assert(resource);
+    assert(peer);
+
+    for (s = list_head(resource->subscribers); s; s = list_item_next(s))
+    {
+        if (coap_address_equals(&s->subscriber, peer)
+                && (!token
+                        || (token->length == s->token_length
+                                && memcmp(token->s, s->token, token->length) == 0)))
+            return s;
+    }
+
+    return NULL;
+}
+
+coap_subscription_t *
+coap_add_observer(coap_resource_t *resource, const coap_address_t *observer, const str *token)
+{
+    coap_subscription_t *s;
+
+    assert(observer);
+
+    /* Check if there is already a subscription for this peer. */
+    s = coap_find_observer(resource, observer, token);
+
+    /* We are done if subscription was found. */
+    if (s)
+        return s;
+
+    /* s points to a different subscription, so we have to create
+     * another one. */
+    s = COAP_MALLOC_TYPE(subscription);
+
+    if (!s)
+        return NULL;
+
+    coap_subscription_init(s);
+    memcpy(&s->subscriber, observer, sizeof(coap_address_t));
+
+    if (token && token->length)
+    {
+        s->token_length = token->length;
+        memcpy(s->token, token->s, min(s->token_length, 8));
+    }
+
+    /* add subscriber to resource */
+    list_add(resource->subscribers, s);
+
+    return s;
+}
+
+void coap_touch_observer(coap_context_t *context, const coap_address_t *observer, const str *token)
+{
+    coap_resource_t *r;
+    coap_subscription_t *s;
+
+#ifndef WITH_CONTIKI
+#ifdef COAP_RESOURCES_NOHASH
+    LL_FOREACH(context->resources, r)
+    {
+#else
+    coap_resource_t *tmp;
+    HASH_ITER(hh, context->resources, r, tmp)
+    {
+#endif
+        s = coap_find_observer(r, observer, token);
+        if (s)
+        {
+            s->fail_cnt = 0;
+        }
+    }
+#else /* WITH_CONTIKI */
+    r = (coap_resource_t *)resource_storage.mem;
+    for (i = 0; i < resource_storage.num; ++i, ++r)
+    {
+        if (resource_storage.count[i])
+        {
+            s = coap_find_observer(r, observer, token);
+            if (s)
+            {
+                s->fail_cnt = 0;
+            }
+        }
+    }
+#endif /* WITH_CONTIKI */
+}
+
+void coap_delete_observer(coap_resource_t *resource, const coap_address_t *observer,
+        const str *token)
+{
+    coap_subscription_t *s;
+
+    s = coap_find_observer(resource, observer, token);
+
+    if (s)
+    {
+        list_remove(resource->subscribers, s);
+
+        COAP_FREE_TYPE(subscription, s);
+    }
+}
+
+static void coap_notify_observers(coap_context_t *context, coap_resource_t *r)
+{
+    coap_method_handler_t h;
+    coap_subscription_t *obs;
+    str token;
+    coap_pdu_t *response;
+
+    if (r->observable && (r->dirty || r->partiallydirty))
+    {
+        r->partiallydirty = 0;
+
+        /* retrieve GET handler, prepare response */
+        h = r->handler[COAP_REQUEST_GET - 1];
+        assert(h); /* we do not allow subscriptions if no
+         * GET handler is defined */
+
+        for (obs = list_head(r->subscribers); obs; obs = list_item_next(obs))
+        {
+            if (r->dirty == 0 && obs->dirty == 0)
+                /* running this resource due to partiallydirty, but this observation's notification was already enqueued */
+                continue;
+
+            coap_tid_t tid = COAP_INVALID_TID;
+            obs->dirty = 0;
+            /* initialize response */
+            response = coap_pdu_init(COAP_MESSAGE_CON, 0, 0, COAP_MAX_PDU_SIZE);
+            if (!response)
+            {
+                obs->dirty = 1;
+                r->partiallydirty = 1;
+                debug("coap_check_notify: pdu init failed, resource stays partially dirty\n");
+                continue;
+            }
+
+            if (!coap_add_token(response, obs->token_length, obs->token))
+            {
+                obs->dirty = 1;
+                r->partiallydirty = 1;
+                debug("coap_check_notify: cannot add token, resource stays partially dirty\n");
+                coap_delete_pdu(response);
+                continue;
+            }
+
+            token.length = obs->token_length;
+            token.s = obs->token;
+
+            response->hdr->id = coap_new_message_id(context);
+            if (obs->non && obs->non_cnt < COAP_OBS_MAX_NON)
+            {
+                response->hdr->type = COAP_MESSAGE_NON;
+            }
+            else
+            {
+                response->hdr->type = COAP_MESSAGE_CON;
+            }
+            /* fill with observer-specific data */
+            h(context, r, &obs->subscriber, NULL, &token, response);
+
+            if (response->hdr->type == COAP_MESSAGE_CON)
+            {
+                tid = coap_send_confirmed(context, &obs->subscriber, response);
+                obs->non_cnt = 0;
+            }
+            else
+            {
+                tid = coap_send(context, &obs->subscriber, response);
+                obs->non_cnt++;
+            }
+
+            if (COAP_INVALID_TID == tid || response->hdr->type != COAP_MESSAGE_CON)
+                coap_delete_pdu(response);
+            if (COAP_INVALID_TID == tid)
+            {
+                debug("coap_check_notify: sending failed, resource stays partially dirty\n");
+                obs->dirty = 1;
+                r->partiallydirty = 1;
+            }
+
+        }
+
+        /* Increment value for next Observe use. */
+        context->observe++;
+    }
+    r->dirty = 0;
+}
+
+void coap_check_notify(coap_context_t *context)
+{
+    coap_resource_t *r;
+#ifndef WITH_CONTIKI
+
+#ifdef COAP_RESOURCES_NOHASH
+    LL_FOREACH(context->resources, r)
+    {
+#else
+    coap_resource_t *tmp;
+    HASH_ITER(hh, context->resources, r, tmp)
+    {
+#endif
+        coap_notify_observers(context, r);
+    }
+#else /* WITH_CONTIKI */
+    int i;
+
+    r = (coap_resource_t *)resource_storage.mem;
+    for (i = 0; i < resource_storage.num; ++i, ++r)
+    {
+        if (resource_storage.count[i])
+        {
+            coap_notify_observers(context, r);
+        }
+    }
+#endif /* WITH_CONTIKI */
+}
+
+/**
+ * Checks the failure counter for (peer, token) and removes peer from
+ * the list of observers for the given resource when COAP_OBS_MAX_FAIL
+ * is reached.
+ *
+ * @param context  The CoAP context to use
+ * @param resource The resource to check for (peer, token)
+ * @param peer     The observer's address
+ * @param token    The token that has been used for subscription.
+ */
+static void coap_remove_failed_observers(coap_context_t *context, coap_resource_t *resource,
+        const coap_address_t *peer, const str *token)
+{
+    coap_subscription_t *obs;
+
+    for (obs = list_head(resource->subscribers); obs; obs = list_item_next(obs))
+    {
+        if (coap_address_equals(peer, &obs->subscriber) && token->length == obs->token_length
+                && memcmp(token->s, obs->token, token->length) == 0)
+        {
+
+            /* count failed notifies and remove when
+             * COAP_MAX_FAILED_NOTIFY is reached */
+            if (obs->fail_cnt < COAP_OBS_MAX_FAIL)
+                obs->fail_cnt++;
+            else
+            {
+                list_remove(resource->subscribers, obs);
+                obs->fail_cnt = 0;
+
+#ifndef NDEBUG
+                if (LOG_DEBUG <= coap_get_log_level())
+                {
+#ifndef INET6_ADDRSTRLEN
+#define INET6_ADDRSTRLEN 40
+#endif
+                    unsigned char addr[INET6_ADDRSTRLEN + 8];
+
+                    if (coap_print_addr(&obs->subscriber, addr, INET6_ADDRSTRLEN + 8))
+                        debug("** removed observer %s\n", addr);
+                }
+#endif
+                coap_cancel_all_messages(context, &obs->subscriber, obs->token, obs->token_length);
+
+                COAP_FREE_TYPE(subscription, obs);
+            }
+        }
+        break; /* break loop if observer was found */
+    }
+}
+
+void coap_handle_failed_notify(coap_context_t *context, const coap_address_t *peer,
+        const str *token)
+{
+    coap_resource_t *r;
+
+#ifndef WITH_CONTIKI
+
+#ifdef COAP_RESOURCES_NOHASH
+    LL_FOREACH(context->resources, r)
+    {
+#else
+    coap_resource_t *tmp;
+    HASH_ITER(hh, context->resources, r, tmp)
+    {
+#endif
+        coap_remove_failed_observers(context, r, peer, token);
+    }
+#else /* WITH_CONTIKI */
+    int i;
+
+    r = (coap_resource_t *)resource_storage.mem;
+    for (i = 0; i < resource_storage.num; ++i, ++r)
+    {
+        if (resource_storage.count[i])
+        {
+            coap_remove_failed_observers(context, r, peer, token);
+        }
+    }
+#endif /* WITH_CONTIKI */
+}
+#endif /* WITHOUT_NOTIFY */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/resource.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/resource.h
new file mode 100644 (file)
index 0000000..5ed3583
--- /dev/null
@@ -0,0 +1,318 @@
+/* resource.h -- generic resource handling
+ *
+ * Copyright (C) 2010,2011,2014 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+/** 
+ * @file resource.h
+ * @brief generic resource handling
+ */
+
+#ifndef _COAP_RESOURCE_H_
+#define _COAP_RESOURCE_H_
+
+#include "config.h"
+#include "t_list.h"
+
+#if defined(HAVE_ASSERT_H) && !defined(assert)
+# include <assert.h>
+#endif
+
+#ifndef COAP_RESOURCE_CHECK_TIME
+/** The interval in seconds to check if resources have changed. */
+#define COAP_RESOURCE_CHECK_TIME 2
+#endif /* COAP_RESOURCE_CHECK_TIME */
+
+#ifndef WITH_CONTIKI
+#  ifdef COAP_RESOURCES_NOHASH
+#    include "utlist.h"
+#  else
+#    include "uthash.h"
+#  endif
+#else /* WITH_CONTIKI */
+#endif /* WITH_CONTIKI */
+#include "hashkey.h"
+#include "async.h"
+#include "str.h"
+#include "pdu.h"
+#include "net.h"
+#include "subscribe.h"
+
+/** Definition of message handler function (@sa coap_resource_t). */
+typedef void (*coap_method_handler_t)(coap_context_t *, struct coap_resource_t *, coap_address_t *,
+        coap_pdu_t *, str * /* token */, coap_pdu_t * /* response */);
+
+#define COAP_ATTR_FLAGS_RELEASE_NAME  0x1
+#define COAP_ATTR_FLAGS_RELEASE_VALUE 0x2
+
+typedef struct coap_attr_t
+{
+    struct coap_attr_t *next;
+    str name;
+    str value;
+    int flags;
+} coap_attr_t;
+
+#define COAP_RESOURCE_FLAGS_RELEASE_URI 0x1
+
+typedef struct coap_resource_t
+{
+    unsigned int dirty :1; /**< set to 1 if resource has changed */
+    unsigned int partiallydirty :1; /**< set to 1 if some subscribers have not yet been notified of the last change */
+    unsigned int observable :1; /**< can be observed */
+    unsigned int cacheable :1; /**< can be cached */
+
+    /** 
+     * Used to store handlers for the four coap methods @c GET, @c POST,
+     * @c PUT, and @c DELETE. coap_dispatch() will pass incoming
+     * requests to the handler that corresponds to its request method or
+     * generate a 4.05 response if no handler is available.
+     */
+    coap_method_handler_t handler[4];
+
+    coap_key_t key; /**< the actual key bytes for this resource */
+
+#ifndef WITH_CONTIKI
+#ifdef COAP_RESOURCES_NOHASH
+    struct coap_resource_t *next;
+#else
+    UT_hash_handle hh;
+#endif
+#endif /* WITH_CONTIKI */
+
+#ifndef WITH_CONTIKI
+    coap_attr_t *link_attr; /**< attributes to be included with the link format */
+#else /* WITH_CONTIKI */
+    LIST_STRUCT(link_attr); /**< attributes to be included with the link format */
+#endif /* WITH_CONTIKI */
+    LIST_STRUCT(subscribers); /**< list of observers for this resource */
+
+    /**
+     * Request URI for this resource. This field will point into the
+     * static memory. */
+    str uri;
+    int flags;
+
+} coap_resource_t;
+
+/** 
+ * Creates a new resource object and initializes the link field to the
+ * string of length @p len.  This function returns the
+ * new coap_resource_t object.
+ * 
+ * @param uri    The URI path of the new resource.
+ * @param len    The length of @p uri.
+ * @param flags  Flags for memory management (in particular release of memory)
+ * 
+ * @return A pointer to the new object or @c NULL on error.
+ */
+coap_resource_t *coap_resource_init(const unsigned char *uri, size_t len, int flags);
+
+/**
+ * Registers the given @p resource for @p context. The resource must
+ * have been created by coap_resource_init(), the storage allocated
+ * for the resource will be released by coap_delete_resource().
+ * 
+ * @param context  The context to use.
+ * @param resource The resource to store.
+ */
+void coap_add_resource(coap_context_t *context, coap_resource_t *resource);
+
+/** 
+ * Deletes a resource identified by @p key. The storage allocated for
+ * that resource is freed.
+ * 
+ * @param context  The context where the resources are stored.
+ * @param key      The unique key for the resource to delete.
+ * 
+ * @return @c 1 if the resource was found (and destroyed), @c 0 otherwise.
+ */
+int coap_delete_resource(coap_context_t *context, coap_key_t key);
+
+/** 
+ * Registers a new attribute with the given @p resource. As the
+ * attributes str fields will point to @p name and @p val the 
+ * caller must ensure that these pointers are valid during the
+ * attribute's lifetime.
+ * 
+ * @param resource  The resource to register the attribute with.
+ * @param name      The attribute's name.
+ * @param nlen      Length of @p name.
+ * @param val       The attribute's value or @c NULL if none.
+ * @param vlen      Length of @p val if specified.
+ * @param flags     Flags for memory management (in particular release of memory)
+ *
+ * @return A pointer to the new attribute or @c NULL on error.
+ */
+coap_attr_t *coap_add_attr(coap_resource_t *resource, const unsigned char *name, size_t nlen,
+        const unsigned char *val, size_t vlen, int flags);
+
+/**
+ * Returns @p resource's coap_attr_t object with given @p name if
+ * found, @c NULL otherwise.
+ *
+ * @param resource  The resource to search for attribute @p name.
+ * @param name      Name of the requested attribute.
+ * @param nlen      Actual length of @p name.
+ * @return The first attribute with specified @p name or @c NULL if
+ *         none was found.
+ */
+coap_attr_t *coap_find_attr(coap_resource_t *resource, const unsigned char *name, size_t nlen);
+
+/** 
+ * Deletes an attribute
+ * 
+ * @param attr  Pointer to a previously created attribute
+ * 
+ */
+void coap_delete_attr(coap_attr_t *attr);
+
+/**
+ * Status word to encode the result of conditional print or copy
+ * operations such as coap_print_link(). The lower 28 bits of
+ * coap_print_status_t are used to encode the number of characters
+ * that has actually been printed, bits 28 to 31 encode the status.
+ * When COAP_PRINT_STATUS_ERROR is set, an error occurred during
+ * output. In this case, the other bits are undefined.
+ * COAP_PRINT_STATUS_TRUNC indicates that the output is truncated,
+ * i.e. the printing would have exceeded the current buffer.
+ */
+typedef unsigned int coap_print_status_t;
+
+#define COAP_PRINT_STATUS_MASK  0xF0000000u
+#define COAP_PRINT_OUTPUT_LENGTH(v) ((v) & ~COAP_PRINT_STATUS_MASK)
+#define COAP_PRINT_STATUS_ERROR 0x80000000u
+#define COAP_PRINT_STATUS_TRUNC 0x40000000u
+
+/** 
+ * Writes a description of this resource in link-format to given text
+ * buffer. @p len must be initialized to the maximum length of @p buf
+ * and will be set to the number of characters actually written if
+ * successful.  This function returns @c 1 on success or @c 0 on
+ * error.
+ * 
+ * @param resource The resource to describe.
+ * @param buf      The output buffer to write the description to.
+ * @param len      Must be initialized to the length of @p buf and 
+ *                 will be set to the length of the printed link description.
+ * @param offset   The offset within the resource description where to
+ *                 start writing into @p buf. This is useful for dealing
+ *                 with the Block2 option. @p offset is updated during
+ *                 output as it is consumed.
+ * 
+ * @return If COAP_PRINT_STATUS_ERROR is set, an error occured. Otherwise,
+ *         the lower 28 bits will indicate the number of characters that
+ *         have actually been output into @p buffer. The flag
+ *         COAP_PRINT_STATUS_TRUNC indicates that the output has been
+ *         truncated. 
+ */
+coap_print_status_t coap_print_link(const coap_resource_t *resource, unsigned char *buf,
+        size_t *len, size_t *offset);
+
+/** 
+ * Registers the specified @p handler as message handler for the request type
+ * @p method 
+ * 
+ * @param resource The resource for which the handler shall be registered.
+ * @param method   The CoAP request method to handle. 
+ * @param handler  The handler to register with @p resource.
+ */
+static inline void coap_register_handler(coap_resource_t *resource, unsigned char method,
+        coap_method_handler_t handler)
+{
+    assert(resource);
+    assert(
+            method > 0
+                    && (size_t)(method - 1)
+                            < sizeof(resource->handler) / sizeof(coap_method_handler_t));
+    resource->handler[method - 1] = handler;
+}
+
+/** 
+ * Returns the resource identified by the unique string @p key. If no
+ * resource was found, this function returns @c NULL.
+ * 
+ * @param context  The context to look for this resource.
+ * @param key      The unique key of the resource.
+ * 
+ * @return A pointer to the resource or @c NULL if not found.
+ */
+coap_resource_t *coap_get_resource_from_key(coap_context_t *context, coap_key_t key);
+
+/** 
+ * Calculates the hash key for the resource requested by the
+ * Uri-Options of @p request.  This function calls coap_hash() for
+ * every path segment. 
+ * 
+ * @param request The requesting pdu.
+ * @param key     The resulting hash is stored in @p key
+ */
+void coap_hash_request_uri(const coap_pdu_t *request, coap_key_t key);
+
+/** 
+ * @addtogroup observe 
+ */
+
+/**
+ * Adds the specified peer as observer for @p resource. The
+ * subscription is identified by the given @p token. This function
+ * returns the registered subscription information if the @p observer
+ * has been added, or @c NULL on error.
+ *
+ * @param resource The observed resource.
+ * @param observer The remote peer that wants to received status updates.
+ * @param token The token that identifies this subscription.
+ * @param token_length The actual length of @p token. Must be @c 0 when
+ *        @p token is @c NULL.
+ * @return A pointer to the added/updated subscription information or 
+ *        @c NULL on error.
+ */
+coap_subscription_t *coap_add_observer(coap_resource_t *resource, const coap_address_t *observer,
+        const str *token);
+
+/**
+ * Returns a subscription object for given @p peer.
+ *
+ * @param resource The observed resource.
+ * @param peer The address to search for.
+ * @param token The token that identifies this subscription or @c NULL for any
+ *              token.
+ * @return A valid subscription if exists or @c NULL otherwise.
+ */
+coap_subscription_t *coap_find_observer(coap_resource_t *resource, const coap_address_t *peer,
+        const str *token);
+
+/**
+ * Marks an observer as alive.
+ *
+ * @param context  The CoAP context to use
+ * @param observer The transport address of the observer
+ * @param token    The corresponding token that has been used for 
+ *   the subscription
+ */
+void coap_touch_observer(coap_context_t *context, const coap_address_t *observer, const str *token);
+
+/**
+ * Removes any subscription for @p observer from @p resource and releases
+ * the allocated storage.
+ *
+ * @param resource The observed resource.
+ * @param observer The observer's address.
+ * @param token    The token that identifies this subscription or @c NULL for any
+ *                 token.
+ */
+void coap_delete_observer(coap_resource_t *resource, const coap_address_t *observer,
+        const str *token);
+
+/** 
+ * Checks for all known resources, if they are dirty and notifies
+ * subscribed observers.
+ */
+void coap_check_notify(coap_context_t *context);
+
+/** @} */
+
+#endif /* _COAP_RESOURCE_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/str.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/str.c
new file mode 100644 (file)
index 0000000..8b275e3
--- /dev/null
@@ -0,0 +1,37 @@
+/* str.c -- strings to be used in the CoAP library
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+
+#include <stdio.h>
+
+#include "debug.h"
+#include "mem.h"
+#include "str.h"
+
+str *coap_new_string(size_t size)
+{
+    str *s = coap_malloc(sizeof(str) + size + 1);
+    if (!s)
+    {
+#ifndef NDEBUG
+        coap_log(LOG_CRIT, "coap_new_string: malloc\n");
+#endif
+        return NULL;
+    }
+
+    memset(s, 0, sizeof(str));
+    s->s = ((unsigned char *) s) + sizeof(str);
+    return s;
+}
+
+void coap_delete_string(str *s)
+{
+    coap_free(s);
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/str.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/str.h
new file mode 100644 (file)
index 0000000..6405298
--- /dev/null
@@ -0,0 +1,31 @@
+/* str.h -- strings to be used in the CoAP library
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _COAP_STR_H_
+#define _COAP_STR_H_
+
+#include <string.h>
+
+typedef struct
+{
+    size_t length; /* length of string */
+    unsigned char *s; /* string data */
+} str;
+
+#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
+
+/**
+ * Returns a new string object with at least size bytes storage
+ * allocated.  The string must be released using coap_delete_string();
+ */
+str *coap_new_string(size_t size);
+
+/** Deletes the given string and releases any memory allocated. */
+void coap_delete_string(str *);
+
+#endif /* _COAP_STR_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/subscribe.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/subscribe.c
new file mode 100644 (file)
index 0000000..295f5c5
--- /dev/null
@@ -0,0 +1,445 @@
+/* subscribe.c -- subscription handling for CoAP
+ *                see draft-ietf-coap-observe-09
+ *
+ * Copyright (C) 2010--2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+
+#if defined(HAVE_ASSERT_H) && !defined(assert)
+# include <assert.h>
+#endif
+
+#include <stdio.h>
+#include <limits.h>
+#ifdef HAVE_ARPA_INET_H
+# include <arpa/inet.h>
+#endif
+
+/* #include "resource.h" */
+
+#include "mem.h"
+#include "encode.h"
+#include "debug.h"
+#include "subscribe.h"
+
+void coap_subscription_init(coap_subscription_t *s)
+{
+    assert(s);
+    memset(s, 0, sizeof(coap_subscription_t));
+}
+
+#if 0
+#define HMASK (ULONG_MAX >> 1)
+
+void
+notify(coap_context_t *context, coap_resource_t *res,
+        coap_subscription_t *sub, unsigned int duration, int code)
+{
+#if 0
+    coap_pdu_t *pdu;
+    int ls, finished=0;
+    unsigned char ct, d;
+    unsigned int length;
+#ifndef NDEBUG
+    char addr[INET6_ADDRSTRLEN];
+#endif
+
+    if ( !context || !res || !sub || !(pdu = coap_new_pdu()) )
+    return;
+
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    pdu->hdr->id = rand(); /* use a random transaction id */
+    pdu->hdr->code = code;
+
+    /* FIXME: content-type and data (how about block?) */
+    if (res->uri->host.length)
+    coap_add_option (pdu, COAP_OPTION_URI_HOST,
+            res->uri->host.length,
+            res->uri->host.s );
+
+    if (res->uri->path.length)
+    coap_add_option (pdu, COAP_OPTION_URI_PATH,
+            res->uri->path.length,
+            res->uri->path.s);
+
+    d = COAP_PSEUDOFP_ENCODE_8_4_DOWN(duration, ls);
+
+    coap_add_option ( pdu, COAP_OPTION_SUBSCRIPTION, 1, &d );
+
+    if (sub->token.length)
+    {
+        coap_add_option (pdu, COAP_OPTION_TOKEN,
+                sub->token.length,
+                sub->token.s);
+    }
+
+    if (res->uri->query.length)
+    coap_add_option (pdu, COAP_OPTION_URI_QUERY,
+            res->uri->query.length,
+            res->uri->query.s );
+
+    if (res->data)
+    {
+        length = (unsigned char *)pdu->hdr + COAP_MAX_PDU_SIZE - pdu->data;
+        ct = res->mediatype;
+        res->data(res->uri, &ct, 0, pdu->data, &length, &finished);
+        pdu->length += length;
+
+        /* TODO: add block option if not finished */
+        /* TODO: add mediatype */
+    }
+
+#ifndef NDEBUG
+    if ( inet_ntop(sub->subscriber.addr.sa.sa_family,
+                    &sub->subscriber.addr, addr, sizeof(addr)) )
+    {
+        debug("*** notify for %s to [%s]\n", res->uri->path.s, addr);
+    }
+#endif
+    if (pdu && coap_send_confirmed(context,
+                    &sub->subscriber.addr.sa,
+                    sub->subscriber.size, pdu)
+            == COAP_INVALID_TID)
+    {
+#ifndef NDEBUG
+        debug("coap_check_resource_list: error sending notification\n");
+#endif
+        coap_delete_pdu(pdu);
+    }
+#endif
+}
+
+void
+coap_check_resource_list(coap_context_t *context)
+{
+    coap_resource_t *res, *tmp;
+    coap_list_t *sub;
+    coap_key_t key;
+    time_t now;
+
+    if ( !context || !context->resources /* || !context->subscribers */)
+    return;
+
+    time(&now); /* FIXME: use coap_ticks() */
+
+    HASH_ITER(hh, context->resources, res, tmp)
+    {
+        if (res->dirty)
+        {
+            debug("FIXME: notify subscribers\n");
+#if 0
+            key = coap_uri_hash( COAP_RESOURCE(res)->uri );
+
+            /* is subscribed? */
+            for (sub = context->subscriptions; sub; sub = sub->next)
+            {
+                if ( COAP_SUBSCRIPTION(sub)->resource == key )
+                {
+                    /* notify subscriber */
+                    notify(context, COAP_RESOURCE(res), COAP_SUBSCRIPTION(sub),
+                            COAP_SUBSCRIPTION(sub)->expires - now, COAP_RESPONSE_200);
+                }
+
+            }
+
+            COAP_RESOURCE(res)->dirty = 0;
+#endif
+        }
+    }
+}
+
+#if 0
+coap_resource_t *
+coap_get_resource_from_key(coap_context_t *ctx, coap_key_t key)
+{
+    coap_list_t *node;
+
+    if (ctx)
+    {
+        /* TODO: use hash table for resources with key to access */
+        for (node = ctx->resources; node; node = node->next)
+        {
+            printf("check %ux\n", coap_uri_hash(COAP_RESOURCE(node)->uri));
+            if ( key == coap_uri_hash(COAP_RESOURCE(node)->uri) )
+            {
+                printf("found\n");
+                return COAP_RESOURCE(node);
+            }
+        }
+    }
+
+    printf("not found\n");
+    return NULL;
+}
+
+coap_resource_t *
+coap_get_resource(coap_context_t *ctx, coap_uri_t *uri)
+{
+#ifndef NDEBUG
+    int i;
+    printf("search resource %ux", coap_uri_hash(uri));
+    for (i=0; i < uri->path.length; ++i)
+    {
+        printf(" %02x", uri->path.s[i]);
+    }
+    printf("\n");
+#endif
+    return uri ? coap_get_resource_from_key(ctx, coap_uri_hash(uri)) : NULL;
+}
+#endif
+
+void
+coap_check_subscriptions(coap_context_t *context)
+{
+    time_t now;
+    coap_list_t *node;
+#ifndef NDEBUG
+    char addr[INET6_ADDRSTRLEN];
+#endif
+
+    if ( !context )
+    return;
+
+    time(&now);
+
+    node = context->subscriptions;
+    while ( node && COAP_SUBSCRIPTION(node)->expires < now )
+    {
+#ifndef NDEBUG
+        if (inet_ntop(COAP_SUBSCRIPTION(node)->subscriber.addr.sa.sa_family,
+                        &COAP_SUBSCRIPTION(node)->subscriber.addr,
+                        addr, sizeof(addr)))
+        {
+
+            debug("** removed expired subscription from [%s]\n", addr);
+        }
+#endif
+#if 0
+        notify(context,
+                coap_get_resource_from_key(context, COAP_SUBSCRIPTION(node)->resource),
+                COAP_SUBSCRIPTION(node),
+                0, COAP_RESPONSE_400);
+#endif
+        context->subscriptions = node->next;
+        coap_delete(node);
+        node = context->subscriptions;
+    }
+}
+
+void
+coap_free_resource(void *res)
+{
+    if ( res )
+    {
+#if 0
+        coap_free(((coap_resource_t *)res)->uri);
+        coap_delete_string(((coap_resource_t *)res)->name);
+#endif
+    }
+}
+
+#if 0
+/**
+ * Deletes the resource that is identified by key. Returns 1 if the resource was
+ * removed, 0 on error (e.g. if no such resource exists).
+ */
+int
+coap_delete_resource(coap_context_t *context, coap_key_t key)
+{
+    coap_list_t *prev, *node;
+
+    if (!context || key == COAP_INVALID_HASHKEY)
+    return 0;
+
+    for (prev = NULL, node = context->resources; node;
+            prev = node, node = node->next)
+    {
+        if (coap_uri_hash(COAP_RESOURCE(node)->uri) == key)
+        {
+#ifndef NDEBUG
+            debug("removed key %lu (%s)\n",key,COAP_RESOURCE(node)->uri->path.s);
+#endif
+            if (!prev)
+            context->resources = node->next;
+            else
+            prev->next = node->next;
+
+            coap_delete(node);
+            return 1;
+        }
+    }
+    return 0;
+}
+#endif
+
+coap_subscription_t *
+coap_new_subscription(coap_context_t *context, const coap_uri_t *resource,
+        const struct sockaddr *addr, socklen_t addrlen, time_t expiry)
+{
+    coap_subscription_t *result;
+
+    if ( !context || !resource || !addr
+            || !(result = coap_malloc(sizeof(coap_subscription_t))))
+    return NULL;
+
+    result->resource = coap_uri_hash(resource);
+    result->expires = expiry;
+    memcpy(&result->subscriber.addr.sa, addr, addrlen);
+
+    memset(&result->token, 0, sizeof(str));
+
+    return result;
+
+}
+
+coap_list_t *
+coap_list_push_first(coap_list_t **list, void *data, void (*delete_func)(void *) )
+{
+    coap_list_t *node;
+    node = coap_new_listnode(data, delete_func);
+    if ( !node || !list )
+    return NULL;
+
+    if ( !*list )
+    {
+        *list = node;
+    }
+    else
+    {
+        node->next = *list;
+        *list = node;
+    }
+
+    return node;
+}
+
+int
+_order_subscription(void *a, void *b)
+{
+    if ( !a || !b )
+    return a < b ? -1 : 1;
+
+    return ((coap_subscription_t *)a)->expires < ((coap_subscription_t *)b)->expires ? -1 : 1;
+}
+
+coap_key_t
+coap_subscription_hash(coap_subscription_t *subscription)
+{
+    if ( !subscription )
+    return COAP_INVALID_HASHKEY;
+
+    return _hash2( subscription->resource, (unsigned char *)&subscription->subscriber,
+            sizeof(subscription->subscriber) );
+}
+
+coap_key_t
+coap_add_subscription(coap_context_t *context,
+        coap_subscription_t *subscription)
+{
+    coap_list_t *node;
+    if ( !context || !subscription )
+    return COAP_INVALID_HASHKEY;
+
+    if ( !(node = coap_new_listnode(subscription, NULL)) )
+    return COAP_INVALID_HASHKEY;
+
+    if ( !coap_insert(&context->subscriptions, node, _order_subscription ) )
+    {
+        coap_free( node ); /* do not call coap_delete(), so subscription object will survive */
+        return COAP_INVALID_HASHKEY;
+    }
+
+    return coap_subscription_hash(subscription);
+}
+
+coap_subscription_t *
+coap_find_subscription(coap_context_t *context,
+        coap_key_t hashkey,
+        struct sockaddr *addr,
+        str *token)
+{
+#if 0
+    coap_list_t *node;
+#endif
+
+    if (!context || !addr || hashkey == COAP_INVALID_HASHKEY)
+    return NULL;
+
+    /* FIXME: I do not like the way subscriptions work right now. To be fixed. */
+
+#if 0
+    for (node = context->subscriptions; node; node = node->next)
+    {
+        if (COAP_SUBSCRIPTION(node)->resource == hashkey)
+        {
+
+            if (token)
+            { /* do not proceed if tokens do not match */
+                if (token->length != COAP_SUBSCRIPTION(node)->token.length ||
+                        memcmp(token->s, COAP_SUBSCRIPTION(node)->token.s,
+                                token->length) != 0)
+                continue;
+            }
+
+            if (subscriber->sin6_port == COAP_SUBSCRIPTION(node)->subscriber.sin6_port
+                    && memcmp(&subscriber->sin6_addr,
+                            &COAP_SUBSCRIPTION(node)->subscriber.sin6_addr,
+                            sizeof(struct in6_addr)) == 0)
+            return COAP_SUBSCRIPTION(node);
+        }
+    }
+#endif
+    return NULL;
+}
+
+int
+coap_delete_subscription(coap_context_t *context,
+        coap_key_t key,
+        struct sockaddr *addr)
+{
+#if 0
+    coap_list_t *prev, *node;
+#endif
+
+    if (!context || !addr || key == COAP_INVALID_HASHKEY)
+    return 0;
+
+    /* FIXME: I do not like the way subscriptions work right now. To be fixed. */
+
+#if 0
+    for (prev = NULL, node = context->subscriptions; node;
+            prev = node, node = node->next)
+    {
+        if (COAP_SUBSCRIPTION(node)->resource == key)
+        {
+            if (subscriber->sin6_port == COAP_SUBSCRIPTION(node)->subscriber.sin6_port
+                    && memcmp(&subscriber->sin6_addr,
+                            &COAP_SUBSCRIPTION(node)->subscriber.sin6_addr,
+                            sizeof(struct in6_addr)) == 0)
+            {
+
+                if (!prev)
+                {
+                    context->subscriptions = node->next;
+                    coap_free(COAP_SUBSCRIPTION(node)->token.s);
+                    coap_delete(node);
+                }
+                else
+                {
+                    prev->next = node->next;
+                    coap_free(COAP_SUBSCRIPTION(node)->token.s);
+                    coap_delete(node);
+                }
+                return 1;
+            }
+        }
+    }
+#endif
+
+    return 0;
+}
+#endif
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/subscribe.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/subscribe.h
new file mode 100644 (file)
index 0000000..7b7dc05
--- /dev/null
@@ -0,0 +1,201 @@
+/* subscribe.h -- subscription handling for CoAP
+ *                see draft-hartke-coap-observe-03
+ *
+ * Copyright (C) 2010--2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _COAP_SUBSCRIBE_H_
+#define _COAP_SUBSCRIBE_H_
+
+#include "config.h"
+#include "address.h"
+
+/** 
+ * @defgroup observe Resource observation
+ * @{
+ */
+
+#ifndef COAP_OBS_MAX_NON
+/**
+ * Number of notifications that may be sent non-confirmable before a
+ * confirmable message is sent to detect if observers are alive. The
+ * maximum allowed value here is @c 15.
+ */
+#define COAP_OBS_MAX_NON   5
+#endif /* COAP_OBS_MAX_NON */
+
+#ifndef COAP_OBS_MAX_FAIL
+/**
+ * Number of confirmable notifications that may fail (i.e. time out
+ * without being ACKed) before an observer is removed. The maximum
+ * value for COAP_OBS_MAX_FAIL is @c 3.
+ */
+#define COAP_OBS_MAX_FAIL  3
+#endif /* COAP_OBS_MAX_FAIL */
+
+/** Subscriber information */
+typedef struct coap_subscription_t
+{
+    struct coap_subscription_t *next; /**< next element in linked list */
+    coap_address_t subscriber; /**< address and port of subscriber */
+
+    unsigned int non :1; /**< send non-confirmable notifies if @c 1  */
+    unsigned int non_cnt :4; /**< up to 15 non-confirmable notifies allowed */
+    unsigned int fail_cnt :2; /**< up to 3 confirmable notifies can fail */
+    unsigned int dirty :1; /**< set if the notification temporarily could not be sent (in that case, the resource's partiallydirty flag is set too) */
+
+    size_t token_length; /**< actual length of token */
+    unsigned char token[8]; /**< token used for subscription */
+    /* @todo CON/NON flag, block size */
+} coap_subscription_t;
+
+void coap_subscription_init(coap_subscription_t *);
+
+#if 0
+#include "uthash.h"
+#include "uri.h"
+#include "list.h"
+#include "pdu.h"
+#include "net.h"
+
+#if 0
+typedef unsigned long coap_key_t;
+
+/** Used to indicate that a hashkey is invalid. */
+#define COAP_INVALID_HASHKEY ((coap_key_t)-1)
+
+typedef struct
+{
+    coap_uri_t *uri; /* unique identifier; memory is released by coap_delete_resource() */
+    UT_hash_handle hh; /**< hash handle (for internal use only) */
+    str *name; /* display name of the resource */
+    unsigned char mediatype; /* media type for resource representation */
+    unsigned int dirty:1; /* set to 1 if resource has changed */
+    unsigned int writable:1; /* set to 1 if resource can be changed using PUT */
+
+    /* cache-control */
+    unsigned char etag[4]; /* version identifier for this resource
+     * (zero terminated, first byte is zero if not set). */
+    unsigned int maxage; /* maximum cache time (zero means no Max-age option) */
+
+    /**
+     * Callback function that copies the resource representation into the provided data
+     * buffer (PDU payload). finished is set to 1 to indicate that this was the last block
+     * of buflen data for this resource representation, 0 means that data is not finished
+     * and a subsequent call with offset updated by buflen would yield more data (i.e.
+     * the M-bit of CoAP's block option must be set if offset and buflen are selected
+     * accordingly.
+     * When called, buflen must be set to the maximum length of buf that is to be filled
+     * with the mediatype representation of the resource identified by uri.
+     * The mediatype must be set to the requested mediatype of COAP_MEDIATYPE_ANY if
+     * none was given. On return, the mediatype will be set to the type that is
+     * actually used.
+     * The return value indicates the result code that should be used in a response to
+     * this function.
+     */
+    int (*data)(coap_uri_t *uri, unsigned char *mediatype, unsigned int offset, unsigned char *buf, unsigned int *buflen, int *finished);
+}coap_resource_t;
+#endif
+
+typedef struct
+{
+    coap_key_t resource; /* hash key for subscribed resource */
+    time_t expires; /* expiry time of subscription */
+
+    coap_address_t subscriber; /**< subscriber's address */
+
+    str token; /**< subscription token */
+}coap_subscription_t;
+
+#define COAP_RESOURCE(node) ((coap_resource_t *)(node)->data)
+#define COAP_SUBSCRIPTION(node) ((coap_subscription_t *)(node)->data)
+
+/** Checks subscribed resources for updates and notifies subscribers of changes. */
+void coap_check_resource_list(coap_context_t *context);
+
+/** Removes expired subscriptions. */
+void coap_check_subscriptions(coap_context_t *context);
+
+#if 0
+/**
+ * Adds specified resource to the resource observation list. Returns a
+ * unique key for the resource. The alloceted memory is released when
+ * the resource is destroyed with coap_delete_resource().
+ */
+coap_key_t coap_add_resource(coap_context_t *context, coap_resource_t *);
+
+/**
+ * Deletes the resource that is identified by key. Returns 1 if the resource was
+ * removed, 0 on error (e.g. if no such resource exists).
+ */
+int coap_delete_resource(coap_context_t *context, coap_key_t key);
+#endif
+/**
+ * Creates a new subscription object filled with the given data. The storage
+ * allocated for this object must be released using coap_free(). */
+coap_subscription_t *coap_new_subscription(coap_context_t *context,
+        const coap_uri_t *resource,
+        const struct sockaddr *subscriber,
+        socklen_t addrlen,
+        time_t expiry);
+
+/**
+ * Adds the given subsription object to the observer list.
+ * @param context The CoAP context
+ * @param subscription A new subscription oobject created with coap_new_subscription()
+ * @return A unique hash key for this resource or COAP_INVALID_HASHKEY on error.
+ * The storage allocated for the subscription object is released when it is
+ * removed from the subscription list, unless the function has returned
+ * COAP_INVALID_HASHKEY. In this case, the storage must be released by the
+ * caller of this function.
+ */
+coap_key_t coap_add_subscription(coap_context_t *context,
+        coap_subscription_t *subscription);
+
+/**
+ * Returns the subscription from subscriber for the resource identified
+ * by hashkey. When token is not NULL the subscription must have the
+ * same token.
+ * @param context The CoAP context
+ * @param hashkey The unique key that identifies the subscription
+ * @param subscriber The subscriber's transport address
+ * @param token If not NULL, this specifies a token given by the
+ *              subscriber to identify its subscription.
+ * @return The requested subscription object or NULL when not found.
+ */
+coap_subscription_t * coap_find_subscription(coap_context_t *context,
+        coap_key_t hashkey,
+        struct sockaddr *subscriber,
+        str *token);
+/**
+ * Removes a subscription from the subscription list stored in context and
+ * releases the storage that was allocated for this subscription.
+ * @param context The CoAP context.
+ * @param haskey The unique key that identifies the subscription to remove.
+ * @return 1 if a subscription was removed, 0 otherwise.
+ */
+int coap_delete_subscription(coap_context_t *context,
+        coap_key_t hashkey,
+        struct sockaddr *subscriber);
+
+/** Returns a unique hash for the specified URI or COAP_INVALID_HASHKEY on error. */
+coap_key_t coap_uri_hash(const coap_uri_t *uri);
+
+/** Returns a unique hash for the specified subscription or COAP_INVALID_HASHKEY on error. */
+coap_key_t coap_subscription_hash(coap_subscription_t *subscription);
+#if 0
+/** Returns the resource identified by key or NULL if not found. */
+coap_resource_t *coap_get_resource_from_key(coap_context_t *ctx, coap_key_t key);
+
+/** Returns the resource identified by uri or NULL if not found. */
+coap_resource_t *coap_get_resource(coap_context_t *ctx, coap_uri_t *uri);
+#endif
+
+#endif
+
+/** @} */
+
+#endif /* _COAP_SUBSCRIBE_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/t_list.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/t_list.h
new file mode 100644 (file)
index 0000000..47653d1
--- /dev/null
@@ -0,0 +1,152 @@
+/* t_list -- tinydtls lists
+ *
+ * Copyright (C) 2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use, copy,
+ * modify, merge, publish, distribute, sublicense, and/or sell copies
+ * of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+/**
+ * @file t_list.h
+ * @brief Wrappers for list structures and functions
+ */
+
+#ifndef _DTLS_LIST_H_
+#define _DTLS_LIST_H_
+
+#ifndef WITH_CONTIKI
+#include "uthash.h"
+#include "utlist.h"
+
+/* We define list structures and utility functions to be compatible
+ * with Contiki list structures. The Contiki list API is part of the
+ * Contiki operating system, and therefore the following licensing
+ * terms apply (taken from contiki/core/lib/list.h):
+ *
+ * Copyright (c) 2004, Swedish Institute of Computer Science.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the Institute nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * This file is part of the Contiki operating system.
+ *
+ * Author: Adam Dunkels <adam@sics.se>
+ *
+ * $ Id: list.h,v 1.5 2010/09/13 13:31:00 adamdunkels Exp $
+ */
+
+typedef void **list_t;
+struct list
+{
+    struct list *next;
+};
+
+#define LIST_CONCAT(s1, s2) s1##s2
+
+#define LIST_STRUCT(name)                      \
+  void *LIST_CONCAT(name, _list);              \
+  list_t name
+
+#define LIST_STRUCT_INIT(struct_ptr, name)  {                          \
+    (struct_ptr)->name = &((struct_ptr)->LIST_CONCAT(name,_list));     \
+    (struct_ptr)->LIST_CONCAT(name,_list) = NULL;                      \
+  }
+
+static inline void *
+list_head(list_t the_list)
+{
+    return *the_list;
+}
+
+static inline void list_remove(list_t the_list, void *item)
+{
+    if (list_head(the_list))
+        LL_DELETE(*(struct list **)the_list, (struct list *)item);
+}
+
+static inline void list_add(list_t the_list, void *item)
+{
+    list_remove(the_list, item);
+    LL_APPEND(*(struct list **)the_list, (struct list *)item);
+}
+
+static inline void list_push(list_t the_list, void *item)
+{
+    LL_PREPEND(*(struct list **)the_list, (struct list *)item);
+}
+
+static inline void *
+list_pop(list_t the_list)
+{
+    struct list *l;
+    l = (struct list*) *the_list;
+    if (l)
+        list_remove(the_list, l);
+
+    return l;
+}
+
+static inline void list_insert(list_t the_list, void *previtem, void *newitem)
+{
+    if (previtem == NULL)
+    {
+        list_push(the_list, newitem);
+    }
+    else
+    {
+        ((struct list *) newitem)->next = ((struct list *) previtem)->next;
+        ((struct list *) previtem)->next = (struct list*) newitem;
+    }
+}
+
+static inline void *
+list_item_next(void *item)
+{
+    return item == NULL ? NULL : ((struct list *) item)->next;
+}
+
+#else /* WITH_CONTIKI */
+#include "list.h"
+#endif /* WITH_CONTIKI */
+
+#endif /* _DTLS_LIST_H_ */
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/Makefile b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/Makefile
new file mode 100644 (file)
index 0000000..6397552
--- /dev/null
@@ -0,0 +1,57 @@
+# Makefile for libcoap
+#
+# Copyright (C) 2012 Olaf Bergmann <bergmann@tzi.org>
+#
+# This file is part of the CoAP library libcoap. Please see
+# README for terms of use. 
+
+# the library's version
+VERSION:=4.1.1
+
+# tools
+
+SHELL = /bin/sh
+MKDIR = mkdir
+
+abs_builddir = /connectivity/connectivity/src/bt_edr_adapter/libcoap-4.1.1/tests
+top_builddir = ..
+top_srcdir = ..
+# files and flags
+ifneq (,)
+  PROGRAMS:=testdriver
+endif
+SOURCES:= test_uri.c test_options.c test_pdu.c test_error_response.c \
+  test_sendqueue.c test_wellknown.c
+HEADERS:=$(SOURCES:.c=.h)
+OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
+CFLAGS:=-g -Wall -g -O2
+CPPFLAGS:=-I$(top_srcdir)  -DWITH_POSIX
+DISTDIR?=$(top_builddir)/libcoap-4.1.1
+FILES:=Makefile.in testdriver.c $(HEADERS) $(SOURCES)
+LDFLAGS:=-L$(top_builddir) 
+LDLIBS:=-lcunit 
+libcoap =$(top_builddir)/libcoap.a
+
+.PHONY: clean distclean
+
+.SUFFIXES:
+.SUFFIXES:      .c .o
+
+all:   $(PROGRAMS)
+
+check: 
+       echo DISTDIR: $(DISTDIR)
+       echo top_builddir: $(top_builddir)
+
+testdriver:    $(OBJECTS) $(libcoap)
+
+clean:
+       @rm -f $(PROGRAMS) $(OBJECTS)
+
+distclean:     clean
+       @rm -rf $(DISTDIR)
+       @rm -f *~ 
+
+dist:  $(FILES)
+       test -d $(DISTDIR)/tests || mkdir $(DISTDIR)/tests
+       cp $(FILES) $(DISTDIR)/tests
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/Makefile.in b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/Makefile.in
new file mode 100644 (file)
index 0000000..95da5c0
--- /dev/null
@@ -0,0 +1,57 @@
+# Makefile for libcoap
+#
+# Copyright (C) 2012 Olaf Bergmann <bergmann@tzi.org>
+#
+# This file is part of the CoAP library libcoap. Please see
+# README for terms of use. 
+
+# the library's version
+VERSION:=@PACKAGE_VERSION@
+
+# tools
+@SET_MAKE@
+SHELL = /bin/sh
+MKDIR = mkdir
+
+abs_builddir = @abs_builddir@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+# files and flags
+ifneq (,@TESTS@)
+  PROGRAMS:=testdriver
+endif
+SOURCES:= test_uri.c test_options.c test_pdu.c test_error_response.c \
+  test_sendqueue.c test_wellknown.c
+HEADERS:=$(SOURCES:.c=.h)
+OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
+CFLAGS:=-g -Wall @CFLAGS@
+CPPFLAGS:=-I$(top_srcdir) @CPPFLAGS@
+DISTDIR?=$(top_builddir)/@PACKAGE_TARNAME@-@PACKAGE_VERSION@
+FILES:=Makefile.in testdriver.c $(HEADERS) $(SOURCES)
+LDFLAGS:=-L$(top_builddir) @LDFLAGS@
+LDLIBS:=-lcunit @LIBS@
+libcoap =$(top_builddir)/libcoap.a
+
+.PHONY: clean distclean
+
+.SUFFIXES:
+.SUFFIXES:      .c .o
+
+all:   $(PROGRAMS)
+
+check: 
+       echo DISTDIR: $(DISTDIR)
+       echo top_builddir: $(top_builddir)
+
+testdriver:    $(OBJECTS) $(libcoap)
+
+clean:
+       @rm -f $(PROGRAMS) $(OBJECTS)
+
+distclean:     clean
+       @rm -rf $(DISTDIR)
+       @rm -f *~ 
+
+dist:  $(FILES)
+       test -d $(DISTDIR)/tests || mkdir $(DISTDIR)/tests
+       cp $(FILES) $(DISTDIR)/tests
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_error_response.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_error_response.c
new file mode 100644 (file)
index 0000000..fad0941
--- /dev/null
@@ -0,0 +1,330 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <assert.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <coap.h>
+#include "test_error_response.h"
+
+coap_pdu_t *pdu; /* Holds the request PDU for most tests */
+coap_opt_filter_t opts; /* option filter used for generating responses */
+
+/************************************************************************
+ ** PDU decoder
+ ************************************************************************/
+
+/* FIXME: handle COAP_ERROR_PHRASE_LENGTH == 0 */
+
+void t_error_response1(void)
+{
+    char teststr[] =
+    { 0x60, 0x80, 0x12, 0x34, 0xff, 'B', 'a', 'd', ' ', 'R', 'e', 'q', 'u', 'e', 's', 't' };
+    coap_pdu_t *response;
+
+    coap_pdu_clear(pdu, pdu->max_size);
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    pdu->hdr->id = htons(0x1234);
+
+    /* result = coap_add_token(pdu, 5, (unsigned char *)"token"); */
+    coap_option_filter_clear(opts);
+    response = coap_new_error_response(pdu, COAP_RESPONSE_CODE(400), opts);
+
+    CU_ASSERT_PTR_NOT_NULL(response);
+
+    CU_ASSERT(response->length == sizeof(teststr));
+    CU_ASSERT(response->hdr->version == 1);
+    CU_ASSERT(response->hdr->type == COAP_MESSAGE_ACK);
+    CU_ASSERT(response->hdr->token_length == 0);
+    CU_ASSERT(response->hdr->code == 0x80);
+    CU_ASSERT(pdu->hdr->id == htons(0x1234));
+
+    CU_ASSERT(memcmp(response->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_error_response2(void)
+{
+    char teststr[] =
+    { 0x55, 0x84, 0x12, 0x34, 't', 'o', 'k', 'e', 'n', 0xff, 'N', 'o', 't', ' ', 'F', 'o', 'u', 'n',
+            'd' };
+    coap_pdu_t *response;
+
+    coap_pdu_clear(pdu, pdu->max_size);
+    pdu->hdr->type = COAP_MESSAGE_NON;
+    pdu->hdr->id = htons(0x1234);
+    coap_add_token(pdu, 5, (unsigned char *) "token");
+    coap_add_option(pdu, COAP_OPTION_URI_HOST, 4, (unsigned char *) "time");
+
+    coap_option_filter_clear(opts);
+    response = coap_new_error_response(pdu, COAP_RESPONSE_CODE(404), opts);
+
+    CU_ASSERT_PTR_NOT_NULL(response);
+
+    CU_ASSERT(response->length == sizeof(teststr));
+    CU_ASSERT(response->hdr->version == 1);
+    CU_ASSERT(response->hdr->type == COAP_MESSAGE_NON);
+    CU_ASSERT(response->hdr->token_length == 5);
+    CU_ASSERT(response->hdr->code == 0x84);
+
+    CU_ASSERT(memcmp(response->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_error_response3(void)
+{
+    const unsigned char code = COAP_RESPONSE_CODE(402);
+    char teststr[] =
+    { 0x65, code, 0x00, 0x00, 't', 'o', 'k', 'e', 'n', 0x90, 0xff, 'B', 'a', 'd', ' ', 'O', 'p',
+            't', 'i', 'o', 'n' };
+    coap_pdu_t *response;
+
+    coap_pdu_clear(pdu, pdu->max_size);
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    coap_add_token(pdu, 5, (unsigned char *) "token");
+    /* coap_add_option(pdu, COAP_OPTION_URI_HOST, 4, (unsigned char *)"time"); */
+
+    /* unknown critical option 9 */
+    coap_add_option(pdu, 9, 0, NULL);
+
+    coap_option_filter_clear(opts);
+    coap_option_setb(opts, 9);
+    response = coap_new_error_response(pdu, code, opts);
+
+    CU_ASSERT_PTR_NOT_NULL(response);
+
+    CU_ASSERT(response->length == sizeof(teststr));
+    CU_ASSERT(response->hdr->version == 1);
+    CU_ASSERT(response->hdr->type == COAP_MESSAGE_ACK);
+    CU_ASSERT(response->hdr->token_length == 5);
+    CU_ASSERT(response->hdr->code == code);
+
+    CU_ASSERT(memcmp(response->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_error_response4(void)
+{
+    const unsigned char code = COAP_RESPONSE_CODE(402);
+    unsigned char optval[] =
+    { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b };
+    char teststr[] =
+    { 0x65, code, 0x00, 0x00, 't', 'o', 'k', 'e', 'n', 0x9c, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05,
+            0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 'B', 'a', 'd', ' ', 'O', 'p', 't', 'i', 'o',
+            'n' };
+    coap_pdu_t *response;
+
+    coap_pdu_clear(pdu, pdu->max_size);
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    coap_add_token(pdu, 5, (unsigned char *) "token");
+    /* coap_add_option(pdu, COAP_OPTION_URI_HOST, 4, (unsigned char *)"time"); */
+
+    /* unknown critical option 9 */
+    coap_add_option(pdu, 9, sizeof(optval), optval);
+
+    coap_option_filter_clear(opts);
+    coap_option_setb(opts, 9);
+    response = coap_new_error_response(pdu, code, opts);
+
+    CU_ASSERT_PTR_NOT_NULL(response);
+
+    CU_ASSERT(response->length == sizeof(teststr));
+    CU_ASSERT(response->hdr->version == 1);
+    CU_ASSERT(response->hdr->type == COAP_MESSAGE_ACK);
+    CU_ASSERT(response->hdr->token_length == 5);
+    CU_ASSERT(response->hdr->code == code);
+
+    CU_ASSERT(memcmp(response->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_error_response5(void)
+{
+    const unsigned char code = COAP_RESPONSE_CODE(402);
+    unsigned char optval[] =
+    { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
+            0x0f, 0x10, 0x11, 0x12 };
+    char teststr[] =
+    { 0x65, code, 0x00, 0x00, 't', 'o', 'k', 'e', 'n', 0x9d, 0x06, 0x00, 0x01, 0x02, 0x03, 0x04,
+            0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12,
+            0xff, 'B', 'a', 'd', ' ', 'O', 'p', 't', 'i', 'o', 'n' };
+    coap_pdu_t *response;
+
+    coap_pdu_clear(pdu, pdu->max_size);
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    coap_add_token(pdu, 5, (unsigned char *) "token");
+    /* coap_add_option(pdu, COAP_OPTION_URI_HOST, 4, (unsigned char *)"time"); */
+
+    /* unknown critical option 9 */
+    coap_add_option(pdu, 9, sizeof(optval), optval);
+
+    coap_option_filter_clear(opts);
+    coap_option_setb(opts, 9);
+    response = coap_new_error_response(pdu, code, opts);
+
+    CU_ASSERT_PTR_NOT_NULL(response);
+
+    CU_ASSERT(response->length == sizeof(teststr));
+    CU_ASSERT(response->hdr->version == 1);
+    CU_ASSERT(response->hdr->type == COAP_MESSAGE_ACK);
+    CU_ASSERT(response->hdr->token_length == 5);
+    CU_ASSERT(response->hdr->code == code);
+
+    CU_ASSERT(memcmp(response->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_error_response6(void)
+{
+    const unsigned char code = COAP_RESPONSE_CODE(402);
+    unsigned char optval[] =
+    { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
+            0x0f, 0x10, 0x11, 0x12 };
+    char teststr[] =
+    { 0x65, code, 0x00, 0x00, 't', 'o', 'k', 'e', 'n', 0xdd, 0x0a, 0x06, 0x00, 0x01, 0x02, 0x03,
+            0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11,
+            0x12, 0xff, 'B', 'a', 'd', ' ', 'O', 'p', 't', 'i', 'o', 'n' };
+    coap_pdu_t *response;
+
+    coap_pdu_clear(pdu, pdu->max_size);
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    coap_add_token(pdu, 5, (unsigned char *) "token");
+    /* coap_add_option(pdu, COAP_OPTION_URI_HOST, 4, (unsigned char *)"time"); */
+
+    /* unknown critical option 23 */
+    coap_add_option(pdu, 23, sizeof(optval), optval);
+
+    coap_option_filter_clear(opts);
+    coap_option_setb(opts, 23);
+    response = coap_new_error_response(pdu, code, opts);
+
+    CU_ASSERT_PTR_NOT_NULL(response);
+
+    CU_ASSERT(response->length == sizeof(teststr));
+    CU_ASSERT(response->hdr->version == 1);
+    CU_ASSERT(response->hdr->type == COAP_MESSAGE_ACK);
+    CU_ASSERT(response->hdr->token_length == 5);
+    CU_ASSERT(response->hdr->code == code);
+
+    CU_ASSERT(memcmp(response->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_error_response7(void)
+{
+    const unsigned char code = COAP_RESPONSE_CODE(402);
+    unsigned char optval[] =
+    { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
+            0x0f, 0x10, 0x11, 0x12 };
+    char teststr[] =
+    { 0x65, code, 0x00, 0x00, 't', 'o', 'k', 'e', 'n', 0xdd, 0x0a, 0x06, 0x00, 0x01, 0x02, 0x03,
+            0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11,
+            0x12, 0xff, 'B', 'a', 'd', ' ', 'O', 'p', 't', 'i', 'o', 'n' };
+    coap_pdu_t *response;
+
+    coap_pdu_clear(pdu, pdu->max_size);
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    coap_add_token(pdu, 5, (unsigned char *) "token");
+    /* known option 11 */
+    coap_add_option(pdu, 11, 4, (unsigned char *) "time");
+
+    /* unknown critical option 23 */
+    coap_add_option(pdu, 23, sizeof(optval), optval);
+
+    coap_option_filter_clear(opts);
+    coap_option_setb(opts, 23);
+    response = coap_new_error_response(pdu, code, opts);
+
+    CU_ASSERT_PTR_NOT_NULL(response);
+
+    CU_ASSERT(response->length == sizeof(teststr));
+    CU_ASSERT(response->hdr->version == 1);
+    CU_ASSERT(response->hdr->type == COAP_MESSAGE_ACK);
+    CU_ASSERT(response->hdr->token_length == 5);
+    CU_ASSERT(response->hdr->code == code);
+
+    CU_ASSERT(memcmp(response->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_error_response8(void)
+{
+    const unsigned char code = COAP_RESPONSE_CODE(503);
+    char teststr[] =
+    { 0x65, code, 0x00, 0x00, 't', 'o', 'k', 'e', 'n', 0xe0, 0x02, 0xdc, 0xd0, 0x00, 0xff, 'S', 'e',
+            'r', 'v', 'i', 'c', 'e', ' ', 'U', 'n', 'a', 'v', 'a', 'i', 'l', 'a', 'b', 'l', 'e' };
+    coap_pdu_t *response;
+
+    coap_pdu_clear(pdu, pdu->max_size);
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    coap_add_token(pdu, 5, (unsigned char *) "token");
+    /* known option 1000 */
+    coap_add_option(pdu, 1000, 0, NULL);
+
+    /* unknown options 1001 and 1014 */
+    coap_add_option(pdu, 1001, 0, NULL);
+    coap_add_option(pdu, 1014, 0, NULL);
+
+    /* known option 2000 */
+    coap_add_option(pdu, 2000, 0, NULL);
+
+    coap_option_filter_clear(opts);
+    coap_option_setb(opts, 1001);
+    coap_option_setb(opts, 1014);
+    response = coap_new_error_response(pdu, code, opts);
+
+    CU_ASSERT_PTR_NOT_NULL(response);
+
+    CU_ASSERT(response->length == sizeof(teststr));
+    CU_ASSERT(response->hdr->version == 1);
+    CU_ASSERT(response->hdr->type == COAP_MESSAGE_ACK);
+    CU_ASSERT(response->hdr->token_length == 5);
+    CU_ASSERT(response->hdr->code == code);
+
+    CU_ASSERT(memcmp(response->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+int t_error_response_tests_create(void)
+{
+    pdu = coap_pdu_init(0, 0, 0, COAP_MAX_PDU_SIZE);
+
+    return pdu == NULL;
+}
+
+int t_error_response_tests_remove(void)
+{
+    coap_delete_pdu(pdu);
+    return 0;
+}
+
+CU_pSuite t_init_error_response_tests(void)
+{
+    CU_pSuite suite[1];
+
+    suite[0] = CU_add_suite("error response generator", t_error_response_tests_create,
+            t_error_response_tests_remove);
+    if (!suite[0])
+    { /* signal error */
+        fprintf(stderr, "W: cannot add error response generator test suite (%s)\n",
+                CU_get_error_msg());
+
+        return NULL;
+    }
+
+#define ERROR_RESPONSE_TEST(s,t)                                       \
+  if (!CU_ADD_TEST(s,t)) {                                             \
+    fprintf(stderr, "W: cannot add error response generator test (%s)\n", \
+           CU_get_error_msg());                                        \
+  }
+
+    ERROR_RESPONSE_TEST(suite[0], t_error_response1);
+    ERROR_RESPONSE_TEST(suite[0], t_error_response2);
+    ERROR_RESPONSE_TEST(suite[0], t_error_response3);
+    ERROR_RESPONSE_TEST(suite[0], t_error_response4);
+    ERROR_RESPONSE_TEST(suite[0], t_error_response5);
+    ERROR_RESPONSE_TEST(suite[0], t_error_response6);
+    ERROR_RESPONSE_TEST(suite[0], t_error_response7);
+    ERROR_RESPONSE_TEST(suite[0], t_error_response8);
+
+    return suite[0];
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_error_response.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_error_response.h
new file mode 100644 (file)
index 0000000..2bab63c
--- /dev/null
@@ -0,0 +1,11 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <CUnit/CUnit.h>
+
+CU_pSuite t_init_error_response_tests(void);
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_options.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_options.c
new file mode 100644 (file)
index 0000000..de5b3a6
--- /dev/null
@@ -0,0 +1,853 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <coap.h>
+#include "test_options.h"
+
+/************************************************************************
+ ** decoder tests
+ ************************************************************************/
+
+void t_parse_option1(void)
+{
+    /* delta == 0, length == 0, value == 0 */
+    str teststr =
+    { 1, (unsigned char *) "" };
+
+    size_t result;
+    coap_option_t option;
+
+    /* result = coap_opt_parse(teststr.s, teststr.s + teststr.length, &option); */
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 1);
+    CU_ASSERT(option.delta == 0);
+    CU_ASSERT(option.length == 0);
+    /* FIXME: value? */
+}
+
+void t_parse_option2(void)
+{
+    /* delta == 12, length == 1, value == 0 */
+    str teststr =
+    { 2, (unsigned char *) "\xc1" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 2);
+    CU_ASSERT(option.delta == 12);
+    CU_ASSERT(option.length == 1);
+    CU_ASSERT(option.value == teststr.s + 1);
+}
+
+void t_parse_option3(void)
+{
+    /* delta == 3, length == 12, value == 0 */
+    str teststr =
+    { 13, (unsigned char *) "\x3c\x00\x01\x02\x03\x04"
+            "\x05\x06\x07\x08\x09\x0a\x0b" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 13);
+    CU_ASSERT(option.delta == 3);
+    CU_ASSERT(option.length == 12);
+    CU_ASSERT(option.value == teststr.s + 1);
+    /* CU_ASSERT(memcmp(option.value, teststr.s + 1, 12) == 0); */
+}
+
+void t_parse_option4(void)
+{
+    /* delta == 15, length == 3, value == 0 */
+    str teststr =
+    { 2, (unsigned char *) "\xf3" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_option5(void)
+{
+    /* delta == 3, length == 15, value == 0 */
+    str teststr =
+    { 2, (unsigned char *) "\x3f" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_option6(void)
+{
+    /* delta == 15, length == 15 */
+    str teststr =
+    { 1, (unsigned char *) "\xff" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_option7(void)
+{
+    /* delta == 20, length == 0 */
+    str teststr =
+    { 2, (unsigned char *) "\xd0\x07" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 2);
+    CU_ASSERT(option.delta == 20);
+    CU_ASSERT(option.length == 0);
+}
+
+void t_parse_option8(void)
+{
+    /* delta == 780, length == 0 */
+    str teststr =
+    { 3, (unsigned char *) "\xe0\x01\xff" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 3);
+    CU_ASSERT(option.delta == 780);
+    CU_ASSERT(option.length == 0);
+}
+
+void t_parse_option9(void)
+{
+    /* delta == 65535, length == 0 */
+    str teststr =
+    { 3, (unsigned char *) "\xe0\xfe\xf2" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 3);
+    CU_ASSERT(option.delta == 65535);
+}
+
+void t_parse_option10(void)
+{
+    /* delta > 65535 (illegal), length == 0 */
+    str teststr =
+    { 3, (unsigned char *) "\xe0\xff\xff" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_option11(void)
+{
+    /* illegal delta value (option too short) */
+    str teststr =
+    { 1, (unsigned char *) "\xd0" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_option12(void)
+{
+    /* delta == 280, length == 500 */
+    str teststr =
+    { 3, (unsigned char *) "\xee\xff\x0b" };
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_option13(void)
+{
+    /* delta == 280, length == 500 */
+    unsigned char _data[505];
+    str teststr =
+    { sizeof(_data), _data };
+    teststr.s[0] = 0xee;
+    teststr.s[1] = 0x00;
+    teststr.s[2] = 0x0b;
+    teststr.s[3] = 0x00;
+    teststr.s[4] = 0xe7;
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(teststr.s, teststr.length, &option);
+    CU_ASSERT(result == sizeof(_data));
+    CU_ASSERT(option.delta == 280);
+    CU_ASSERT(option.length == 500);
+    CU_ASSERT(option.value == &_data[5]);
+}
+
+void t_parse_option14(void)
+{
+    /* delta == 268, length == 65535 */
+    unsigned char *data;
+    unsigned int length = 4 + 65535;
+
+    data = (unsigned char *) malloc(length);
+    if (!data)
+    {
+        CU_FAIL("internal error in test framework -- insufficient memory\n");
+        return;
+    }
+
+    data[0] = 0xde;
+    data[1] = 0xff;
+    data[2] = 0xfe;
+    data[3] = 0xf2;
+
+    size_t result;
+    coap_option_t option;
+
+    result = coap_opt_parse(data, length, &option);
+    CU_ASSERT(result == length);
+    CU_ASSERT(option.delta == 268);
+    CU_ASSERT(option.length == 65535);
+    CU_ASSERT(option.value == &data[4]);
+}
+
+/************************************************************************
+ ** encoder tests
+ ************************************************************************/
+
+void t_encode_option1(void)
+{
+    char teststr[] =
+    { 0x00 };
+    unsigned char buf[40];
+    size_t result;
+
+    result = coap_opt_setheader((coap_opt_t *) buf, sizeof(buf), 0, 0);
+    CU_ASSERT(result == sizeof(teststr));
+
+    CU_ASSERT(memcmp(buf, teststr, result) == 0);
+}
+
+void t_encode_option2(void)
+{
+    char teststr[] =
+    { 0x5d, 0xff };
+    unsigned char buf[40];
+    size_t result;
+
+    result = coap_opt_setheader((coap_opt_t *) buf, sizeof(buf), 5, 268);
+    CU_ASSERT(result == sizeof(teststr));
+
+    CU_ASSERT(memcmp(buf, teststr, result) == 0);
+}
+
+void t_encode_option3(void)
+{
+    char teststr[] =
+    { 0xd1, 0x01 };
+    unsigned char buf[40];
+    size_t result;
+
+    result = coap_opt_setheader((coap_opt_t *) buf, sizeof(buf), 14, 1);
+    CU_ASSERT(result == sizeof(teststr));
+
+    CU_ASSERT(memcmp(buf, teststr, result) == 0);
+}
+
+void t_encode_option4(void)
+{
+    char teststr[] =
+    { 0xdd, 0xff, 0xab };
+    unsigned char buf[40];
+    size_t result;
+
+    result = coap_opt_setheader((coap_opt_t *) buf, sizeof(buf), 268, 184);
+    CU_ASSERT(result == sizeof(teststr));
+
+    CU_ASSERT(memcmp(buf, teststr, result) == 0);
+}
+
+void t_encode_option5(void)
+{
+    char teststr[] =
+    { 0xed, 0x13, 0x00, 0xff };
+    unsigned char buf[40];
+    size_t result;
+
+    result = coap_opt_setheader((coap_opt_t *) buf, sizeof(buf), 5133, 268);
+    CU_ASSERT(result == sizeof(teststr));
+
+    CU_ASSERT(memcmp(buf, teststr, result) == 0);
+}
+
+void t_encode_option6(void)
+{
+    char teststr[] =
+    { 0xee, 0xfe, 0xf2, 0xfe, 0xf2 };
+    unsigned char buf[40];
+    size_t result;
+
+    result = coap_opt_setheader((coap_opt_t *) buf, sizeof(buf), 65535, 65535);
+    CU_ASSERT(result == sizeof(teststr));
+
+    CU_ASSERT(memcmp(buf, teststr, result) == 0);
+}
+
+void t_encode_option7(void)
+{
+    char teststr[] =
+    { 0x35, 'v', 'a', 'l', 'u', 'e' };
+    const size_t valoff = 1;
+    unsigned char buf[40];
+    size_t result;
+
+    result = coap_opt_encode((coap_opt_t *) buf, sizeof(buf), 3, (unsigned char *) teststr + valoff,
+            sizeof(teststr) - valoff);
+
+    CU_ASSERT(result == sizeof(teststr));
+
+    CU_ASSERT(memcmp(buf, teststr, result) == 0);
+}
+
+void t_encode_option8(void)
+{
+    /* value does not fit in message buffer */
+    unsigned char buf[40];
+    size_t result;
+
+    result = coap_opt_encode((coap_opt_t *) buf, 8, 15, (unsigned char *) "something", 9);
+
+    CU_ASSERT(result == 0);
+
+    result = coap_opt_encode((coap_opt_t *) buf, 1, 15, (unsigned char *) "something", 9);
+
+    CU_ASSERT(result == 0);
+}
+
+/************************************************************************
+ ** accessor tests
+ ************************************************************************/
+
+void t_access_option1(void)
+{
+    const char teststr[] =
+    { 0x12, 'a', 'b' };
+
+    CU_ASSERT(coap_opt_delta((coap_opt_t *) teststr) == 1);
+    CU_ASSERT(coap_opt_length((coap_opt_t *) teststr) == 2);
+    CU_ASSERT_PTR_EQUAL(coap_opt_value((coap_opt_t *) teststr), teststr + 1);
+    CU_ASSERT(coap_opt_size((coap_opt_t *) teststr) == sizeof(teststr));
+}
+
+void t_access_option2(void)
+{
+    const char teststr[] =
+    { 0xe2, 0x18, 0xfd, 'a', 'b' };
+
+    CU_ASSERT(coap_opt_delta((coap_opt_t *) teststr) == 6666);
+    CU_ASSERT(coap_opt_length((coap_opt_t *) teststr) == 2);
+    CU_ASSERT_PTR_EQUAL(coap_opt_value((coap_opt_t *) teststr), teststr + 3);
+    CU_ASSERT(coap_opt_size((coap_opt_t *) teststr) == sizeof(teststr));
+}
+
+void t_access_option3(void)
+{
+    const char teststr[] =
+    { 0xed, 0x18, 0x0a, 0x00, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm' };
+
+    CU_ASSERT(coap_opt_delta((coap_opt_t *) teststr) == 6423);
+    CU_ASSERT(coap_opt_length((coap_opt_t *) teststr) == 13);
+    CU_ASSERT_PTR_EQUAL(coap_opt_value((coap_opt_t *) teststr), teststr + 4);
+    CU_ASSERT(coap_opt_size((coap_opt_t *) teststr) == sizeof(teststr));
+}
+
+void t_access_option4(void)
+{
+    const char teststr[] =
+    { 0xde, 0xff, 0xfe, 0xf2, 'a', 'b', 'c' };
+
+    CU_ASSERT(coap_opt_delta((coap_opt_t *) teststr) == 268);
+    CU_ASSERT(coap_opt_length((coap_opt_t *) teststr) == 65535);
+    CU_ASSERT_PTR_EQUAL(coap_opt_value((coap_opt_t *) teststr), teststr + 4);
+    CU_ASSERT(coap_opt_size((coap_opt_t *) teststr) == 65535 + 4);
+}
+
+void t_access_option5(void)
+{
+    const char teststr[] =
+    { 0xee, 0xfe, 0xf2, 0x00, 0xdd, 'a', 'b', 'c' };
+
+    CU_ASSERT(coap_opt_delta((coap_opt_t *) teststr) == 65535);
+    CU_ASSERT(coap_opt_length((coap_opt_t *) teststr) == 490);
+    CU_ASSERT_PTR_EQUAL(coap_opt_value((coap_opt_t *) teststr), teststr + 5);
+    CU_ASSERT(coap_opt_size((coap_opt_t *) teststr) == 495);
+}
+
+void t_access_option6(void)
+{
+    const char teststr[] =
+    { 0xf2, 'a', 'b' };
+
+    CU_ASSERT(coap_opt_delta((coap_opt_t *) teststr) == 0);
+    CU_ASSERT(coap_opt_length((coap_opt_t *) teststr) == 0);
+    CU_ASSERT_PTR_EQUAL(coap_opt_value((coap_opt_t *) teststr), NULL);
+    CU_ASSERT(coap_opt_size((coap_opt_t *) teststr) == 0);
+}
+
+void t_access_option7(void)
+{
+    const char teststr[] =
+    { 0x2f, 'a', 'b' };
+
+    CU_ASSERT(coap_opt_delta((coap_opt_t *) teststr) == 2);
+    CU_ASSERT(coap_opt_length((coap_opt_t *) teststr) == 0);
+    CU_ASSERT_PTR_EQUAL(coap_opt_value((coap_opt_t *) teststr), NULL);
+    CU_ASSERT(coap_opt_size((coap_opt_t *) teststr) == 0);
+}
+
+/************************************************************************
+ ** accessor tests
+ ************************************************************************/
+
+#define TEST_MAX_SIZE 1000
+
+void t_iterate_option1(void)
+{
+    /* CoAP PDU without token, options, or data */
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x00, 0x00, 0x00, 0x00 };
+
+    coap_pdu_t pdu =
+    { .max_size = TEST_MAX_SIZE, .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+    coap_opt_iterator_t oi, *result;
+    coap_opt_t *option;
+
+    result = coap_option_iterator_init(&pdu, &oi, COAP_OPT_ALL);
+
+    CU_ASSERT(result == NULL);
+    CU_ASSERT(oi.bad == 1);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 1);
+    CU_ASSERT(option == NULL);
+}
+
+void t_iterate_option2(void)
+{
+    /* CoAP PDU with token but without options and data */
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x03, 0x00, 0x00, 0x00, 't', 'o', 'k' };
+
+    coap_pdu_t pdu =
+    { .max_size = TEST_MAX_SIZE, .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+    coap_opt_iterator_t oi, *result;
+    coap_opt_t *option;
+
+    result = coap_option_iterator_init(&pdu, &oi, COAP_OPT_ALL);
+
+    CU_ASSERT(result == NULL);
+    CU_ASSERT(oi.bad == 1);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 1);
+    CU_ASSERT(option == NULL);
+}
+
+void t_iterate_option3(void)
+{
+    /* CoAP PDU with token and options */
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x03, 0x00, 0x00, 0x00, 't', 'o', 'k', 0x13, 'o', 'p', 't', 0x00, 0xd1, 0x10, 'x' };
+
+    coap_pdu_t pdu =
+    { .max_size = TEST_MAX_SIZE, .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+    coap_opt_iterator_t oi, *result;
+    coap_opt_t *option;
+
+    result = coap_option_iterator_init(&pdu, &oi, COAP_OPT_ALL);
+
+    CU_ASSERT_PTR_EQUAL(result, &oi);
+    CU_ASSERT(oi.bad == 0);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 1);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 7);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 1);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 11);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 30);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 12);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 1);
+    CU_ASSERT_PTR_EQUAL(option, NULL);
+}
+
+void t_iterate_option4(void)
+{
+    /* CoAP PDU with token, options, and data */
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x03, 0x00, 0x00, 0x00, 't', 'o', 'k', 0x13, 'o', 'p', 't', 0x00, 0xd1, 0x10, 'x', 0xff, 'd',
+            'a', 't', 'a' };
+
+    coap_pdu_t pdu =
+    { .max_size = TEST_MAX_SIZE, .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+    coap_opt_iterator_t oi, *result;
+    coap_opt_t *option;
+
+    result = coap_option_iterator_init(&pdu, &oi, COAP_OPT_ALL);
+
+    CU_ASSERT_PTR_EQUAL(result, &oi);
+    CU_ASSERT(oi.bad == 0);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 1);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 7);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 1);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 11);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 30);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 12);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 1);
+    CU_ASSERT_PTR_EQUAL(option, NULL);
+}
+
+void t_iterate_option5(void)
+{
+    /* CoAP PDU with malformed option */
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x00, 0x00, 0x00, 0x00, 0x52, 'o', 'p', 0xee, 0x12, 0x03, 0x00 };
+
+    coap_pdu_t pdu =
+    { .max_size = TEST_MAX_SIZE, .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+    coap_opt_iterator_t oi, *result;
+    coap_opt_t *option;
+
+    result = coap_option_iterator_init(&pdu, &oi, COAP_OPT_ALL);
+
+    CU_ASSERT_PTR_EQUAL(result, &oi);
+    CU_ASSERT(oi.bad == 0);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 5);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 4);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 1);
+    CU_ASSERT_PTR_EQUAL(option, NULL);
+}
+
+void t_iterate_option6(void)
+{
+    /* option filter */
+    /* CoAP PDU with token, options, and data */
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x00, 0x00, 0x00, 0x00, 0x80, 0x20, 0x00, 0x00, 0xc0, 0x00 };
+
+    coap_pdu_t pdu =
+    { .max_size = TEST_MAX_SIZE, .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+    coap_opt_iterator_t oi, *result;
+    coap_opt_t *option;
+    coap_opt_filter_t filter;
+
+    coap_option_filter_clear(filter);
+    coap_option_setb(filter, 10); /* option nr 10 only */
+    result = coap_option_iterator_init(&pdu, &oi, filter);
+
+    CU_ASSERT_PTR_EQUAL(result, &oi);
+    CU_ASSERT(oi.bad == 0);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 10);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 5);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 10);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 6);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 10);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 7);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 1);
+    CU_ASSERT_PTR_EQUAL(option, NULL);
+}
+
+void t_iterate_option7(void)
+{
+    /* option filter */
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x00, 0x00, 0x00, 0x00, 0x80, 0x20, 0x00, 0x00, 0xc0, 0x00, 0x10, 0x10, 0x00 };
+
+    coap_pdu_t pdu =
+    { .max_size = TEST_MAX_SIZE, .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+    coap_opt_iterator_t oi, *result;
+    coap_opt_t *option;
+    coap_opt_filter_t filter;
+
+    /* search options nr 8 and 22 */
+    coap_option_filter_clear(filter);
+    coap_option_setb(filter, 8);
+    coap_option_setb(filter, 22);
+    result = coap_option_iterator_init(&pdu, &oi, filter);
+
+    CU_ASSERT_PTR_EQUAL(result, &oi);
+    CU_ASSERT(oi.bad == 0);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 8);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 4);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 22);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 8);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT(oi.type == 22);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 9);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 1);
+    CU_ASSERT_PTR_EQUAL(option, NULL);
+}
+
+void t_iterate_option8(void)
+{
+    /* option filter */
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x00, 0x00, 0x00, 0x00, 0x80, 0x20, 0x00, 0x00, 0xc0, 0x00, 0x10, 0x10, 0x00 };
+
+    coap_pdu_t pdu =
+    { .max_size = TEST_MAX_SIZE, .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+    coap_opt_iterator_t oi, *result;
+    coap_opt_t *option;
+    coap_opt_filter_t filter;
+
+    /* search option nr 36 */
+    coap_option_filter_clear(filter);
+    coap_option_setb(filter, 36);
+    result = coap_option_iterator_init(&pdu, &oi, filter);
+
+    CU_ASSERT_PTR_EQUAL(result, &oi);
+    CU_ASSERT(oi.bad == 0);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 1);
+    CU_ASSERT_PTR_EQUAL(option, NULL);
+}
+
+void t_iterate_option9(void)
+{
+    /* options filter: option number too large for filter */
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x00, 0x00, 0x00, 0x00, 0x80, 0x20, 0x00, 0x00, 0xc0, 0x00, 0x10, 0x10, 0x00 };
+
+    coap_pdu_t pdu =
+    { .max_size = TEST_MAX_SIZE, .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+    coap_opt_iterator_t oi, *result;
+    coap_opt_t *option;
+    coap_opt_filter_t filter;
+
+    /* search option nr 100 */
+    coap_option_filter_clear(filter);
+    coap_option_setb(filter, 100);
+    result = coap_option_iterator_init(&pdu, &oi, filter);
+
+    CU_ASSERT_PTR_EQUAL(result, &oi);
+    CU_ASSERT(oi.bad == 0);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 1);
+    CU_ASSERT_PTR_EQUAL(option, NULL);
+}
+
+void t_iterate_option10(void)
+{
+    /* options filter: option numbers in PDU exceed filter size */
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x00, 0x00, 0x00, 0x00, 0x80, 0x20, 0x00, 0x00, 0xd0, 0x26, 0xe0, 0x10, 0x00 };
+
+    coap_pdu_t pdu =
+    { .max_size = TEST_MAX_SIZE, .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+    coap_opt_iterator_t oi, *result;
+    coap_opt_t *option;
+    coap_opt_filter_t filter;
+
+    /* search option nr 61 */
+    coap_option_filter_clear(filter);
+    coap_option_setb(filter, 61);
+    result = coap_option_iterator_init(&pdu, &oi, filter);
+
+    CU_ASSERT_PTR_EQUAL(result, &oi);
+    CU_ASSERT(oi.bad == 0);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 0);
+    CU_ASSERT_PTR_EQUAL(option, teststr + 8);
+
+    option = coap_option_next(&oi);
+    CU_ASSERT(oi.bad == 1);
+    CU_ASSERT_PTR_EQUAL(option, NULL);
+}
+
+/************************************************************************
+ ** initialization 
+ ************************************************************************/
+
+CU_pSuite t_init_option_tests(void)
+{
+    CU_pSuite suite[4];
+
+    suite[0] = CU_add_suite("option parser", NULL, NULL);
+    if (!suite[0])
+    { /* signal error */
+        fprintf(stderr, "W: cannot add option parser test suite (%s)\n", CU_get_error_msg());
+
+        return NULL;
+    }
+
+#define OPTION_TEST(n,s)                                                     \
+  if (!CU_add_test(suite[0], s, t_parse_option##n)) {        \
+    fprintf(stderr, "W: cannot add option parser test (%s)\n",       \
+           CU_get_error_msg());                                      \
+  }
+
+    OPTION_TEST(1, "parse option #1");
+    OPTION_TEST(2, "parse option #2");
+    OPTION_TEST(3, "parse option #3");
+    OPTION_TEST(4, "parse option #4");
+    OPTION_TEST(5, "parse option #5");
+    OPTION_TEST(6, "parse option #6");
+    OPTION_TEST(7, "parse option #7");
+    OPTION_TEST(8, "parse option #8");
+    OPTION_TEST(9, "parse option #9");
+    OPTION_TEST(10, "parse option #10");
+    OPTION_TEST(11, "parse option #11");
+    OPTION_TEST(12, "parse option #12");
+    OPTION_TEST(13, "parse option #13");
+    OPTION_TEST(14, "parse option #14");
+
+    if ((suite[1] = CU_add_suite("option encoder", NULL, NULL)))
+    {
+#define OPTION_ENCODER_TEST(n,s)                             \
+    if (!CU_add_test(suite[1], s, t_encode_option##n)) {                     \
+      fprintf(stderr, "W: cannot add option encoder test (%s)\n",     \
+             CU_get_error_msg());                                    \
+    }
+
+        OPTION_ENCODER_TEST(1, "encode option #1");
+        OPTION_ENCODER_TEST(2, "encode option #2");
+        OPTION_ENCODER_TEST(3, "encode option #3");
+        OPTION_ENCODER_TEST(4, "encode option #4");
+        OPTION_ENCODER_TEST(5, "encode option #5");
+        OPTION_ENCODER_TEST(6, "encode option #6");
+        OPTION_ENCODER_TEST(7, "encode option #7");
+        OPTION_ENCODER_TEST(8, "encode option #8");
+
+    }
+    else
+    {
+        fprintf(stderr, "W: cannot add option encoder test suite (%s)\n", CU_get_error_msg());
+    }
+
+    if ((suite[2] = CU_add_suite("option accessors", NULL, NULL)))
+    {
+#define OPTION_ACCESSOR_TEST(n,s)                            \
+    if (!CU_add_test(suite[2], s, t_access_option##n)) {                     \
+      fprintf(stderr, "W: cannot add option accessor function test (%s)\n",     \
+             CU_get_error_msg());                                    \
+    }
+
+        OPTION_ACCESSOR_TEST(1, "access option #1");
+        OPTION_ACCESSOR_TEST(2, "access option #2");
+        OPTION_ACCESSOR_TEST(3, "access option #3");
+        OPTION_ACCESSOR_TEST(4, "access option #4");
+        OPTION_ACCESSOR_TEST(5, "access option #5");
+        OPTION_ACCESSOR_TEST(6, "access option #6");
+        OPTION_ACCESSOR_TEST(7, "access option #7");
+
+    }
+    else
+    {
+        fprintf(stderr, "W: cannot add option acessor function test suite (%s)\n",
+                CU_get_error_msg());
+    }
+
+    if ((suite[3] = CU_add_suite("option iterator", NULL, NULL)))
+    {
+#define OPTION_ITERATOR_TEST(n,s)                            \
+    if (!CU_add_test(suite[3], s, t_iterate_option##n)) {                    \
+      fprintf(stderr, "W: cannot add option iterator test (%s)\n",     \
+             CU_get_error_msg());                                    \
+    }
+
+        OPTION_ITERATOR_TEST(1, "option iterator #1");
+        OPTION_ITERATOR_TEST(2, "option iterator #2");
+        OPTION_ITERATOR_TEST(3, "option iterator #3");
+        OPTION_ITERATOR_TEST(4, "option iterator #4");
+        OPTION_ITERATOR_TEST(5, "option iterator #5");
+        OPTION_ITERATOR_TEST(6, "option iterator #6");
+        OPTION_ITERATOR_TEST(7, "option iterator #7");
+        OPTION_ITERATOR_TEST(8, "option iterator #8");
+        OPTION_ITERATOR_TEST(9, "option iterator #9");
+        OPTION_ITERATOR_TEST(10, "option iterator #10");
+
+    }
+    else
+    {
+        fprintf(stderr, "W: cannot add option iterator test suite (%s)\n", CU_get_error_msg());
+    }
+
+    return suite[0];
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_options.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_options.h
new file mode 100644 (file)
index 0000000..3ffcefe
--- /dev/null
@@ -0,0 +1,11 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <CUnit/CUnit.h>
+
+CU_pSuite t_init_option_tests(void);
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_pdu.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_pdu.c
new file mode 100644 (file)
index 0000000..2592a32
--- /dev/null
@@ -0,0 +1,660 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <assert.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <coap.h>
+#include "test_pdu.h"
+
+coap_pdu_t *pdu; /* Holds the parsed PDU for most tests */
+
+/************************************************************************
+ ** PDU decoder
+ ************************************************************************/
+
+void t_parse_pdu1(void)
+{
+    char teststr[] =
+    { 0x40, 0x01, 0x93, 0x34 };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result > 0);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(pdu->hdr->version == 1);
+    CU_ASSERT(pdu->hdr->type == COAP_MESSAGE_CON);
+    CU_ASSERT(pdu->hdr->token_length == 0);
+    CU_ASSERT(pdu->hdr->code == COAP_REQUEST_GET);
+    CU_ASSERT(memcmp(&pdu->hdr->id, teststr + 2, 2) == 0);
+    CU_ASSERT_PTR_NULL(pdu->data);
+}
+
+void t_parse_pdu2(void)
+{
+    char teststr[] =
+    { 0x55, 0x69, 0x12, 0x34, 't', 'o', 'k', 'e', 'n' };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result > 0);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(pdu->hdr->version == 1);
+    CU_ASSERT(pdu->hdr->type == COAP_MESSAGE_NON);
+    CU_ASSERT(pdu->hdr->token_length == 5);
+    CU_ASSERT(pdu->hdr->code == 0x69);
+    CU_ASSERT(memcmp(&pdu->hdr->id, teststr + 2, 2) == 0);
+    CU_ASSERT(memcmp(pdu->hdr->token, teststr + 4, 5) == 0);
+    CU_ASSERT_PTR_NULL(pdu->data);
+}
+
+void t_parse_pdu3(void)
+{
+    char teststr[] =
+    { 0x53, 0x69, 0x12, 0x34, 't', 'o', 'k', 'e', 'n' };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_pdu4(void)
+{
+    /* illegal token length */
+    char teststr[] =
+    { 0x59, 0x69, 0x12, 0x34, 't', 'o', 'k', 'e', 'n', '1', '2', '3', '4' };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result == 0);
+
+    teststr[0] = 0x5f;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_pdu5(void)
+{
+    /* PDU with options */
+    char teststr[] =
+    { 0x55, 0x73, 0x12, 0x34, 't', 'o', 'k', 'e', 'n', 0x00, 0xc1, 0x00 };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result > 0);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(pdu->hdr->version == 1);
+    CU_ASSERT(pdu->hdr->type == COAP_MESSAGE_NON);
+    CU_ASSERT(pdu->hdr->token_length == 5);
+    CU_ASSERT(pdu->hdr->code == 0x73);
+    CU_ASSERT(memcmp(&pdu->hdr->id, teststr + 2, 2) == 0);
+    CU_ASSERT(memcmp(pdu->hdr->token, teststr + 4, 5) == 0);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    /* FIXME: check options */
+}
+
+void t_parse_pdu6(void)
+{
+    /* PDU with options that exceed the PDU */
+    char teststr[] =
+    { 0x55, 0x73, 0x12, 0x34, 't', 'o', 'k', 'e', 'n', 0x00, 0xc1, 0x00, 0xae, 0xf0, 0x03 };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_pdu7(void)
+{
+    /* PDU with options and payload */
+    char teststr[] =
+    { 0x55, 0x73, 0x12, 0x34, 't', 'o', 'k', 'e', 'n', 0x00, 0xc1, 0x00, 0xff, 'p', 'a', 'y', 'l',
+            'o', 'a', 'd' };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result > 0);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(pdu->hdr->version == 1);
+    CU_ASSERT(pdu->hdr->type == COAP_MESSAGE_NON);
+    CU_ASSERT(pdu->hdr->token_length == 5);
+    CU_ASSERT(pdu->hdr->code == 0x73);
+    CU_ASSERT(memcmp(&pdu->hdr->id, teststr + 2, 2) == 0);
+    CU_ASSERT(memcmp(pdu->hdr->token, teststr + 4, 5) == 0);
+
+    /* FIXME: check options */
+
+    CU_ASSERT(pdu->data == (unsigned char *) pdu->hdr + 13);
+    CU_ASSERT(memcmp(pdu->data, teststr + 13, 7) == 0);
+}
+
+void t_parse_pdu8(void)
+{
+    /* PDU without options but with payload */
+    char teststr[] =
+    { 0x50, 0x73, 0x12, 0x34, 0xff, 'p', 'a', 'y', 'l', 'o', 'a', 'd' };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result > 0);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(pdu->hdr->version == 1);
+    CU_ASSERT(pdu->hdr->type == COAP_MESSAGE_NON);
+    CU_ASSERT(pdu->hdr->token_length == 0);
+    CU_ASSERT(pdu->hdr->code == 0x73);
+    CU_ASSERT(memcmp(&pdu->hdr->id, teststr + 2, 2) == 0);
+
+    /* FIXME: check options */
+
+    CU_ASSERT(pdu->data == (unsigned char *) pdu->hdr + 5);
+    CU_ASSERT(memcmp(pdu->data, teststr + 5, 7) == 0);
+}
+
+void t_parse_pdu9(void)
+{
+    /* PDU without options and payload but with payload start marker */
+    char teststr[] =
+    { 0x70, 0x00, 0x12, 0x34, 0xff };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_pdu10(void)
+{
+    /* PDU without payload but with options and payload start marker */
+    char teststr[] =
+    { 0x53, 0x73, 0x12, 0x34, 't', 'o', 'k', 0x30, 0xc1, 0x00, 0xff };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_pdu11(void)
+{
+    char teststr[] =
+    { 0x60, 0x00, 0x12, 0x34 };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result > 0);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(pdu->hdr->version == 1);
+    CU_ASSERT(pdu->hdr->type == COAP_MESSAGE_ACK);
+    CU_ASSERT(pdu->hdr->token_length == 0);
+    CU_ASSERT(pdu->hdr->code == 0);
+    CU_ASSERT(memcmp(&pdu->hdr->id, teststr + 2, 2) == 0);
+}
+
+void t_parse_pdu12(void)
+{
+    /* RST */
+    char teststr[] =
+    { 0x70, 0x00, 0x12, 0x34 };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result > 0);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(pdu->hdr->version == 1);
+    CU_ASSERT(pdu->hdr->type == COAP_MESSAGE_RST);
+    CU_ASSERT(pdu->hdr->token_length == 0);
+    CU_ASSERT(pdu->hdr->code == 0);
+    CU_ASSERT(memcmp(&pdu->hdr->id, teststr + 2, 2) == 0);
+}
+
+void t_parse_pdu13(void)
+{
+    /* RST with content */
+    char teststr[] =
+    { 0x70, 0x00, 0x12, 0x34, 0xff, 'c', 'o', 'n', 't', 'e', 'n', 't' };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result == 0);
+}
+
+void t_parse_pdu14(void)
+{
+    /* ACK with content */
+    char teststr[] =
+    { 0x60, 0x00, 0x12, 0x34, 0xff, 'c', 'o', 'n', 't', 'e', 'n', 't' };
+    int result;
+
+    result = coap_pdu_parse((unsigned char *) teststr, sizeof(teststr), pdu);
+    CU_ASSERT(result == 0);
+}
+
+/************************************************************************
+ ** PDU encoder
+ ************************************************************************/
+
+void t_encode_pdu1(void)
+{
+    char teststr[] =
+    { 0x45, 0x01, 0x12, 0x34, 't', 'o', 'k', 'e', 'n' };
+    int result;
+
+    coap_pdu_clear(pdu, pdu->max_size);
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    pdu->hdr->code = COAP_REQUEST_GET;
+    pdu->hdr->id = htons(0x1234);
+
+    result = coap_add_token(pdu, 5, (unsigned char *) "token");
+
+    CU_ASSERT(result == 1);
+    CU_ASSERT(pdu->length = sizeof(teststr));
+    CU_ASSERT_PTR_NULL(pdu->data);
+    CU_ASSERT(memcmp(pdu->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_encode_pdu2(void)
+{
+    size_t old_max = pdu->max_size;
+    int result;
+
+    coap_pdu_clear(pdu, 7); /* set very small PDU size */
+
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    pdu->hdr->code = COAP_REQUEST_GET;
+    pdu->hdr->id = htons(0x1234);
+
+    result = coap_add_token(pdu, 5, (unsigned char *) "token");
+
+    CU_ASSERT(result == 0);
+
+    coap_pdu_clear(pdu, old_max); /* restore PDU size */
+}
+
+void t_encode_pdu3(void)
+{
+    int result;
+
+    result = coap_add_token(pdu, 9, (unsigned char *) "123456789");
+
+    CU_ASSERT(result == 0);
+}
+
+void t_encode_pdu4(void)
+{
+    /* PDU with options */
+    char teststr[] =
+    { 0x60, 0x99, 0x12, 0x34, 0x3d, 0x05, 0x66, 0x61, 0x6e, 0x63, 0x79, 0x70, 0x72, 0x6f, 0x78,
+            0x79, 0x2e, 0x63, 0x6f, 0x61, 0x70, 0x2e, 0x6d, 0x65, 0x84, 0x70, 0x61, 0x74, 0x68,
+            0x00, 0xe8, 0x1e, 0x28, 0x66, 0x61, 0x6e, 0x63, 0x79, 0x6f, 0x70, 0x74 };
+    int result;
+
+    coap_pdu_clear(pdu, pdu->max_size); /* clear PDU */
+
+    pdu->hdr->type = COAP_MESSAGE_ACK;
+    pdu->hdr->code = 0x99;
+    pdu->hdr->id = htons(0x1234);
+
+    CU_ASSERT(pdu->length == 4);
+
+    result = coap_add_option(pdu, COAP_OPTION_URI_HOST, 18, (unsigned char *) "fancyproxy.coap.me");
+
+    CU_ASSERT(result == 20);
+    CU_ASSERT(pdu->max_delta == 3);
+    CU_ASSERT(pdu->length == 24);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    result = coap_add_option(pdu, COAP_OPTION_URI_PATH, 4, (unsigned char *) "path");
+
+    CU_ASSERT(result == 5);
+    CU_ASSERT(pdu->max_delta == 11);
+    CU_ASSERT(pdu->length == 29);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    result = coap_add_option(pdu, COAP_OPTION_URI_PATH, 0, NULL);
+
+    CU_ASSERT(result == 1);
+    CU_ASSERT(pdu->max_delta == 11);
+    CU_ASSERT(pdu->length == 30);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    result = coap_add_option(pdu, 8000, 8, (unsigned char *) "fancyopt");
+
+    CU_ASSERT(result == 11);
+    CU_ASSERT(pdu->max_delta == 8000);
+    CU_ASSERT(pdu->length == 41);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(memcmp(pdu->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_encode_pdu5(void)
+{
+    /* PDU with token and options */
+    char teststr[] =
+    { 0x68, 0x84, 0x12, 0x34, '1', '2', '3', '4', '5', '6', '7', '8', 0x18, 0x41, 0x42, 0x43, 0x44,
+            0x45, 0x46, 0x47, 0x48, 0xd1, 0x03, 0x12 };
+    int result;
+
+    coap_pdu_clear(pdu, pdu->max_size); /* clear PDU */
+
+    pdu->hdr->type = COAP_MESSAGE_ACK;
+    pdu->hdr->code = COAP_RESPONSE_CODE(404);
+    pdu->hdr->id = htons(0x1234);
+
+    CU_ASSERT(pdu->length == 4);
+
+    result = coap_add_token(pdu, 8, (unsigned char *) "12345678");
+
+    CU_ASSERT(pdu->length == 12);
+
+    result = coap_add_option(pdu, COAP_OPTION_IF_MATCH, 8, (unsigned char *) "ABCDEFGH");
+
+    CU_ASSERT(result == 9);
+    CU_ASSERT(pdu->max_delta == 1);
+    CU_ASSERT(pdu->length == 21);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    result = coap_add_option(pdu, COAP_OPTION_ACCEPT, 1, (unsigned char *) "\x12");
+
+    CU_ASSERT(result == 3);
+    CU_ASSERT(pdu->max_delta == 17);
+    CU_ASSERT(pdu->length == 24);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(memcmp(pdu->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_encode_pdu6(void)
+{
+    /* PDU with data */
+    char teststr[] =
+    { 0x50, 0x02, 0x12, 0x34, 0xff, '1', '2', '3', '4', '5', '6', '7', '8' };
+    coap_pdu_clear(pdu, pdu->max_size); /* clear PDU */
+
+    pdu->hdr->type = COAP_MESSAGE_NON;
+    pdu->hdr->code = COAP_REQUEST_POST;
+    pdu->hdr->id = htons(0x1234);
+
+    CU_ASSERT(pdu->length == 4);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    coap_add_data(pdu, 8, (unsigned char *) "12345678");
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(memcmp(pdu->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_encode_pdu7(void)
+{
+    /* PDU with empty data */
+    char teststr[] =
+    { 0x40, 0x43, 0x12, 0x34 };
+    int result;
+    coap_pdu_clear(pdu, pdu->max_size); /* clear PDU */
+
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    pdu->hdr->code = COAP_RESPONSE_CODE(203);
+    pdu->hdr->id = htons(0x1234);
+
+    CU_ASSERT(pdu->length == 4);
+
+    result = coap_add_data(pdu, 0, NULL);
+
+    CU_ASSERT(result > 0);
+    CU_ASSERT(pdu->length == 4);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(memcmp(pdu->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_encode_pdu8(void)
+{
+    /* PDU with token and data */
+    char teststr[] =
+    { 0x42, 0x43, 0x12, 0x34, 0x00, 0x01, 0xff, 0x00 };
+    int result;
+    coap_pdu_clear(pdu, pdu->max_size); /* clear PDU */
+
+    pdu->hdr->type = COAP_MESSAGE_CON;
+    pdu->hdr->code = COAP_RESPONSE_CODE(203);
+    pdu->hdr->id = htons(0x1234);
+
+    CU_ASSERT(pdu->length == 4);
+
+    result = coap_add_token(pdu, 2, (unsigned char *) "\x00\x01");
+
+    CU_ASSERT(result > 0);
+
+    result = coap_add_data(pdu, 1, (unsigned char *) "\0");
+
+    CU_ASSERT(result > 0);
+    CU_ASSERT(pdu->length == 8);
+    CU_ASSERT(pdu->data == (unsigned char *) pdu->hdr + 7);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(memcmp(pdu->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_encode_pdu9(void)
+{
+    /* PDU with options and data */
+    char teststr[] =
+    { 0x60, 0x44, 0x12, 0x34, 0x48, 's', 'o', 'm', 'e', 'e', 't', 'a', 'g', 0x10, 0xdd, 0x11, 0x04,
+            's', 'o', 'm', 'e', 'r', 'a', 't', 'h', 'e', 'r', 'l', 'o', 'n', 'g', 'u', 'r', 'i',
+            0xff, 'd', 'a', 't', 'a' };
+    int result;
+
+    coap_pdu_clear(pdu, pdu->max_size); /* clear PDU */
+
+    pdu->hdr->type = COAP_MESSAGE_ACK;
+    pdu->hdr->code = COAP_RESPONSE_CODE(204);
+    pdu->hdr->id = htons(0x1234);
+
+    CU_ASSERT(pdu->length == 4);
+
+    result = coap_add_option(pdu, COAP_OPTION_ETAG, 8, (unsigned char *) "someetag");
+
+    CU_ASSERT(result == 9);
+    CU_ASSERT(pdu->max_delta == 4);
+    CU_ASSERT(pdu->length == 13);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    result = coap_add_option(pdu, COAP_OPTION_IF_NONE_MATCH, 0, NULL);
+
+    CU_ASSERT(result == 1);
+    CU_ASSERT(pdu->max_delta == 5);
+    CU_ASSERT(pdu->length == 14);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    result = coap_add_option(pdu, COAP_OPTION_PROXY_URI, 17, (unsigned char *) "someratherlonguri");
+
+    CU_ASSERT(result == 20);
+    CU_ASSERT(pdu->max_delta == 35);
+    CU_ASSERT(pdu->length == 34);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    result = coap_add_data(pdu, 4, (unsigned char *) "data");
+
+    CU_ASSERT(result > 0);
+    CU_ASSERT(pdu->length == 39);
+    CU_ASSERT(pdu->data == (unsigned char *) pdu->hdr + 35);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(memcmp(pdu->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_encode_pdu10(void)
+{
+    /* PDU with token, options and data */
+    char teststr[] =
+    { 0x62, 0x44, 0x12, 0x34, 0x00, 0x00, 0x8d, 0xf2, 'c', 'o', 'a', 'p', ':', '/', '/', 'e', 'x',
+            'a', 'm', 'p', 'l', 'e', '.', 'c', 'o', 'm', '/', '1', '2', '3', '4', '5', '/', '%',
+            '3', 'F', 'x', 'y', 'z', '/', '3', '0', '4', '8', '2', '3', '4', '2', '3', '4', '/',
+            '2', '3', '4', '0', '2', '3', '4', '8', '2', '3', '4', '/', '2', '3', '9', '0', '8',
+            '4', '2', '3', '4', '-', '2', '3', '/', '%', 'A', 'B', '%', '3', '0', '%', 'a', 'f',
+            '/', '+', '1', '2', '3', '/', 'h', 'f', 'k', 's', 'd', 'h', '/', '2', '3', '4', '8',
+            '0', '-', '2', '3', '4', '-', '9', '8', '2', '3', '5', '/', '1', '2', '0', '4', '/',
+            '2', '4', '3', '5', '4', '6', '3', '4', '5', '3', '4', '5', '2', '4', '3', '/', '0',
+            '1', '9', '8', 's', 'd', 'n', '3', '-', 'a', '-', '3', '/', '/', '/', 'a', 'f', 'f',
+            '0', '9', '3', '4', '/', '9', '7', 'u', '2', '1', '4', '1', '/', '0', '0', '0', '2',
+            '/', '3', '9', '3', '2', '4', '2', '3', '5', '3', '2', '/', '5', '6', '2', '3', '4',
+            '0', '2', '3', '/', '-', '-', '-', '-', '/', '=', '1', '2', '3', '4', '=', '/', '0',
+            '9', '8', '1', '4', '1', '-', '9', '5', '6', '4', '6', '4', '3', '/', '2', '1', '9',
+            '7', '0', '-', '-', '-', '-', '-', '/', '8', '2', '3', '6', '4', '9', '2', '3', '4',
+            '7', '2', 'w', 'e', 'r', 'e', 'r', 'e', 'w', 'r', '0', '-', '9', '2', '1', '-', '3',
+            '9', '1', '2', '3', '-', '3', '4', '/', 0x0d, 0x01, '/', '/', '4', '9', '2', '4', '0',
+            '3', '-', '-', '0', '9', '8', '/', 0xc1, '*', 0xff, 'd', 'a', 't', 'a' };
+    int result;
+
+    coap_pdu_clear(pdu, pdu->max_size); /* clear PDU */
+
+    pdu->hdr->type = COAP_MESSAGE_ACK;
+    pdu->hdr->code = COAP_RESPONSE_CODE(204);
+    pdu->hdr->id = htons(0x1234);
+
+    CU_ASSERT(pdu->length == 4);
+
+    result = coap_add_token(pdu, 2, (unsigned char *) "\0\0");
+
+    CU_ASSERT(result > 0);
+    result =
+            coap_add_option(pdu, COAP_OPTION_LOCATION_PATH, 255,
+                    (unsigned char *) "coap://example.com/12345/%3Fxyz/3048234234/23402348234/239084234-23/%AB%30%af/+123/hfksdh/23480-234-98235/1204/243546345345243/0198sdn3-a-3///aff0934/97u2141/0002/3932423532/56234023/----/=1234=/098141-9564643/21970-----/82364923472wererewr0-921-39123-34/");
+
+    CU_ASSERT(result == 257);
+    CU_ASSERT(pdu->max_delta == 8);
+    CU_ASSERT(pdu->length == 263);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    result = coap_add_option(pdu, COAP_OPTION_LOCATION_PATH, 14,
+            (unsigned char *) "//492403--098/");
+
+    CU_ASSERT(result == 16);
+    CU_ASSERT(pdu->max_delta == 8);
+    CU_ASSERT(pdu->length == 279);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    result = coap_add_option(pdu, COAP_OPTION_LOCATION_QUERY, 1, (unsigned char *) "*");
+
+    CU_ASSERT(result == 2);
+    CU_ASSERT(pdu->max_delta == 20);
+    CU_ASSERT(pdu->length == 281);
+    CU_ASSERT_PTR_NULL(pdu->data);
+
+    result = coap_add_data(pdu, 4, (unsigned char *) "data");
+
+    CU_ASSERT(result > 0);
+    CU_ASSERT(pdu->length == 286);
+    CU_ASSERT(pdu->data == (unsigned char *) pdu->hdr + 282);
+
+    CU_ASSERT(pdu->length == sizeof(teststr));
+    CU_ASSERT(memcmp(pdu->hdr, teststr, sizeof(teststr)) == 0);
+}
+
+void t_encode_pdu11(void)
+{
+    /* data too long for PDU */
+    size_t old_max = pdu->max_size;
+    int result;
+
+    coap_pdu_clear(pdu, 8); /* clear PDU, with small maximum */
+
+    CU_ASSERT(pdu->data == NULL);
+    result = coap_add_data(pdu, 10, (unsigned char *) "0123456789");
+
+    CU_ASSERT(result == 0);
+    CU_ASSERT(pdu->data == NULL);
+
+    pdu->max_size = old_max;
+}
+
+int t_pdu_tests_create(void)
+{
+    pdu = coap_pdu_init(0, 0, 0, COAP_MAX_PDU_SIZE);
+
+    return pdu == NULL;
+}
+
+int t_pdu_tests_remove(void)
+{
+    coap_delete_pdu(pdu);
+    return 0;
+}
+
+CU_pSuite t_init_pdu_tests(void)
+{
+    CU_pSuite suite[2];
+
+    suite[0] = CU_add_suite("pdu parser", t_pdu_tests_create, t_pdu_tests_remove);
+    if (!suite[0])
+    { /* signal error */
+        fprintf(stderr, "W: cannot add pdu parser test suite (%s)\n", CU_get_error_msg());
+
+        return NULL;
+    }
+
+#define PDU_TEST(s,t)                                                \
+  if (!CU_ADD_TEST(s,t)) {                                           \
+    fprintf(stderr, "W: cannot add pdu parser test (%s)\n",          \
+           CU_get_error_msg());                                      \
+  }
+
+    PDU_TEST(suite[0], t_parse_pdu1);
+    PDU_TEST(suite[0], t_parse_pdu2);
+    PDU_TEST(suite[0], t_parse_pdu3);
+    PDU_TEST(suite[0], t_parse_pdu4);
+    PDU_TEST(suite[0], t_parse_pdu5);
+    PDU_TEST(suite[0], t_parse_pdu6);
+    PDU_TEST(suite[0], t_parse_pdu7);
+    PDU_TEST(suite[0], t_parse_pdu8);
+    PDU_TEST(suite[0], t_parse_pdu9);
+    PDU_TEST(suite[0], t_parse_pdu10);
+    PDU_TEST(suite[0], t_parse_pdu11);
+    PDU_TEST(suite[0], t_parse_pdu12);
+    PDU_TEST(suite[0], t_parse_pdu13);
+    PDU_TEST(suite[0], t_parse_pdu14);
+
+    suite[1] = CU_add_suite("pdu encoder", t_pdu_tests_create, t_pdu_tests_remove);
+    if (suite[1])
+    {
+#define PDU_ENCODER_TEST(s,t)                                                \
+  if (!CU_ADD_TEST(s,t)) {                                           \
+    fprintf(stderr, "W: cannot add pdu encoder test (%s)\n",         \
+           CU_get_error_msg());                                      \
+  }
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu1);
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu2);
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu3);
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu4);
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu5);
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu6);
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu7);
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu8);
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu9);
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu10);
+        PDU_ENCODER_TEST(suite[1], t_encode_pdu11);
+
+    }
+    else
+        /* signal error */
+        fprintf(stderr, "W: cannot add pdu parser test suite (%s)\n", CU_get_error_msg());
+
+    return suite[0];
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_pdu.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_pdu.h
new file mode 100644 (file)
index 0000000..992b377
--- /dev/null
@@ -0,0 +1,11 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <CUnit/CUnit.h>
+
+CU_pSuite t_init_pdu_tests(void);
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_sendqueue.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_sendqueue.c
new file mode 100644 (file)
index 0000000..1b6c076
--- /dev/null
@@ -0,0 +1,379 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <stdio.h>
+#include <coap.h>
+#include "test_sendqueue.h"
+
+static coap_queue_t *sendqueue;
+
+/* timestamps for tests. The first element in this array denotes the
+ * base time in ticks, the following elements are timestamps relative
+ * to this basetime.
+ */
+static coap_tick_t timestamp[] =
+{ 0, 100, 200, 30, 160 };
+
+/* nodes for testing. node[0] is left empty */
+coap_queue_t *node[5];
+
+coap_tick_t add_timestamps(coap_queue_t *queue, size_t num)
+{
+    coap_tick_t t = 0;
+    while (queue && num--)
+    {
+        t += queue->t;
+        queue = queue->next;
+    }
+
+    return t;
+}
+
+void t_sendqueue1(void)
+{
+    int result = coap_insert_node(&sendqueue, node[1]);
+
+    CU_ASSERT(result > 0);
+    CU_ASSERT_PTR_NOT_NULL(sendqueue);
+    CU_ASSERT_PTR_EQUAL(sendqueue, node[1]);
+    CU_ASSERT(node[1]->t == timestamp[1]);
+}
+
+void t_sendqueue2(void)
+{
+    int result;
+
+    result = coap_insert_node(&sendqueue, node[2]);
+
+    CU_ASSERT(result > 0);
+    CU_ASSERT_PTR_EQUAL(sendqueue, node[1]);
+    CU_ASSERT_PTR_EQUAL(sendqueue->next, node[2]);
+
+    CU_ASSERT(sendqueue->t == timestamp[1]);
+    CU_ASSERT(node[2]->t == timestamp[2] - timestamp[1]);
+}
+
+/* insert new node as first element in queue */
+void t_sendqueue3(void)
+{
+    int result;
+    result = coap_insert_node(&sendqueue, node[3]);
+
+    CU_ASSERT(result > 0);
+
+    CU_ASSERT_PTR_EQUAL(sendqueue, node[3]);
+    CU_ASSERT(node[3]->t == timestamp[3]);
+
+    CU_ASSERT_PTR_NOT_NULL(sendqueue->next);
+    CU_ASSERT_PTR_NOT_NULL(sendqueue->next->next);
+
+    CU_ASSERT(sendqueue->next->t == timestamp[1] - timestamp[3]);
+    CU_ASSERT(sendqueue->next->next->t == timestamp[2] - timestamp[1]);
+}
+
+/* insert new node as fourth element in queue */
+void t_sendqueue4(void)
+{
+    int result;
+
+    result = coap_insert_node(&sendqueue, node[4]);
+
+    CU_ASSERT(result > 0);
+
+    CU_ASSERT_PTR_EQUAL(sendqueue, node[3]);
+
+    CU_ASSERT_PTR_NOT_NULL(sendqueue->next);
+    CU_ASSERT_PTR_EQUAL(sendqueue->next, node[1]);
+
+    CU_ASSERT_PTR_NOT_NULL(sendqueue->next->next);
+    CU_ASSERT_PTR_EQUAL(sendqueue->next->next, node[4]);
+
+    CU_ASSERT_PTR_NOT_NULL(sendqueue->next->next->next);
+    CU_ASSERT_PTR_EQUAL(sendqueue->next->next->next, node[2]);
+
+    CU_ASSERT(sendqueue->next->t == timestamp[1] - timestamp[3]);
+    CU_ASSERT(add_timestamps(sendqueue, 1) == timestamp[3]);
+    CU_ASSERT(add_timestamps(sendqueue, 2) == timestamp[1]);
+    CU_ASSERT(add_timestamps(sendqueue, 3) == timestamp[4]);
+    CU_ASSERT(add_timestamps(sendqueue, 4) == timestamp[2]);
+}
+
+void t_sendqueue5(void)
+{
+    const coap_tick_diff_t delta1 = 20, delta2 = 130;
+    unsigned int result;
+    coap_tick_t now;
+    struct coap_context_t ctx;
+
+    /* space for saving the current node timestamps */
+    static coap_tick_t times[sizeof(timestamp) / sizeof(coap_tick_t)];
+    coap_queue_t *p;
+    int i;
+
+    /* save timestamps of nodes in the sendqueue in their actual order */
+    memset(times, 0, sizeof(times));
+    for (p = sendqueue, i = 0; p; p = p->next, i++)
+    {
+        times[i] = p->t;
+    }
+
+    coap_ticks(&now);
+    ctx.sendqueue = sendqueue;
+    ctx.sendqueue_basetime = now;
+
+    now -= delta1;
+    result = coap_adjust_basetime(&ctx, now);
+
+    CU_ASSERT(result == 0);
+    CU_ASSERT_PTR_NOT_NULL(ctx.sendqueue);
+    CU_ASSERT(ctx.sendqueue_basetime == now);
+    CU_ASSERT(ctx.sendqueue->t == timestamp[3] + delta1);
+
+    now += delta2;
+    result = coap_adjust_basetime(&ctx, now);
+    CU_ASSERT(result == 2);
+    CU_ASSERT(ctx.sendqueue_basetime == now);
+    CU_ASSERT_PTR_NOT_NULL(ctx.sendqueue);
+    CU_ASSERT(ctx.sendqueue->t == 0);
+
+    CU_ASSERT_PTR_NOT_NULL(ctx.sendqueue->next);
+    CU_ASSERT(ctx.sendqueue->next->t == 0);
+
+    CU_ASSERT_PTR_NOT_NULL(ctx.sendqueue->next->next);
+    CU_ASSERT(ctx.sendqueue->next->next->t == delta2 - delta1 - timestamp[1]);
+
+    /* restore timestamps of nodes in the sendqueue */
+    for (p = sendqueue, i = 0; p; p = p->next, i++)
+    {
+        p->t = times[i];
+    }
+}
+
+void t_sendqueue6(void)
+{
+    unsigned int result;
+    coap_tick_t now;
+    const coap_tick_diff_t delta = 20;
+    struct coap_context_t ctx;
+
+    /* space for saving the current node timestamps */
+    static coap_tick_t times[sizeof(timestamp) / sizeof(coap_tick_t)];
+    coap_queue_t *p;
+    int i;
+
+    /* save timestamps of nodes in the sendqueue in their actual order */
+    memset(times, 0, sizeof(times));
+    for (p = sendqueue, i = 0; p; p = p->next, i++)
+    {
+        times[i] = p->t;
+    }
+
+    coap_ticks(&now);
+    ctx.sendqueue = NULL;
+    ctx.sendqueue_basetime = now;
+
+    result = coap_adjust_basetime(&ctx, now + delta);
+
+    CU_ASSERT(result == 0);
+    CU_ASSERT(ctx.sendqueue_basetime == now + delta);
+
+    /* restore timestamps of nodes in the sendqueue */
+    for (p = sendqueue, i = 0; p; p = p->next, i++)
+    {
+        p->t = times[i];
+    }
+}
+;
+
+void t_sendqueue7(void)
+{
+    int result;
+    coap_queue_t *tmp_node;
+
+    CU_ASSERT_PTR_NOT_NULL(sendqueue);
+    CU_ASSERT_PTR_EQUAL(sendqueue, node[3]);
+
+    CU_ASSERT_PTR_NOT_NULL(sendqueue->next);
+    CU_ASSERT_PTR_EQUAL(sendqueue->next, node[1]);
+
+    result = coap_remove_from_queue(&sendqueue, 3, &tmp_node);
+
+    CU_ASSERT(result == 1);
+    CU_ASSERT_PTR_NOT_NULL(tmp_node);
+    CU_ASSERT_PTR_EQUAL(tmp_node, node[3]);
+
+    CU_ASSERT_PTR_NOT_NULL(sendqueue);
+    CU_ASSERT_PTR_EQUAL(sendqueue, node[1]);
+
+    CU_ASSERT(sendqueue->t == timestamp[1]);
+}
+;
+
+void t_sendqueue8(void)
+{
+    int result;
+    coap_queue_t *tmp_node;
+
+    result = coap_remove_from_queue(&sendqueue, 4, &tmp_node);
+
+    CU_ASSERT(result == 1);
+    CU_ASSERT_PTR_NOT_NULL(tmp_node);
+    CU_ASSERT_PTR_EQUAL(tmp_node, node[4]);
+
+    CU_ASSERT_PTR_NOT_NULL(sendqueue);
+    CU_ASSERT_PTR_EQUAL(sendqueue, node[1]);
+    CU_ASSERT(sendqueue->t == timestamp[1]);
+
+    CU_ASSERT_PTR_NOT_NULL(sendqueue->next);
+    CU_ASSERT_PTR_EQUAL(sendqueue->next, node[2]);
+    CU_ASSERT(sendqueue->next->t == timestamp[2] - timestamp[1]);
+
+    CU_ASSERT_PTR_NULL(sendqueue->next->next);
+}
+;
+
+void t_sendqueue9(void)
+{
+    coap_queue_t *tmp_node;
+    struct coap_context_t ctx;
+
+    /* Initialize a fake context that points to our global sendqueue
+     * Note that all changes happen on ctx.sendqueue. */
+    ctx.sendqueue = sendqueue;
+    tmp_node = coap_peek_next(&ctx);
+    sendqueue = ctx.sendqueue; /* must update global sendqueue for correct result */
+
+    CU_ASSERT_PTR_NOT_NULL(tmp_node);
+    CU_ASSERT_PTR_EQUAL(tmp_node, node[1]);
+    CU_ASSERT_PTR_EQUAL(tmp_node, ctx.sendqueue);
+
+    tmp_node = coap_pop_next(&ctx);
+    sendqueue = ctx.sendqueue; /* must update global sendqueue for correct result */
+
+    CU_ASSERT_PTR_NOT_NULL(tmp_node);
+    CU_ASSERT_PTR_EQUAL(tmp_node, node[1]);
+
+    CU_ASSERT_PTR_NOT_NULL(sendqueue);
+    CU_ASSERT_PTR_EQUAL(sendqueue, node[2]);
+
+    CU_ASSERT(tmp_node->t == timestamp[1]);
+    CU_ASSERT(sendqueue->t == timestamp[2]);
+
+    CU_ASSERT_PTR_NULL(sendqueue->next);
+}
+;
+
+void t_sendqueue10(void)
+{
+    coap_queue_t *tmp_node;
+    struct coap_context_t ctx;
+
+    /* Initialize a fake context that points to our global sendqueue
+     * Note that all changes happen on ctx.sendqueue. */
+    ctx.sendqueue = sendqueue;
+
+    tmp_node = coap_pop_next(&ctx);
+    sendqueue = ctx.sendqueue; /* must update global sendqueue for correct result */
+
+    CU_ASSERT_PTR_NOT_NULL(tmp_node);
+    CU_ASSERT_PTR_EQUAL(tmp_node, node[2]);
+
+    CU_ASSERT_PTR_NULL(sendqueue);
+
+    CU_ASSERT(tmp_node->t == timestamp[2]);
+}
+;
+
+/* This function creates a set of nodes for testing. These nodes
+ * will exist for all tests and are modified by coap_insert_node()
+ * and 
+ */
+int t_sendqueue_tests_create(void)
+{
+    int n, error = 0;
+    sendqueue = NULL;
+    coap_ticks(&timestamp[0]);
+
+    memset(node, 0, sizeof(node));
+    for (n = 1; n < sizeof(node) / sizeof(coap_queue_t *); n++)
+    {
+        node[n] = coap_new_node();
+        if (!node[n])
+        {
+            error = 1;
+            break;
+        }
+
+        node[n]->id = n;
+        node[n]->t = timestamp[n];
+    }
+
+    if (error)
+    {
+        /* destroy all test nodes and set entry to zero */
+        for (n = 0; n < sizeof(node) / sizeof(coap_queue_t *); n++)
+        {
+            if (node[n])
+            {
+                coap_delete_node(node[n]);
+                node[n] = NULL;
+            }
+        }
+    }
+
+    return error;
+}
+
+int t_sendqueue_tests_remove(void)
+{
+    int n;
+
+    /* destroy all test nodes */
+    for (n = 0; n < sizeof(node) / sizeof(coap_queue_t *); n++)
+    {
+        if (node[n])
+        {
+            coap_delete_node(node[n]);
+        }
+    }
+
+    return 0;
+}
+
+CU_pSuite t_init_sendqueue_tests(void)
+{
+    CU_pSuite suite;
+
+    suite = CU_add_suite("sendqueue", t_sendqueue_tests_create, t_sendqueue_tests_remove);
+    if (!suite)
+    { /* signal error */
+        fprintf(stderr, "W: cannot add sendqueue test suite (%s)\n", CU_get_error_msg());
+
+        return NULL;
+    }
+
+#define SENDQUEUE_TEST(s,t)                                          \
+  if (!CU_ADD_TEST(s,t)) {                                           \
+    fprintf(stderr, "W: cannot add sendqueue test (%s)\n",           \
+           CU_get_error_msg());                                      \
+  }
+
+    SENDQUEUE_TEST(suite, t_sendqueue1);
+    SENDQUEUE_TEST(suite, t_sendqueue2);
+    SENDQUEUE_TEST(suite, t_sendqueue3);
+    SENDQUEUE_TEST(suite, t_sendqueue4);
+    SENDQUEUE_TEST(suite, t_sendqueue5);
+    SENDQUEUE_TEST(suite, t_sendqueue6);
+    SENDQUEUE_TEST(suite, t_sendqueue7);
+    SENDQUEUE_TEST(suite, t_sendqueue8);
+    SENDQUEUE_TEST(suite, t_sendqueue9);
+    SENDQUEUE_TEST(suite, t_sendqueue10);
+
+    return suite;
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_sendqueue.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_sendqueue.h
new file mode 100644 (file)
index 0000000..56f3c1e
--- /dev/null
@@ -0,0 +1,11 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <CUnit/CUnit.h>
+
+CU_pSuite t_init_sendqueue_tests(void);
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_uri.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_uri.c
new file mode 100644 (file)
index 0000000..d5dafc5
--- /dev/null
@@ -0,0 +1,396 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <stdio.h>
+#include <coap.h>
+#include "test_uri.h"
+
+void t_parse_uri1(void)
+{
+    char teststr[] = "coap://[::1]/.well-known/core";
+
+    int result;
+    coap_uri_t uri;
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result == 0)
+    {
+        CU_ASSERT(uri.host.length == 3);
+        CU_ASSERT_NSTRING_EQUAL(uri.host.s, "::1", 3);
+
+        CU_ASSERT(uri.port == COAP_DEFAULT_PORT);
+
+        CU_ASSERT(uri.path.length == 16);
+        CU_ASSERT_NSTRING_EQUAL(uri.path.s, ".well-known/core", 16);
+
+        CU_ASSERT(uri.query.length == 0);
+        CU_ASSERT(uri.query.s == NULL);
+    }
+    else
+    {
+        CU_FAIL("uri parser error");
+    }
+}
+
+void t_parse_uri2(void)
+{
+    char teststr[] = "coap://[::1]:8000/.well-known/core";
+    int result;
+    coap_uri_t uri;
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result == 0)
+    {
+        CU_ASSERT(uri.host.length == 3);
+        CU_ASSERT_NSTRING_EQUAL(uri.host.s, "::1", 3);
+
+        CU_ASSERT(uri.port == 8000);
+
+        CU_ASSERT(uri.path.length == 16);
+        CU_ASSERT_NSTRING_EQUAL(uri.path.s, ".well-known/core", 16);
+
+        CU_ASSERT(uri.query.length == 0);
+        CU_ASSERT(uri.query.s == NULL);
+    }
+    else
+    {
+        CU_FAIL("uri parser error");
+    }
+}
+
+void t_parse_uri3(void)
+{
+    char teststr[] = "coap://localhost/?foo&bla=fasel";
+    int result;
+    coap_uri_t uri;
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result == 0)
+    {
+        CU_ASSERT(uri.host.length == 9);
+        CU_ASSERT_NSTRING_EQUAL(uri.host.s, "localhost", 9);
+
+        CU_ASSERT(uri.port == COAP_DEFAULT_PORT);
+
+        CU_ASSERT(uri.path.length == 0);
+
+        CU_ASSERT(uri.query.length == 13);
+        CU_ASSERT_NSTRING_EQUAL(uri.query.s, "foo&bla=fasel", 13);
+    }
+    else
+    {
+        CU_FAIL("uri parser error");
+    }
+}
+
+void t_parse_uri4(void)
+{
+    char teststr[] = "coap://:100000";
+    int result;
+    coap_uri_t uri;
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    CU_ASSERT(result < 0);
+}
+
+void t_parse_uri5(void)
+{
+    char teststr[] = "coap://foo:100000";
+    int result;
+    coap_uri_t uri;
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result == 0)
+    {
+        CU_ASSERT(uri.host.length == 3);
+        CU_ASSERT_NSTRING_EQUAL(uri.host.s, "foo", 3);
+
+        CU_ASSERT(uri.path.length == 0);
+        CU_ASSERT(uri.path.s == NULL);
+
+        CU_ASSERT(uri.query.length == 0);
+        CU_ASSERT(uri.query.s == NULL);
+
+        CU_FAIL("invalid port not detected");
+    }
+    else
+    {
+        CU_PASS("detected invalid port");
+    }
+}
+
+void t_parse_uri6(void)
+{
+    char teststr[] = "coap://134.102.218.2/.well-known/core";
+    int result;
+    coap_uri_t uri;
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result == 0)
+    {
+        CU_ASSERT(uri.host.length == 13);
+        CU_ASSERT_NSTRING_EQUAL(uri.host.s, "134.102.218.2", 13);
+
+        CU_ASSERT(uri.port == COAP_DEFAULT_PORT);
+
+        CU_ASSERT(uri.path.length == 16);
+        CU_ASSERT_NSTRING_EQUAL(uri.path.s, ".well-known/core", 16);
+
+        CU_ASSERT(uri.query.length == 0);
+        CU_ASSERT(uri.query.s == NULL);
+    }
+    else
+    {
+        CU_FAIL("uri parser error");
+    }
+}
+
+void t_parse_uri7(void)
+{
+    char teststr[] = "coap://foo.bar:5683/some_resource/with/multiple/segments";
+    int result;
+    coap_uri_t uri;
+    unsigned char buf[40];
+    size_t buflen = sizeof(buf);
+
+    /* The list of path segments to check against. Each segment is
+     preceded by a dummy option indicating that holds the (dummy)
+     delta value 0 and the actual segment length. */
+    const unsigned char checkbuf[] =
+    { 0x0d, 0x00, 's', 'o', 'm', 'e', '_', 'r', 'e', 's', 'o', 'u', 'r', 'c', 'e', 0x04, 'w', 'i',
+            't', 'h', 0x08, 'm', 'u', 'l', 't', 'i', 'p', 'l', 'e', 0x08, 's', 'e', 'g', 'm', 'e',
+            'n', 't', 's' };
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result == 0)
+    {
+        CU_ASSERT(uri.host.length == 7);
+        CU_ASSERT_NSTRING_EQUAL(uri.host.s, "foo.bar", 7);
+
+        CU_ASSERT(uri.port == 5683);
+
+        CU_ASSERT(uri.path.length == 36);
+        CU_ASSERT_NSTRING_EQUAL(uri.path.s, "some_resource/with/multiple/segments", 36);
+
+        CU_ASSERT(uri.query.length == 0);
+        CU_ASSERT(uri.query.s == NULL);
+
+        /* check path segments */
+        result = coap_split_path(uri.path.s, uri.path.length, buf, &buflen);
+        CU_ASSERT(result == 4);
+        CU_ASSERT(buflen == sizeof(checkbuf));
+        CU_ASSERT_NSTRING_EQUAL(buf, checkbuf, buflen);
+    }
+    else
+    {
+        CU_FAIL("uri parser error");
+    }
+}
+
+void t_parse_uri8(void)
+{
+    char teststr[] = "http://example.com/%7E%AB%13";
+    int result;
+    coap_uri_t uri;
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result < 0)
+    {
+        CU_PASS("detected non-coap URI");
+    }
+    else
+    {
+        CU_FAIL("non-coap URI not recognized");
+    }
+}
+
+void t_parse_uri9(void)
+{
+    char teststr[] = "http://example.com/%x";
+    int result;
+    coap_uri_t uri;
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result < 0)
+    {
+        CU_PASS("detected non-coap URI");
+    }
+    else
+    {
+        CU_FAIL("non-coap URI not recognized");
+    }
+}
+
+void t_parse_uri10(void)
+{
+    char teststr[] = "/absolute/path";
+    int result;
+    coap_uri_t uri;
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result == 0)
+    {
+        CU_ASSERT(uri.host.length == 0);
+        CU_ASSERT(uri.host.s == NULL);
+
+        CU_ASSERT(uri.port == COAP_DEFAULT_PORT);
+
+        CU_ASSERT(uri.path.length == 13);
+        CU_ASSERT_NSTRING_EQUAL(uri.path.s, "absolute/path", 13);
+
+        CU_ASSERT(uri.query.length == 0);
+        CU_ASSERT(uri.query.s == NULL);
+    }
+    else
+    {
+        CU_FAIL("uri parser error");
+    }
+}
+
+void t_parse_uri11(void)
+{
+    char teststr[] = "coap://xn--18j4d.example/%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF";
+    int result;
+    coap_uri_t uri;
+    unsigned char buf[40];
+    size_t buflen = sizeof(buf);
+
+    /* The list of path segments to check against. Each segment is
+     preceded by a dummy option indicating that holds the (dummy)
+     delta value 0 and the actual segment length. */
+    const unsigned char checkbuf[] =
+    { 0x0d, 0x02, 0xE3, 0x81, 0x93, 0xE3, 0x82, 0x93, 0xE3, 0x81, 0xAB, 0xE3, 0x81, 0xA1, 0xE3,
+            0x81, 0xAF };
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result == 0)
+    {
+        CU_ASSERT(uri.host.length == 17);
+        CU_ASSERT_NSTRING_EQUAL(uri.host.s, "xn--18j4d.example", 17);
+
+        CU_ASSERT(uri.port == COAP_DEFAULT_PORT);
+
+        CU_ASSERT(uri.path.length == 45);
+        CU_ASSERT_NSTRING_EQUAL(uri.path.s, "%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF", 45);
+
+        CU_ASSERT(uri.query.length == 0);
+        CU_ASSERT(uri.query.s == NULL);
+
+        /* check path segments */
+        result = coap_split_path(uri.path.s, uri.path.length, buf, &buflen);
+        CU_ASSERT(result == 1);
+        CU_ASSERT(buflen == sizeof(checkbuf));
+        CU_ASSERT_NSTRING_EQUAL(buf, checkbuf, buflen);
+    }
+    else
+    {
+        CU_FAIL("uri parser error");
+    }
+}
+
+void t_parse_uri12(void)
+{
+    char teststr[] = "coap://198.51.100.1:61616//%2F//?%2F%2F&?%26";
+    int result;
+    coap_uri_t uri;
+    unsigned char buf[40];
+    size_t buflen = sizeof(buf);
+
+    /* The list of path segments to check against. Each segment is
+     preceded by a dummy option indicating that holds the (dummy)
+     delta value 0 and the actual segment length. */
+    const unsigned char uricheckbuf[] =
+    { 0x00, 0x01, 0x2f, 0x00, 0x00 };
+    const unsigned char querycheckbuf[] =
+    { 0x02, 0x2f, 0x2f, 0x02, 0x3f, 0x26 };
+
+    result = coap_split_uri((unsigned char *) teststr, strlen(teststr), &uri);
+    if (result == 0)
+    {
+        CU_ASSERT(uri.host.length == 12);
+        CU_ASSERT_NSTRING_EQUAL(uri.host.s, "198.51.100.1", 12);
+
+        CU_ASSERT(uri.port == 61616);
+
+        CU_ASSERT(uri.path.length == 6);
+        CU_ASSERT_NSTRING_EQUAL(uri.path.s, "/%2F//", 6);
+
+        CU_ASSERT(uri.query.length == 11);
+        CU_ASSERT_NSTRING_EQUAL(uri.query.s, "%2F%2F&?%26", 11);
+
+        /* check path segments */
+        result = coap_split_path(uri.path.s, uri.path.length, buf, &buflen);
+        CU_ASSERT(result == 4);
+        CU_ASSERT(buflen == sizeof(uricheckbuf));
+        CU_ASSERT_NSTRING_EQUAL(buf, uricheckbuf, buflen);
+
+        /* check query segments */
+        buflen = sizeof(buf);
+        result = coap_split_query(uri.query.s, uri.query.length, buf, &buflen);
+        CU_ASSERT(result == 2);
+        CU_ASSERT(buflen == sizeof(querycheckbuf));
+        CU_ASSERT_NSTRING_EQUAL(buf, querycheckbuf, buflen);
+    }
+    else
+    {
+        CU_FAIL("uri parser error");
+    }
+}
+
+void t_parse_uri13(void)
+{
+    char teststr[] __attribute__ ((aligned (8))) =
+    { 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 'f', 'o', 'o', 0x3b, '.', 'w', 'e', 'l', 'l', '-', 'k',
+            'n', 'o', 'w', 'n', 0x04, 'c', 'o', 'r', 'e' };
+
+    coap_pdu_t pdu =
+    { .max_size = sizeof(teststr), .hdr = (coap_hdr_t *) teststr, .length = sizeof(teststr) };
+
+    coap_key_t key;
+
+    coap_hash_request_uri(&pdu, key);
+
+    CU_ASSERT(sizeof(key) == sizeof(COAP_DEFAULT_WKC_HASHKEY) - 1);
+    CU_ASSERT_NSTRING_EQUAL(key, COAP_DEFAULT_WKC_HASHKEY, sizeof(key));
+}
+
+CU_pSuite t_init_uri_tests(void)
+{
+    CU_pSuite suite;
+
+    suite = CU_add_suite("uri parser", NULL, NULL);
+    if (!suite)
+    { /* signal error */
+        fprintf(stderr, "W: cannot add uri parser test suite (%s)\n", CU_get_error_msg());
+
+        return NULL;
+    }
+
+#define URI_TEST(s,t)                                                \
+  if (!CU_ADD_TEST(s,t)) {                                           \
+    fprintf(stderr, "W: cannot add uri parser test (%s)\n",          \
+           CU_get_error_msg());                                      \
+  }
+
+    URI_TEST(suite, t_parse_uri1);
+    URI_TEST(suite, t_parse_uri2);
+    URI_TEST(suite, t_parse_uri3);
+    URI_TEST(suite, t_parse_uri4);
+    URI_TEST(suite, t_parse_uri5);
+    URI_TEST(suite, t_parse_uri6);
+    URI_TEST(suite, t_parse_uri7);
+    URI_TEST(suite, t_parse_uri8);
+    URI_TEST(suite, t_parse_uri9);
+    URI_TEST(suite, t_parse_uri10);
+    URI_TEST(suite, t_parse_uri11);
+    URI_TEST(suite, t_parse_uri12);
+    URI_TEST(suite, t_parse_uri13);
+
+    return suite;
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_uri.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_uri.h
new file mode 100644 (file)
index 0000000..165fad3
--- /dev/null
@@ -0,0 +1,11 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <CUnit/CUnit.h>
+
+CU_pSuite t_init_uri_tests(void);
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_wellknown.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_wellknown.c
new file mode 100644 (file)
index 0000000..97584d8
--- /dev/null
@@ -0,0 +1,337 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2013--2014 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <assert.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <coap.h>
+#include <netinet/in.h>
+#include "test_wellknown.h"
+
+#define TEST_PDU_SIZE 120
+#define TEST_URI_LEN    4
+
+coap_context_t *ctx; /* Holds the coap context for most tests */
+coap_pdu_t *pdu; /* Holds the parsed PDU for most tests */
+
+extern coap_pdu_t *wellknown_response(coap_context_t *, coap_pdu_t *);
+extern int print_wellknown(coap_context_t *context, unsigned char *buf, size_t *buflen,
+        size_t offset, coap_opt_t *query_filter);
+
+void t_wellknown1(void)
+{
+    coap_print_status_t result;
+    coap_resource_t *r;
+    unsigned char buf[40];
+    size_t buflen, offset, ofs;
+
+    char teststr[] =
+    { /* </>;title="some attribute";ct=0 (31 chars) */
+    '<', '/', '>', ';', 't', 'i', 't', 'l', 'e', '=', '"', 's', 'o', 'm', 'e', ' ', 'a', 't', 't',
+            'r', 'i', 'b', 'u', 't', 'e', '"', ';', 'c', 't', '=', '0' };
+
+    r = coap_resource_init(NULL, 0, 0);
+
+    coap_add_attr(r, (unsigned char *) "ct", 2, (unsigned char *) "0", 1, 0);
+    coap_add_attr(r, (unsigned char *) "title", 5, (unsigned char *) "\"some attribute\"", 16, 0);
+
+    coap_add_resource(ctx, r);
+
+    for (offset = 0; offset < sizeof(teststr); offset++)
+    {
+        ofs = offset;
+        buflen = sizeof(buf);
+
+        result = coap_print_link(r, buf, &buflen, &ofs);
+
+        CU_ASSERT(result == sizeof(teststr) - offset);
+        CU_ASSERT(buflen == sizeof(teststr));
+        CU_ASSERT(memcmp(buf, teststr + offset, sizeof(teststr) - offset) == 0);
+    }
+
+    /* offset points behind teststr */
+    ofs = offset;
+    buflen = sizeof(buf);
+    result = coap_print_link(r, buf, &buflen, &ofs);
+
+    CU_ASSERT(result == 0);
+    CU_ASSERT(buflen == sizeof(teststr));
+
+    /* offset exceeds buffer */
+    buflen = sizeof(buf);
+    ofs = buflen;
+    result = coap_print_link(r, buf, &buflen, &ofs);
+
+    CU_ASSERT(result == 0);
+    CU_ASSERT(buflen == sizeof(teststr));
+}
+
+void t_wellknown2(void)
+{
+    coap_print_status_t result;
+    coap_resource_t *r;
+    unsigned char buf[10]; /* smaller than teststr */
+    size_t buflen, offset, ofs;
+
+    char teststr[] =
+    { /* ,</abcd>;if="one";obs (21 chars) */
+    '<', '/', 'a', 'b', 'c', 'd', '>', ';', 'i', 'f', '=', '"', 'o', 'n', 'e', '"', ';', 'o', 'b',
+            's' };
+
+    r = coap_resource_init((unsigned char *) "abcd", 4, 0);
+    r->observable = 1;
+    coap_add_attr(r, (unsigned char *) "if", 2, (unsigned char *) "\"one\"", 5, 0);
+
+    coap_add_resource(ctx, r);
+
+    for (offset = 0; offset < sizeof(teststr) - sizeof(buf); offset++)
+    {
+        ofs = offset;
+        buflen = sizeof(buf);
+
+        result = coap_print_link(r, buf, &buflen, &ofs);
+
+        CU_ASSERT(result == (COAP_PRINT_STATUS_TRUNC | sizeof(buf)));
+        CU_ASSERT(buflen == sizeof(teststr));
+        CU_ASSERT(ofs == 0);
+        CU_ASSERT(memcmp(buf, teststr + offset, sizeof(buf)) == 0);
+    }
+
+    /* from here on, the resource description fits into buf */
+    for (; offset < sizeof(teststr); offset++)
+    {
+        ofs = offset;
+        buflen = sizeof(buf);
+        result = coap_print_link(r, buf, &buflen, &ofs);
+
+        CU_ASSERT(result == sizeof(teststr) - offset);
+        CU_ASSERT(buflen == sizeof(teststr));
+        CU_ASSERT(ofs == 0);
+        CU_ASSERT(memcmp(buf, teststr + offset, COAP_PRINT_OUTPUT_LENGTH(result)) == 0);
+    }
+
+    /* offset exceeds buffer */
+    buflen = sizeof(buf);
+    ofs = offset;
+    result = coap_print_link(r, buf, &buflen, &ofs);
+    CU_ASSERT(result == 0);
+    CU_ASSERT(buflen == sizeof(teststr));
+    CU_ASSERT(ofs == offset - sizeof(teststr));
+}
+
+void t_wellknown3(void)
+{
+    coap_print_status_t result;
+    int j;
+    coap_resource_t *r;
+    static char uris[2 * COAP_MAX_PDU_SIZE];
+    unsigned char *uribuf = (unsigned char *) uris;
+    unsigned char buf[40];
+    size_t buflen = sizeof(buf);
+    size_t offset;
+    const unsigned short num_resources = (sizeof(uris) / TEST_URI_LEN) - 1;
+
+    /* ,</0000> (TEST_URI_LEN + 4 chars) */
+    for (j = 0; j < num_resources; j++)
+    {
+        int len = snprintf((char *) uribuf, TEST_URI_LEN + 1, "%0*d", TEST_URI_LEN, j);
+        r = coap_resource_init(uribuf, len, 0);
+        coap_add_resource(ctx, r);
+        uribuf += TEST_URI_LEN;
+    }
+
+    /* the following test assumes that the first two resources from
+     * t_wellknown1() and t_wellknown2() need more than buflen
+     * characters. Otherwise, CU_ASSERT(result > 0) will fail.
+     */
+    offset = num_resources * (TEST_URI_LEN + 4);
+    result = print_wellknown(ctx, buf, &buflen, offset, NULL);
+    CU_ASSERT((result & COAP_PRINT_STATUS_ERROR) == 0);
+    CU_ASSERT(COAP_PRINT_OUTPUT_LENGTH(result) > 0);
+}
+
+/* Create wellknown response for request without Block-option. */
+void t_wellknown4(void)
+{
+    coap_pdu_t *response;
+    coap_block_t block;
+
+    response = wellknown_response(ctx, pdu);
+
+    CU_ASSERT_PTR_NOT_NULL(response);
+
+    CU_ASSERT(coap_get_block(response, COAP_OPTION_BLOCK2, &block) != 0);
+
+    CU_ASSERT(block.num == 0);
+    CU_ASSERT(block.m == 1);
+    CU_ASSERT(
+            1 << (block.szx + 4)
+                    == (unsigned char *) response->hdr + response->length - response->data);
+
+    coap_delete_pdu(response);
+}
+
+/* Create wellknown response for request with Block2-option and an szx
+ * value smaller than COAP_MAX_BLOCK_SZX.
+ */
+void t_wellknown5(void)
+{
+    coap_pdu_t *response;
+    coap_block_t inblock =
+    { .num = 1, .m = 0, .szx = 1 };
+    coap_block_t block;
+    unsigned char buf[3];
+
+    if (!coap_add_option(pdu, COAP_OPTION_BLOCK2,
+            coap_encode_var_bytes(buf, ((inblock.num << 4) | (inblock.m << 3) | inblock.szx)), buf))
+    {
+        CU_FAIL("cannot add Block2 option");
+        return;
+    }
+
+    response = wellknown_response(ctx, pdu);
+
+    CU_ASSERT_PTR_NOT_NULL(response);
+
+    CU_ASSERT(coap_get_block(response, COAP_OPTION_BLOCK2, &block) != 0);
+
+    CU_ASSERT(block.num == inblock.num);
+    CU_ASSERT(block.m == 1);
+    CU_ASSERT(
+            1 << (block.szx + 4)
+                    == (unsigned char *) response->hdr + response->length - response->data);
+
+    coap_delete_pdu(response);
+}
+
+void t_wellknown6(void)
+{
+    coap_pdu_t *response;
+    coap_block_t block =
+    { .num = 0, .szx = 6 };
+    unsigned char buf[TEST_PDU_SIZE];
+
+    do
+    {
+        coap_pdu_clear(pdu, pdu->max_size); /* clear PDU */
+
+        pdu->hdr->type = COAP_MESSAGE_NON;
+        pdu->hdr->code = COAP_REQUEST_GET;
+        pdu->hdr->id = htons(0x1234);
+
+        CU_ASSERT_PTR_NOT_NULL(pdu);
+
+        if (!pdu
+                || !coap_add_option(pdu, COAP_OPTION_BLOCK2,
+                        coap_encode_var_bytes(buf, ((block.num << 4) | block.szx)), buf))
+        {
+            CU_FAIL("cannot create request");
+            return;
+        }
+
+        response = wellknown_response(ctx, pdu);
+
+        CU_ASSERT_PTR_NOT_NULL(response);
+
+        /* coap_show_pdu(response); */
+
+        CU_ASSERT(coap_get_block(response, COAP_OPTION_BLOCK2, &block) != 0);
+
+        block.num++;
+        coap_delete_pdu(response);
+    } while (block.m == 1);
+}
+
+int t_wkc_tests_create(void)
+{
+    coap_address_t addr;
+
+    coap_address_init(&addr);
+
+    addr.size = sizeof(struct sockaddr_in6);
+    addr.addr.sin6.sin6_family = AF_INET6;
+    addr.addr.sin6.sin6_addr = in6addr_any;
+    addr.addr.sin6.sin6_port = htons(COAP_DEFAULT_PORT);
+
+    ctx = coap_new_context(&addr);
+
+    pdu = coap_pdu_init(0, 0, 0, TEST_PDU_SIZE);
+#if 0
+    /* add resources to coap context */
+    if (ctx && pdu)
+    {
+        coap_resource_t *r;
+        static char _buf[2 * COAP_MAX_PDU_SIZE];
+        unsigned char *buf = (unsigned char *)_buf;
+        int i;
+
+        /* </>;title="some attribute";ct=0 (31 chars) */
+        r = coap_resource_init(NULL, 0, 0);
+
+        coap_add_attr(r, (unsigned char *)"ct", 2, (unsigned char *)"0", 1, 0);
+        coap_add_attr(r, (unsigned char *)"title", 5, (unsigned char *)"\"some attribute\"", 16, 0);
+        coap_add_resource(ctx, r);
+
+        /* ,</abcd>;if="one";obs (21 chars) */
+        r = coap_resource_init((unsigned char *)"abcd", 4, 0);
+        r->observable = 1;
+        coap_add_attr(r, (unsigned char *)"if", 2, (unsigned char *)"\"one\"", 5, 0);
+
+        coap_add_resource(ctx, r);
+
+        /* ,</0000> (TEST_URI_LEN + 4 chars) */
+        for (i = 0; i < sizeof(_buf) / (TEST_URI_LEN + 4); i++)
+        {
+            int len = snprintf((char *)buf, TEST_URI_LEN + 1,
+                    "%0*d", TEST_URI_LEN, i);
+            r = coap_resource_init(buf, len, 0);
+            coap_add_resource(ctx, r);
+            buf += TEST_URI_LEN + 1;
+        }
+
+    }
+#endif  
+    return ctx == NULL || pdu == NULL;
+}
+
+int t_wkc_tests_remove(void)
+{
+    coap_delete_pdu(pdu);
+    coap_free_context(ctx);
+    return 0;
+}
+
+CU_pSuite t_init_wellknown_tests(void)
+{
+    CU_pSuite suite;
+
+    suite = CU_add_suite(".well-known/core", t_wkc_tests_create, t_wkc_tests_remove);
+    if (!suite)
+    { /* signal error */
+        fprintf(stderr, "W: cannot add .well-known/core test suite (%s)\n", CU_get_error_msg());
+
+        return NULL;
+    }
+
+#define WKC_TEST(s,t)                                                \
+  if (!CU_ADD_TEST(s,t)) {                                           \
+    fprintf(stderr, "W: cannot add .well-known/core test (%s)\n",            \
+           CU_get_error_msg());                                      \
+  }
+
+    WKC_TEST(suite, t_wellknown1);
+    WKC_TEST(suite, t_wellknown2);
+    WKC_TEST(suite, t_wellknown3);
+    WKC_TEST(suite, t_wellknown4);
+    WKC_TEST(suite, t_wellknown5);
+    WKC_TEST(suite, t_wellknown6);
+
+    return suite;
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_wellknown.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/test_wellknown.h
new file mode 100644 (file)
index 0000000..47f20b3
--- /dev/null
@@ -0,0 +1,11 @@
+/* libcoap unit tests
+ *
+ * Copyright (C) 2013 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include <CUnit/CUnit.h>
+
+CU_pSuite t_init_wellknown_tests(void);
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/testdriver.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/tests/testdriver.c
new file mode 100644 (file)
index 0000000..87f1404
--- /dev/null
@@ -0,0 +1,53 @@
+#include <stdio.h>
+
+#include <CUnit/CUnit.h>
+#include <CUnit/Basic.h>
+
+/* #include <coap.h> */
+
+#include "test_uri.h"
+#include "test_options.h"
+#include "test_pdu.h"
+#include "test_error_response.h"
+#include "test_sendqueue.h"
+#include "test_wellknown.h"
+
+int main(int argc, char **argv)
+{
+    CU_ErrorCode result;
+    CU_BasicRunMode run_mode = CU_BRM_VERBOSE;
+
+    if (CU_initialize_registry() != CUE_SUCCESS)
+    {
+        fprintf(stderr, "E: test framework initialization failed\n");
+        return -2;
+    }
+
+    t_init_uri_tests();
+    t_init_option_tests();
+    t_init_pdu_tests();
+    t_init_error_response_tests();
+    t_init_sendqueue_tests();
+    t_init_wellknown_tests();
+
+    CU_basic_set_mode(run_mode);
+    result = CU_basic_run_tests();
+
+    CU_cleanup_registry();
+
+    printf("\n\nknown bugs:\n");
+    printf("\t- Test: t_parse_uri5 ... FAILED\n"
+            "\t    1. test_uri.c:109  - CU_FAIL(\"invalid port not detected\")\n");
+    printf("\t- Test: t_parse_uri12 ... FAILED\n"
+            "\t    1. test_uri.c:301  - result == 4\n"
+            "\t    2. test_uri.c:302  - buflen == sizeof(uricheckbuf)\n"
+            "\t    3. test_uri.c:303  - CU_ASSERT_NSTRING_EQUAL(buf,uricheckbuf,buflen)\n"
+            "\t    4. test_uri.c:309  - buflen == sizeof(querycheckbuf)\n"
+            "\t    5. test_uri.c:310  - CU_ASSERT_NSTRING_EQUAL(buf,querycheckbuf,buflen)\n");
+    printf(
+            "\t- Test: t_error_response8 ... FAILED\n"
+                    "\t    1. test_error_response.c:310  - response->length == sizeof(teststr)\n"
+                    "\t    2. test_error_response.c:316  - memcmp(response->hdr, teststr, sizeof(teststr)) == 0\n");
+
+    return result;
+}
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/uri.c b/resource/csdk/connectivity/lib/libcoap-4.1.1/uri.c
new file mode 100644 (file)
index 0000000..1b78686
--- /dev/null
@@ -0,0 +1,577 @@
+/* uri.c -- helper functions for URI treatment
+ *
+ * Copyright (C) 2010--2012 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#include "config.h"
+
+#if defined(HAVE_ASSERT_H) && !defined(assert)
+# include <assert.h>
+#endif
+
+#include <stdio.h>
+#include <string.h>
+#include <ctype.h>
+
+#include "mem.h"
+#include "debug.h"
+#include "pdu.h"
+#include "option.h"
+#include "uri.h"
+
+/** 
+ * A length-safe version of strchr(). This function returns a pointer
+ * to the first occurrence of @p c  in @p s, or @c NULL if not found.
+ * 
+ * @param s   The string to search for @p c.
+ * @param len The length of @p s.
+ * @param c   The character to search.
+ * 
+ * @return A pointer to the first occurence of @p c, or @c NULL 
+ * if not found.
+ */
+static inline unsigned char *
+strnchr(unsigned char *s, size_t len, unsigned char c)
+{
+    while (len && *s++ != c)
+        --len;
+
+    return len ? s : NULL;
+}
+
+int coap_split_uri(unsigned char *str_var, size_t len, coap_uri_t *uri)
+{
+
+    unsigned char *p, *q;
+    int secure = 0, res = 0;
+
+    if (!str_var || !uri)
+        return -1;
+
+    memset(uri, 0, sizeof(coap_uri_t));
+    uri->port = COAP_DEFAULT_PORT;
+
+    /* search for scheme */
+    p = str_var;
+    if (*p == '/')
+    {
+        q = p;
+        goto path;
+    }
+
+    q = (unsigned char *) COAP_DEFAULT_SCHEME;
+    while (len && *q && tolower(*p) == *q)
+    {
+        ++p;
+        ++q;
+        --len;
+    }
+
+    /* If q does not point to the string end marker '\0', the schema
+     * identifier is wrong. */
+    if (*q)
+    {
+        res = -1;
+        goto error;
+    }
+
+    /* There might be an additional 's', indicating the secure version: */
+    if (len && (secure = tolower(*p) == 's'))
+    {
+        ++p;
+        --len;
+    }
+
+    q = (unsigned char *) "://";
+    while (len && *q && tolower(*p) == *q)
+    {
+        ++p;
+        ++q;
+        --len;
+    }
+
+    if (*q)
+    {
+        res = -2;
+        goto error;
+    }
+
+    /* p points to beginning of Uri-Host */
+    q = p;
+    if (len && *p == '[')
+    { /* IPv6 address reference */
+        ++p;
+
+        while (len && *q != ']')
+        {
+            ++q;
+            --len;
+        }
+
+        if (!len || *q != ']' || p == q)
+        {
+            res = -3;
+            goto error;
+        }
+
+        COAP_SET_STR(&uri->host, q - p, p);
+        ++q;
+        --len;
+    }
+    else
+    { /* IPv4 address or FQDN */
+        while (len && *q != ':' && *q != '/' && *q != '?')
+        {
+            // *q = tolower(*q);
+
+            ++q;
+            --len;
+        }
+
+        if (p == q)
+        {
+            res = -3;
+            goto error;
+        }
+
+        COAP_SET_STR(&uri->host, q - p, p);
+
+    }
+
+    /* check for Uri-Port */
+    if (len && *q == ':')
+    {
+        p = ++q;
+        --len;
+
+        while (len && isdigit(*q))
+        {
+            ++q;
+            --len;
+        }
+
+        if (p < q)
+        { /* explicit port number given */
+            int uri_port = 0;
+
+            while (p < q)
+                uri_port = uri_port * 10 + (*p++ - '0');
+
+            uri->port = uri_port;
+        }
+    }
+
+    path: /* at this point, p must point to an absolute path */
+
+    if (!len)
+        goto end;
+
+    if (*q == '/')
+    {
+        p = ++q;
+        --len;
+
+        while (len && *q != '?')
+        {
+            ++q;
+            --len;
+        }
+
+        if (p < q)
+        {
+            COAP_SET_STR(&uri->path, q - p, p);
+            p = q;
+        }
+    }
+
+    /* Uri_Query */
+    if (len && *p == '?')
+    {
+        ++p;
+        --len;
+        COAP_SET_STR(&uri->query, len, p);
+        len = 0;
+    }
+
+    end: return len ? -1 : 0;
+
+    error: return res;
+}
+
+/** 
+ * Calculates decimal value from hexadecimal ASCII character given in
+ * @p c. The caller must ensure that @p c actually represents a valid
+ * heaxdecimal character, e.g. with isxdigit(3). 
+ *
+ * @hideinitializer
+ */
+#define hexchar_to_dec(c) ((c) & 0x40 ? ((c) & 0x0F) + 9 : ((c) & 0x0F))
+
+/** 
+ * Decodes percent-encoded characters while copying the string @p seg
+ * of size @p length to @p buf. The caller of this function must
+ * ensure that the percent-encodings are correct (i.e. the character
+ * '%' is always followed by two hex digits. and that @p buf provides
+ * sufficient space to hold the result. This function is supposed to
+ * be called by make_decoded_option() only.
+ * 
+ * @param seg     The segment to decode and copy.
+ * @param length  Length of @p seg.
+ * @param buf     The result buffer.
+ */
+void decode_segment(const unsigned char *seg, size_t length, unsigned char *buf)
+{
+
+    while (length--)
+    {
+
+        if (*seg == '%')
+        {
+            *buf = (hexchar_to_dec(seg[1]) << 4) + hexchar_to_dec(seg[2]);
+
+            seg += 2;
+            length -= 2;
+        }
+        else
+        {
+            *buf = *seg;
+        }
+
+        ++buf;
+        ++seg;
+    }
+}
+
+/**
+ * Runs through the given path (or query) segment and checks if
+ * percent-encodings are correct. This function returns @c -1 on error
+ * or the length of @p s when decoded.
+ */
+int check_segment(const unsigned char *s, size_t length)
+{
+
+    size_t n = 0;
+
+    while (length)
+    {
+        if (*s == '%')
+        {
+            if (length < 2 || !(isxdigit(s[1]) && isxdigit(s[2])))
+                return -1;
+
+            s += 2;
+            length -= 2;
+        }
+
+        ++s;
+        ++n;
+        --length;
+    }
+
+    return n;
+}
+
+/** 
+ * Writes a coap option from given string @p s to @p buf. @p s should
+ * point to a (percent-encoded) path or query segment of a coap_uri_t
+ * object.  The created option will have type @c 0, and the length
+ * parameter will be set according to the size of the decoded string.
+ * On success, this function returns the option's size, or a value
+ * less than zero on error. This function must be called from
+ * coap_split_path_impl() only.
+ * 
+ * @param s       The string to decode.
+ * @param length  The size of the percent-encoded string @p s.
+ * @param buf     The buffer to store the new coap option.
+ * @param buflen  The maximum size of @p buf.
+ * 
+ * @return The option's size, or @c -1 on error.
+ *
+ * @bug This function does not split segments that are bigger than 270
+ * bytes.
+ */
+int make_decoded_option(const unsigned char *s, size_t length, unsigned char *buf, size_t buflen)
+{
+    int res;
+    size_t written;
+
+    if (!buflen)
+    {
+        debug("make_decoded_option(): buflen is 0!\n");
+        return -1;
+    }
+
+    res = check_segment(s, length);
+    if (res < 0)
+        return -1;
+
+    /* write option header using delta 0 and length res */
+    written = coap_opt_setheader(buf, buflen, 0, res);
+
+    assert(written <= buflen);
+
+    if (!written) /* encoding error */
+        return -1;
+
+    buf += written; /* advance past option type/length */
+    buflen -= written;
+
+    if (buflen < (size_t) res)
+    {
+        debug("buffer too small for option\n");
+        return -1;
+    }
+
+    decode_segment(s, length, buf);
+
+    return written + res;
+}
+
+#ifndef min
+#define min(a,b) ((a) < (b) ? (a) : (b))
+#endif
+
+typedef void (*segment_handler_t)(unsigned char *, size_t, void *);
+
+/** 
+ * Splits the given string into segments. You should call one of the
+ * macros coap_split_path() or coap_split_query() instead.
+ * 
+ * @param parse_iter The iterator used for tokenizing.
+ * @param h      A handler that is called with every token.
+ * @param data   Opaque data that is passed to @p h when called.
+ * 
+ * @return The number of characters that have been parsed from @p s.
+ */
+size_t coap_split_path_impl(coap_parse_iterator_t *parse_iter, segment_handler_t h, void *data)
+{
+    unsigned char *seg;
+    size_t length;
+
+    assert(parse_iter);
+    assert(h);
+
+    length = parse_iter->n;
+
+    while ((seg = coap_parse_next(parse_iter)))
+    {
+
+        /* any valid path segment is handled here: */
+        h(seg, parse_iter->segment_length, data);
+    }
+
+    return length - (parse_iter->n - parse_iter->segment_length);
+}
+
+struct cnt_str
+{
+    str buf;
+    int n;
+};
+
+void write_option(unsigned char *s, size_t len, void *data)
+{
+    struct cnt_str *state = (struct cnt_str *) data;
+    int res;
+    assert(state);
+
+    /* skip empty segments and those that consist of only one or two dots */
+    if (memcmp(s, "..", min(len,2)) == 0)
+        return;
+
+    res = make_decoded_option(s, len, state->buf.s, state->buf.length);
+    if (res > 0)
+    {
+        state->buf.s += res;
+        state->buf.length -= res;
+        state->n++;
+    }
+}
+
+int coap_split_path(const unsigned char *s, size_t length, unsigned char *buf, size_t *buflen)
+{
+    struct cnt_str tmp =
+    {
+    { *buflen, buf }, 0 };
+    coap_parse_iterator_t pi;
+
+    coap_parse_iterator_init((unsigned char *) s, length, '/', (unsigned char *) "?#", 2, &pi);
+    coap_split_path_impl(&pi, write_option, &tmp);
+
+    *buflen = *buflen - tmp.buf.length;
+    return tmp.n;
+}
+
+int coap_split_query(const unsigned char *s, size_t length, unsigned char *buf, size_t *buflen)
+{
+    struct cnt_str tmp =
+    {
+    { *buflen, buf }, 0 };
+    coap_parse_iterator_t pi;
+
+    coap_parse_iterator_init((unsigned char *) s, length, '&', (unsigned char *) "#", 1, &pi);
+
+    coap_split_path_impl(&pi, write_option, &tmp);
+
+    *buflen = tmp.buf.length;
+    return tmp.n;
+}
+
+#define URI_DATA(uriobj) ((unsigned char *)(uriobj) + sizeof(coap_uri_t))
+
+coap_uri_t *
+coap_new_uri(const unsigned char *uri, unsigned int length)
+{
+    unsigned char *result;
+
+    result = coap_malloc(length + 1 + sizeof(coap_uri_t));
+
+    if (!result)
+        return NULL;
+
+    memcpy(URI_DATA(result), uri, length);
+    URI_DATA(result)[length] = '\0'; /* make it zero-terminated */
+
+    if (coap_split_uri(URI_DATA(result), length, (coap_uri_t *) result) < 0)
+    {
+        free(result);
+        return NULL;
+    }
+    return (coap_uri_t *) result;
+}
+
+coap_uri_t *
+coap_clone_uri(const coap_uri_t *uri)
+{
+    coap_uri_t *result;
+
+    if (!uri)
+        return NULL;
+
+    result = (coap_uri_t *) coap_malloc( uri->query.length + uri->host.length +
+            uri->path.length + sizeof(coap_uri_t) + 1);
+
+    if (!result)
+        return NULL;
+
+    memset(result, 0, sizeof(coap_uri_t));
+
+    result->port = uri->port;
+
+    if (uri->host.length)
+    {
+        result->host.s = URI_DATA(result);
+        result->host.length = uri->host.length;
+
+        memcpy(result->host.s, uri->host.s, uri->host.length);
+    }
+
+    if (uri->path.length)
+    {
+        result->path.s = URI_DATA(result) + uri->host.length;
+        result->path.length = uri->path.length;
+
+        memcpy(result->path.s, uri->path.s, uri->path.length);
+    }
+
+    if (uri->query.length)
+    {
+        result->query.s = URI_DATA(result) + uri->host.length + uri->path.length;
+        result->query.length = uri->query.length;
+
+        memcpy(result->query.s, uri->query.s, uri->query.length);
+    }
+
+    return result;
+}
+
+/* hash URI path segments */
+
+/* The function signature of coap_hash() is different from
+ * segment_handler_t hence we use this wrapper as safe typecast. */
+static inline void hash_segment(unsigned char *s, size_t len, void *data)
+{
+    coap_hash(s, len, data);
+}
+
+int coap_hash_path(const unsigned char *path, size_t len, coap_key_t key)
+{
+    coap_parse_iterator_t pi;
+
+    if (!path)
+        return 0;
+
+    memset(key, 0, sizeof(coap_key_t));
+
+    coap_parse_iterator_init((unsigned char *) path, len, '/', (unsigned char *) "?#", 2, &pi);
+    coap_split_path_impl(&pi, hash_segment, key);
+
+    return 1;
+}
+
+/* iterator functions */
+
+coap_parse_iterator_t *
+coap_parse_iterator_init(unsigned char *s, size_t n, unsigned char separator, unsigned char *delim,
+        size_t dlen, coap_parse_iterator_t *pi)
+{
+    assert(pi);
+    assert(separator);
+
+    pi->separator = separator;
+    pi->delim = delim;
+    pi->dlen = dlen;
+    pi->pos = s;
+    pi->n = n;
+    pi->segment_length = 0;
+
+    return pi;
+}
+
+unsigned char *
+coap_parse_next(coap_parse_iterator_t *pi)
+{
+    unsigned char *p;
+
+    if (!pi)
+        return NULL;
+
+    /* proceed to the next segment */
+    pi->n -= pi->segment_length;
+    pi->pos += pi->segment_length;
+    pi->segment_length = 0;
+
+    /* last segment? */
+    if (!pi->n || strnchr(pi->delim, pi->dlen, *pi->pos))
+    {
+        pi->pos = NULL;
+        return NULL;
+    }
+
+    /* skip following separator (the first segment might not have one) */
+    if (*pi->pos == pi->separator)
+    {
+        ++pi->pos;
+        --pi->n;
+    }
+
+    p = pi->pos;
+
+    while (pi->segment_length < pi->n && *p != pi->separator && !strnchr(pi->delim, pi->dlen, *p))
+    {
+        ++p;
+        ++pi->segment_length;
+    }
+
+    if (!pi->n)
+    {
+        pi->pos = NULL;
+        pi->segment_length = 0;
+    }
+
+    return pi->pos;
+}
+
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/uri.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/uri.h
new file mode 100644 (file)
index 0000000..20dd28e
--- /dev/null
@@ -0,0 +1,171 @@
+/* uri.h -- helper functions for URI treatment
+ *
+ * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
+ *
+ * This file is part of the CoAP library libcoap. Please see
+ * README for terms of use. 
+ */
+
+#ifndef _COAP_URI_H_
+#define _COAP_URI_H_
+
+#include "hashkey.h"
+#include "str.h"
+
+/** Representation of parsed URI. Components may be filled from a
+ * string with coap_split_uri() and can be used as input for
+ * option-creation functions. */
+typedef struct
+{
+    str host; /**< host part of the URI */
+    unsigned short port; /**< The port in host byte order */
+    str path; /**< Beginning of the first path segment. 
+     Use coap_split_path() to create Uri-Path options */
+    str query; /**<  The query part if present */
+} coap_uri_t;
+
+/**
+ * Creates a new coap_uri_t object from the specified URI. Returns the new
+ * object or NULL on error. The memory allocated by the new coap_uri_t
+ * must be released using coap_free().
+ * @param uri The URI path to copy.
+ * @para length The length of uri.
+ *
+ * @return New URI object or NULL on error.
+ */
+coap_uri_t *coap_new_uri(const unsigned char *uri, unsigned int length);
+
+/**
+ * Clones the specified coap_uri_t object. Thie function allocates sufficient
+ * memory to hold the coap_uri_t structure and its contents. The object must
+ * be released with coap_free(). */
+coap_uri_t *coap_clone_uri(const coap_uri_t *uri);
+
+/** 
+ * Calculates a hash over the given path and stores the result in 
+ * @p key. This function returns @c 0 on error or @c 1 on success.
+ * 
+ * @param path The URI path to generate hash for.
+ * @param len  The length of @p path.
+ * @param key  The output buffer.
+ * 
+ * @return @c 1 if @p key was set, @c 0 otherwise.
+ */
+int coap_hash_path(const unsigned char *path, size_t len, coap_key_t key);
+
+/**
+ * @defgroup uri_parse URI Parsing Functions
+ *
+ * CoAP PDUs contain normalized URIs with their path and query split into
+ * multiple segments. The functions in this module help splitting strings.
+ * @{
+ */
+
+/** 
+ * Iterator to for tokenizing a URI path or query. This structure must
+ * be initialized with coap_parse_iterator_init(). Call
+ * coap_parse_next() to walk through the tokens.
+ *
+ * @code
+ * unsigned char *token;
+ * coap_parse_iterator_t pi;
+ * coap_parse_iterator_init(uri.path.s, uri.path.length, '/', "?#", 2, &pi);
+ *
+ * while ((token = coap_parse_next(&pi))) {
+ *   ... do something with token ...
+ * }
+ * @endcode
+ */
+typedef struct
+{
+    size_t n; /**< number of remaining characters in buffer */
+    unsigned char separator; /**< segment separators */
+    unsigned char *delim; /**< delimiters where to split the string */
+    size_t dlen; /**< length of separator */
+    unsigned char *pos; /**< current position in buffer */
+    size_t segment_length; /**< length of current segment */
+} coap_parse_iterator_t;
+
+/** 
+ * Initializes the given iterator @p pi. 
+ * 
+ * @param s         The string to tokenize.
+ * @param n         The length of @p s.
+ * @param separator The separator character that delimits tokens.
+ * @param delim     A set of characters that delimit @s.
+ * @param dlen      The length of @p delim.
+ * @param pi        The iterator object to initialize.
+ * 
+ * @return The initialized iterator object @p pi.
+ */
+coap_parse_iterator_t *
+coap_parse_iterator_init(unsigned char *s, size_t n, unsigned char separator, unsigned char *delim,
+        size_t dlen, coap_parse_iterator_t *pi);
+
+/** 
+ * Updates the iterator @p pi to point to the next token. This
+ * function returns a pointer to that token or @c NULL if no more
+ * tokens exist. The contents of @p pi will be updated. In particular,
+ * @c pi->segment_length specifies the length of the current token, @c
+ * pi->pos points to its beginning.
+ * 
+ * @param pi The iterator to update.
+ * 
+ * @return The next token or @c NULL if no more tokens exist.
+ */
+unsigned char *coap_parse_next(coap_parse_iterator_t *pi);
+
+/** 
+ * Parses a given string into URI components. The identified syntactic
+ * components are stored in the result parameter @p uri. Optional URI
+ * components that are not specified will be set to { 0, 0 }, except
+ * for the port which is set to @c COAP_DEFAULT_PORT. This function
+ * returns @p 0 if parsing succeeded, a value less than zero
+ * otherwise.
+ * 
+ * @param str_var The string to split up.
+ * @param len     The actual length of @p str_var
+ * @param uri     The coap_uri_t object to store the result.
+ * @return @c 0 on success, or < 0 on error.
+ *
+ * @note The host name part will be converted to lower case by this
+ * function.
+ */
+int
+coap_split_uri(unsigned char *str_var, size_t len, coap_uri_t *uri);
+
+/** 
+ * Splits the given URI path into segments. Each segment is preceded
+ * by an option pseudo-header with delta-value 0 and the actual length
+ * of the respective segment after percent-decoding.
+ * 
+ * @param s      The path string to split. 
+ * @param length The actual length of @p s.
+ * @param buf    Result buffer for parsed segments. 
+ * @param buflen Maximum length of @p buf. Will be set to the actual number
+ * of bytes written into buf on success.
+ * 
+ * @return The number of segments created or @c -1 on error.
+ */
+int coap_split_path(const unsigned char *s, size_t length, unsigned char *buf, size_t *buflen);
+
+/** 
+ * Splits the given URI query into segments. Each segment is preceded
+ * by an option pseudo-header with delta-value 0 and the actual length
+ * of the respective query term.
+ * 
+ * @param s      The query string to split. 
+ * @param length The actual length of @p s.
+ * @param buf    Result buffer for parsed segments. 
+ * @param buflen Maximum length of @p buf. Will be set to the actual number
+ * of bytes written into buf on success.
+ * 
+ * @return The number of segments created or @c -1 on error.
+ *
+ * @bug This function does not reserve additional space for delta > 12.
+ */
+int coap_split_query(const unsigned char *s, size_t length, unsigned char *buf, size_t *buflen);
+
+/** @} */
+
+#endif /* _COAP_URI_H_ */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/uthash.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/uthash.h
new file mode 100644 (file)
index 0000000..21e8141
--- /dev/null
@@ -0,0 +1,974 @@
+/*
+ Copyright (c) 2003-2010, Troy D. Hanson     http://uthash.sourceforge.net
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef UTHASH_H
+#define UTHASH_H 
+
+#include <string.h>   /* memcmp,strlen */
+#include <stddef.h>   /* ptrdiff_t */
+
+/* These macros use decltype or the earlier __typeof GNU extension.
+ As decltype is only available in newer compilers (VS2010 or gcc 4.3+
+ when compiling c++ source) this code uses whatever method is needed
+ or, for VS2008 where neither is available, uses casting workarounds. */
+#ifdef _MSC_VER         /* MS compiler */
+#if _MSC_VER >= 1600 && defined(__cplusplus)  /* VS2010 or newer in C++ mode */
+#define DECLTYPE(x) (decltype(x))
+#else                   /* VS2008 or older (or VS2010 in C mode) */
+#define NO_DECLTYPE
+#define DECLTYPE(x)
+#endif
+#else                   /* GNU, Sun and other compilers */
+#define DECLTYPE(x) (__typeof(x))
+#endif
+
+#ifdef NO_DECLTYPE
+#define DECLTYPE_ASSIGN(dst,src)                                                 \
+do {                                                                             \
+  char **_da_dst = (char**)(&(dst));                                             \
+  *_da_dst = (char*)(src);                                                       \
+} while(0)
+#else 
+#define DECLTYPE_ASSIGN(dst,src)                                                 \
+do {                                                                             \
+  (dst) = DECLTYPE(dst)(src);                                                    \
+} while(0)
+#endif
+
+/* a number of the hash function use uint32_t which isn't defined on win32 */
+#ifdef _MSC_VER
+typedef unsigned int uint32_t;
+#else
+#include <inttypes.h>   /* uint32_t */
+#endif
+
+#define UTHASH_VERSION 1.9.3
+
+#ifndef uthash_fatal
+#define uthash_fatal(msg) exit(-1)        /* fatal error (out of memory,etc) */
+#endif
+#define uthash_malloc(sz) malloc(sz)      /* malloc fcn                      */
+#define uthash_free(ptr,sz) free(ptr)     /* free fcn                        */
+
+#define uthash_noexpand_fyi(tbl)          /* can be defined to log noexpand  */
+#define uthash_expand_fyi(tbl)            /* can be defined to log expands   */
+
+/* initial number of buckets */
+#define HASH_INITIAL_NUM_BUCKETS 32      /* initial number of buckets        */
+#define HASH_INITIAL_NUM_BUCKETS_LOG2 5  /* lg2 of initial number of buckets */
+#define HASH_BKT_CAPACITY_THRESH 10      /* expand when bucket count reaches */
+
+/* calculate the element whose hash handle address is hhe */
+#define ELMT_FROM_HH(tbl,hhp) ((void*)(((char*)(hhp)) - ((tbl)->hho)))
+
+#define HASH_FIND(hh,head,keyptr,keylen,out)                                     \
+do {                                                                             \
+  unsigned _hf_bkt,_hf_hashv;                                                    \
+  out=NULL;                                                                      \
+  if (head) {                                                                    \
+     HASH_FCN(keyptr,keylen, (head)->hh.tbl->num_buckets, _hf_hashv, _hf_bkt);   \
+     if (HASH_BLOOM_TEST((head)->hh.tbl, _hf_hashv)) {                           \
+       HASH_FIND_IN_BKT((head)->hh.tbl, hh, (head)->hh.tbl->buckets[ _hf_bkt ],  \
+                        keyptr,keylen,out);                                      \
+     }                                                                           \
+  }                                                                              \
+} while (0)
+
+#ifdef HASH_BLOOM
+#define HASH_BLOOM_BITLEN (1ULL << HASH_BLOOM)
+#define HASH_BLOOM_BYTELEN (HASH_BLOOM_BITLEN/8) + ((HASH_BLOOM_BITLEN%8) ? 1:0)
+#define HASH_BLOOM_MAKE(tbl)                                                     \
+do {                                                                             \
+  (tbl)->bloom_nbits = HASH_BLOOM;                                               \
+  (tbl)->bloom_bv = (uint8_t*)uthash_malloc(HASH_BLOOM_BYTELEN);                 \
+  if (!((tbl)->bloom_bv))  { uthash_fatal( "out of memory"); }                   \
+  memset((tbl)->bloom_bv, 0, HASH_BLOOM_BYTELEN);                                \
+  (tbl)->bloom_sig = HASH_BLOOM_SIGNATURE;                                       \
+} while (0);
+
+#define HASH_BLOOM_FREE(tbl)                                                     \
+do {                                                                             \
+  uthash_free((tbl)->bloom_bv, HASH_BLOOM_BYTELEN);                              \
+} while (0);
+
+#define HASH_BLOOM_BITSET(bv,idx) (bv[(idx)/8] |= (1U << ((idx)%8)))
+#define HASH_BLOOM_BITTEST(bv,idx) (bv[(idx)/8] & (1U << ((idx)%8)))
+
+#define HASH_BLOOM_ADD(tbl,hashv)                                                \
+  HASH_BLOOM_BITSET((tbl)->bloom_bv, (hashv & (uint32_t)((1ULL << (tbl)->bloom_nbits) - 1)))
+
+#define HASH_BLOOM_TEST(tbl,hashv)                                               \
+  HASH_BLOOM_BITTEST((tbl)->bloom_bv, (hashv & (uint32_t)((1ULL << (tbl)->bloom_nbits) - 1)))
+
+#else
+#define HASH_BLOOM_MAKE(tbl) 
+#define HASH_BLOOM_FREE(tbl) 
+#define HASH_BLOOM_ADD(tbl,hashv) 
+#define HASH_BLOOM_TEST(tbl,hashv) (1)
+#endif
+
+#define HASH_MAKE_TABLE(hh,head)                                                 \
+do {                                                                             \
+  (head)->hh.tbl = (UT_hash_table*)uthash_malloc(                                \
+                  sizeof(UT_hash_table));                                        \
+  if (!((head)->hh.tbl))  { uthash_fatal( "out of memory"); }                    \
+  memset((head)->hh.tbl, 0, sizeof(UT_hash_table));                              \
+  (head)->hh.tbl->tail = &((head)->hh);                                          \
+  (head)->hh.tbl->num_buckets = HASH_INITIAL_NUM_BUCKETS;                        \
+  (head)->hh.tbl->log2_num_buckets = HASH_INITIAL_NUM_BUCKETS_LOG2;              \
+  (head)->hh.tbl->hho = (char*)(&(head)->hh) - (char*)(head);                    \
+  (head)->hh.tbl->buckets = (UT_hash_bucket*)uthash_malloc(                      \
+          HASH_INITIAL_NUM_BUCKETS*sizeof(struct UT_hash_bucket));               \
+  if (! (head)->hh.tbl->buckets) { uthash_fatal( "out of memory"); }             \
+  memset((head)->hh.tbl->buckets, 0,                                             \
+          HASH_INITIAL_NUM_BUCKETS*sizeof(struct UT_hash_bucket));               \
+  HASH_BLOOM_MAKE((head)->hh.tbl);                                               \
+  (head)->hh.tbl->signature = HASH_SIGNATURE;                                    \
+} while(0)
+
+#define HASH_ADD(hh,head,fieldname,keylen_in,add)                                \
+        HASH_ADD_KEYPTR(hh,head,&add->fieldname,keylen_in,add)
+
+#define HASH_ADD_KEYPTR(hh,head,keyptr,keylen_in,add)                            \
+do {                                                                             \
+ unsigned _ha_bkt;                                                               \
+ (add)->hh.next = NULL;                                                          \
+ (add)->hh.key = (char*)keyptr;                                                  \
+ (add)->hh.keylen = keylen_in;                                                   \
+ if (!(head)) {                                                                  \
+    head = (add);                                                                \
+    (head)->hh.prev = NULL;                                                      \
+    HASH_MAKE_TABLE(hh,head);                                                    \
+ } else {                                                                        \
+    (head)->hh.tbl->tail->next = (add);                                          \
+    (add)->hh.prev = ELMT_FROM_HH((head)->hh.tbl, (head)->hh.tbl->tail);         \
+    (head)->hh.tbl->tail = &((add)->hh);                                         \
+ }                                                                               \
+ (head)->hh.tbl->num_items++;                                                    \
+ (add)->hh.tbl = (head)->hh.tbl;                                                 \
+ HASH_FCN(keyptr,keylen_in, (head)->hh.tbl->num_buckets,                         \
+         (add)->hh.hashv, _ha_bkt);                                              \
+ HASH_ADD_TO_BKT((head)->hh.tbl->buckets[_ha_bkt],&(add)->hh);                   \
+ HASH_BLOOM_ADD((head)->hh.tbl,(add)->hh.hashv);                                 \
+ HASH_EMIT_KEY(hh,head,keyptr,keylen_in);                                        \
+ HASH_FSCK(hh,head);                                                             \
+} while(0)
+
+#define HASH_TO_BKT( hashv, num_bkts, bkt )                                      \
+do {                                                                             \
+  bkt = ((hashv) & ((num_bkts) - 1));                                            \
+} while(0)
+
+/* delete "delptr" from the hash table.
+ * "the usual" patch-up process for the app-order doubly-linked-list.
+ * The use of _hd_hh_del below deserves special explanation.
+ * These used to be expressed using (delptr) but that led to a bug
+ * if someone used the same symbol for the head and deletee, like
+ *  HASH_DELETE(hh,users,users);
+ * We want that to work, but by changing the head (users) below
+ * we were forfeiting our ability to further refer to the deletee (users)
+ * in the patch-up process. Solution: use scratch space to
+ * copy the deletee pointer, then the latter references are via that
+ * scratch pointer rather than through the repointed (users) symbol.
+ */
+#define HASH_DELETE(hh,head,delptr)                                              \
+do {                                                                             \
+    unsigned _hd_bkt;                                                            \
+    struct UT_hash_handle *_hd_hh_del;                                           \
+    if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) )  {         \
+        uthash_free((head)->hh.tbl->buckets,                                     \
+                    (head)->hh.tbl->num_buckets*sizeof(struct UT_hash_bucket) ); \
+        HASH_BLOOM_FREE((head)->hh.tbl);                                         \
+        uthash_free((head)->hh.tbl, sizeof(UT_hash_table));                      \
+        head = NULL;                                                             \
+    } else {                                                                     \
+        _hd_hh_del = &((delptr)->hh);                                            \
+        if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) {     \
+            (head)->hh.tbl->tail =                                               \
+                (UT_hash_handle*)((char*)((delptr)->hh.prev) +                   \
+                (head)->hh.tbl->hho);                                            \
+        }                                                                        \
+        if ((delptr)->hh.prev) {                                                 \
+            ((UT_hash_handle*)((char*)((delptr)->hh.prev) +                      \
+                    (head)->hh.tbl->hho))->next = (delptr)->hh.next;             \
+        } else {                                                                 \
+            DECLTYPE_ASSIGN(head,(delptr)->hh.next);                             \
+        }                                                                        \
+        if (_hd_hh_del->next) {                                                  \
+            ((UT_hash_handle*)((char*)_hd_hh_del->next +                         \
+                    (head)->hh.tbl->hho))->prev =                                \
+                    _hd_hh_del->prev;                                            \
+        }                                                                        \
+        HASH_TO_BKT( _hd_hh_del->hashv, (head)->hh.tbl->num_buckets, _hd_bkt);   \
+        HASH_DEL_IN_BKT(hh,(head)->hh.tbl->buckets[_hd_bkt], _hd_hh_del);        \
+        (head)->hh.tbl->num_items--;                                             \
+    }                                                                            \
+    HASH_FSCK(hh,head);                                                          \
+} while (0)
+
+/* convenience forms of HASH_FIND/HASH_ADD/HASH_DEL */
+#define HASH_FIND_STR(head,findstr,out)                                          \
+    HASH_FIND(hh,head,findstr,strlen(findstr),out)
+#define HASH_ADD_STR(head,strfield,add)                                          \
+    HASH_ADD(hh,head,strfield,strlen(add->strfield),add)
+#define HASH_FIND_INT(head,findint,out)                                          \
+    HASH_FIND(hh,head,findint,sizeof(int),out)
+#define HASH_ADD_INT(head,intfield,add)                                          \
+    HASH_ADD(hh,head,intfield,sizeof(int),add)
+#define HASH_FIND_PTR(head,findptr,out)                                          \
+    HASH_FIND(hh,head,findptr,sizeof(void *),out)
+#define HASH_ADD_PTR(head,ptrfield,add)                                          \
+    HASH_ADD(hh,head,ptrfield,sizeof(void *),add)
+#define HASH_DEL(head,delptr)                                                    \
+    HASH_DELETE(hh,head,delptr)
+
+/* HASH_FSCK checks hash integrity on every add/delete when HASH_DEBUG is defined.
+ * This is for uthash developer only; it compiles away if HASH_DEBUG isn't defined.
+ */
+#ifdef HASH_DEBUG
+#define HASH_OOPS(...) do { fprintf(stderr,__VA_ARGS__); exit(-1); } while (0)
+#define HASH_FSCK(hh,head)                                                       \
+do {                                                                             \
+    unsigned _bkt_i;                                                             \
+    unsigned _count, _bkt_count;                                                 \
+    char *_prev;                                                                 \
+    struct UT_hash_handle *_thh;                                                 \
+    if (head) {                                                                  \
+        _count = 0;                                                              \
+        for( _bkt_i = 0; _bkt_i < (head)->hh.tbl->num_buckets; _bkt_i++) {       \
+            _bkt_count = 0;                                                      \
+            _thh = (head)->hh.tbl->buckets[_bkt_i].hh_head;                      \
+            _prev = NULL;                                                        \
+            while (_thh) {                                                       \
+               if (_prev != (char*)(_thh->hh_prev)) {                            \
+                   HASH_OOPS("invalid hh_prev %p, actual %p\n",                  \
+                    _thh->hh_prev, _prev );                                      \
+               }                                                                 \
+               _bkt_count++;                                                     \
+               _prev = (char*)(_thh);                                            \
+               _thh = _thh->hh_next;                                             \
+            }                                                                    \
+            _count += _bkt_count;                                                \
+            if ((head)->hh.tbl->buckets[_bkt_i].count !=  _bkt_count) {          \
+               HASH_OOPS("invalid bucket count %d, actual %d\n",                 \
+                (head)->hh.tbl->buckets[_bkt_i].count, _bkt_count);              \
+            }                                                                    \
+        }                                                                        \
+        if (_count != (head)->hh.tbl->num_items) {                               \
+            HASH_OOPS("invalid hh item count %d, actual %d\n",                   \
+                (head)->hh.tbl->num_items, _count );                             \
+        }                                                                        \
+        /* traverse hh in app order; check next/prev integrity, count */         \
+        _count = 0;                                                              \
+        _prev = NULL;                                                            \
+        _thh =  &(head)->hh;                                                     \
+        while (_thh) {                                                           \
+           _count++;                                                             \
+           if (_prev !=(char*)(_thh->prev)) {                                    \
+              HASH_OOPS("invalid prev %p, actual %p\n",                          \
+                    _thh->prev, _prev );                                         \
+           }                                                                     \
+           _prev = (char*)ELMT_FROM_HH((head)->hh.tbl, _thh);                    \
+           _thh = ( _thh->next ?  (UT_hash_handle*)((char*)(_thh->next) +        \
+                                  (head)->hh.tbl->hho) : NULL );                 \
+        }                                                                        \
+        if (_count != (head)->hh.tbl->num_items) {                               \
+            HASH_OOPS("invalid app item count %d, actual %d\n",                  \
+                (head)->hh.tbl->num_items, _count );                             \
+        }                                                                        \
+    }                                                                            \
+} while (0)
+#else
+#define HASH_FSCK(hh,head) 
+#endif
+
+/* When compiled with -DHASH_EMIT_KEYS, length-prefixed keys are emitted to 
+ * the descriptor to which this macro is defined for tuning the hash function.
+ * The app can #include <unistd.h> to get the prototype for write(2). */
+#ifdef HASH_EMIT_KEYS
+#define HASH_EMIT_KEY(hh,head,keyptr,fieldlen)                                   \
+do {                                                                             \
+    unsigned _klen = fieldlen;                                                   \
+    write(HASH_EMIT_KEYS, &_klen, sizeof(_klen));                                \
+    write(HASH_EMIT_KEYS, keyptr, fieldlen);                                     \
+} while (0)
+#else 
+#define HASH_EMIT_KEY(hh,head,keyptr,fieldlen)                    
+#endif
+
+/* default to Jenkin's hash unless overridden e.g. DHASH_FUNCTION=HASH_SAX */
+#ifdef HASH_FUNCTION 
+#define HASH_FCN HASH_FUNCTION
+#else
+#define HASH_FCN HASH_JEN
+#endif
+
+/* The Bernstein hash function, used in Perl prior to v5.6 */
+#define HASH_BER(key,keylen,num_bkts,hashv,bkt)                                  \
+do {                                                                             \
+  unsigned _hb_keylen=keylen;                                                    \
+  char *_hb_key=(char*)(key);                                                    \
+  (hashv) = 0;                                                                   \
+  while (_hb_keylen--)  { (hashv) = ((hashv) * 33) + *_hb_key++; }               \
+  bkt = (hashv) & (num_bkts-1);                                                  \
+} while (0)
+
+/* SAX/FNV/OAT/JEN hash functions are macro variants of those listed at 
+ * http://eternallyconfuzzled.com/tuts/algorithms/jsw_tut_hashing.aspx */
+#define HASH_SAX(key,keylen,num_bkts,hashv,bkt)                                  \
+do {                                                                             \
+  unsigned _sx_i;                                                                \
+  char *_hs_key=(char*)(key);                                                    \
+  hashv = 0;                                                                     \
+  for(_sx_i=0; _sx_i < keylen; _sx_i++)                                          \
+      hashv ^= (hashv << 5) + (hashv >> 2) + _hs_key[_sx_i];                     \
+  bkt = hashv & (num_bkts-1);                                                    \
+} while (0)
+
+#define HASH_FNV(key,keylen,num_bkts,hashv,bkt)                                  \
+do {                                                                             \
+  unsigned _fn_i;                                                                \
+  char *_hf_key=(char*)(key);                                                    \
+  hashv = 2166136261UL;                                                          \
+  for(_fn_i=0; _fn_i < keylen; _fn_i++)                                          \
+      hashv = (hashv * 16777619) ^ _hf_key[_fn_i];                               \
+  bkt = hashv & (num_bkts-1);                                                    \
+} while(0);
+
+#define HASH_OAT(key,keylen,num_bkts,hashv,bkt)                                  \
+do {                                                                             \
+  unsigned _ho_i;                                                                \
+  char *_ho_key=(char*)(key);                                                    \
+  hashv = 0;                                                                     \
+  for(_ho_i=0; _ho_i < keylen; _ho_i++) {                                        \
+      hashv += _ho_key[_ho_i];                                                   \
+      hashv += (hashv << 10);                                                    \
+      hashv ^= (hashv >> 6);                                                     \
+  }                                                                              \
+  hashv += (hashv << 3);                                                         \
+  hashv ^= (hashv >> 11);                                                        \
+  hashv += (hashv << 15);                                                        \
+  bkt = hashv & (num_bkts-1);                                                    \
+} while(0)
+
+#define HASH_JEN_MIX(a,b,c)                                                      \
+do {                                                                             \
+  a -= b; a -= c; a ^= ( c >> 13 );                                              \
+  b -= c; b -= a; b ^= ( a << 8 );                                               \
+  c -= a; c -= b; c ^= ( b >> 13 );                                              \
+  a -= b; a -= c; a ^= ( c >> 12 );                                              \
+  b -= c; b -= a; b ^= ( a << 16 );                                              \
+  c -= a; c -= b; c ^= ( b >> 5 );                                               \
+  a -= b; a -= c; a ^= ( c >> 3 );                                               \
+  b -= c; b -= a; b ^= ( a << 10 );                                              \
+  c -= a; c -= b; c ^= ( b >> 15 );                                              \
+} while (0)
+
+#define HASH_JEN(key,keylen,num_bkts,hashv,bkt)                                  \
+do {                                                                             \
+  unsigned _hj_i,_hj_j,_hj_k;                                                    \
+  char *_hj_key=(char*)(key);                                                    \
+  hashv = 0xfeedbeef;                                                            \
+  _hj_i = _hj_j = 0x9e3779b9;                                                    \
+  _hj_k = keylen;                                                                \
+  while (_hj_k >= 12) {                                                          \
+    _hj_i +=    (_hj_key[0] + ( (unsigned)_hj_key[1] << 8 )                      \
+        + ( (unsigned)_hj_key[2] << 16 )                                         \
+        + ( (unsigned)_hj_key[3] << 24 ) );                                      \
+    _hj_j +=    (_hj_key[4] + ( (unsigned)_hj_key[5] << 8 )                      \
+        + ( (unsigned)_hj_key[6] << 16 )                                         \
+        + ( (unsigned)_hj_key[7] << 24 ) );                                      \
+    hashv += (_hj_key[8] + ( (unsigned)_hj_key[9] << 8 )                         \
+        + ( (unsigned)_hj_key[10] << 16 )                                        \
+        + ( (unsigned)_hj_key[11] << 24 ) );                                     \
+                                                                                 \
+     HASH_JEN_MIX(_hj_i, _hj_j, hashv);                                          \
+                                                                                 \
+     _hj_key += 12;                                                              \
+     _hj_k -= 12;                                                                \
+  }                                                                              \
+  hashv += keylen;                                                               \
+  switch ( _hj_k ) {                                                             \
+     case 11: hashv += ( (unsigned)_hj_key[10] << 24 );                          \
+     case 10: hashv += ( (unsigned)_hj_key[9] << 16 );                           \
+     case 9:  hashv += ( (unsigned)_hj_key[8] << 8 );                            \
+     case 8:  _hj_j += ( (unsigned)_hj_key[7] << 24 );                           \
+     case 7:  _hj_j += ( (unsigned)_hj_key[6] << 16 );                           \
+     case 6:  _hj_j += ( (unsigned)_hj_key[5] << 8 );                            \
+     case 5:  _hj_j += _hj_key[4];                                               \
+     case 4:  _hj_i += ( (unsigned)_hj_key[3] << 24 );                           \
+     case 3:  _hj_i += ( (unsigned)_hj_key[2] << 16 );                           \
+     case 2:  _hj_i += ( (unsigned)_hj_key[1] << 8 );                            \
+     case 1:  _hj_i += _hj_key[0];                                               \
+  }                                                                              \
+  HASH_JEN_MIX(_hj_i, _hj_j, hashv);                                             \
+  bkt = hashv & (num_bkts-1);                                                    \
+} while(0)
+
+/* The Paul Hsieh hash function */
+#undef get16bits
+#if (defined(__GNUC__) && defined(__i386__)) || defined(__WATCOMC__)             \
+  || defined(_MSC_VER) || defined (__BORLANDC__) || defined (__TURBOC__)
+#define get16bits(d) (*((const uint16_t *) (d)))
+#endif
+
+#if !defined (get16bits)
+#define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8)             \
+                       +(uint32_t)(((const uint8_t *)(d))[0]) )
+#endif
+#define HASH_SFH(key,keylen,num_bkts,hashv,bkt)                                  \
+do {                                                                             \
+  char *_sfh_key=(char*)(key);                                                   \
+  uint32_t _sfh_tmp, _sfh_len = keylen;                                          \
+                                                                                 \
+  int _sfh_rem = _sfh_len & 3;                                                   \
+  _sfh_len >>= 2;                                                                \
+  hashv = 0xcafebabe;                                                            \
+                                                                                 \
+  /* Main loop */                                                                \
+  for (;_sfh_len > 0; _sfh_len--) {                                              \
+    hashv    += get16bits (_sfh_key);                                            \
+    _sfh_tmp       = (get16bits (_sfh_key+2) << 11) ^ hashv;                     \
+    hashv     = (hashv << 16) ^ _sfh_tmp;                                        \
+    _sfh_key += 2*sizeof (uint16_t);                                             \
+    hashv    += hashv >> 11;                                                     \
+  }                                                                              \
+                                                                                 \
+  /* Handle end cases */                                                         \
+  switch (_sfh_rem) {                                                            \
+    case 3: hashv += get16bits (_sfh_key);                                       \
+            hashv ^= hashv << 16;                                                \
+            hashv ^= _sfh_key[sizeof (uint16_t)] << 18;                          \
+            hashv += hashv >> 11;                                                \
+            break;                                                               \
+    case 2: hashv += get16bits (_sfh_key);                                       \
+            hashv ^= hashv << 11;                                                \
+            hashv += hashv >> 17;                                                \
+            break;                                                               \
+    case 1: hashv += *_sfh_key;                                                  \
+            hashv ^= hashv << 10;                                                \
+            hashv += hashv >> 1;                                                 \
+  }                                                                              \
+                                                                                 \
+    /* Force "avalanching" of final 127 bits */                                  \
+    hashv ^= hashv << 3;                                                         \
+    hashv += hashv >> 5;                                                         \
+    hashv ^= hashv << 4;                                                         \
+    hashv += hashv >> 17;                                                        \
+    hashv ^= hashv << 25;                                                        \
+    hashv += hashv >> 6;                                                         \
+    bkt = hashv & (num_bkts-1);                                                  \
+} while(0);
+
+#ifdef HASH_USING_NO_STRICT_ALIASING
+/* The MurmurHash exploits some CPU's (e.g. x86) tolerance for unaligned reads.
+ * For other types of CPU's (e.g. Sparc) an unaligned read causes a bus error.
+ * So MurmurHash comes in two versions, the faster unaligned one and the slower
+ * aligned one. We only use the faster one on CPU's where we know it's safe. 
+ *
+ * Note the preprocessor built-in defines can be emitted using:
+ *
+ *   gcc -m64 -dM -E - < /dev/null                  (on gcc)
+ *   cc -## a.c (where a.c is a simple test file)   (Sun Studio)
+ */
+#if (defined(__i386__) || defined(__x86_64__)) 
+#define HASH_MUR HASH_MUR_UNALIGNED
+#else
+#define HASH_MUR HASH_MUR_ALIGNED
+#endif
+
+/* Appleby's MurmurHash fast version for unaligned-tolerant archs like i386 */
+#define HASH_MUR_UNALIGNED(key,keylen,num_bkts,hashv,bkt)                        \
+do {                                                                             \
+  const unsigned int _mur_m = 0x5bd1e995;                                        \
+  const int _mur_r = 24;                                                         \
+  hashv = 0xcafebabe ^ keylen;                                                   \
+  char *_mur_key = (char *)(key);                                                \
+  uint32_t _mur_tmp, _mur_len = keylen;                                          \
+                                                                                 \
+  for (;_mur_len >= 4; _mur_len-=4) {                                            \
+    _mur_tmp = *(uint32_t *)_mur_key;                                            \
+    _mur_tmp *= _mur_m;                                                          \
+    _mur_tmp ^= _mur_tmp >> _mur_r;                                              \
+    _mur_tmp *= _mur_m;                                                          \
+    hashv *= _mur_m;                                                             \
+    hashv ^= _mur_tmp;                                                           \
+    _mur_key += 4;                                                               \
+  }                                                                              \
+                                                                                 \
+  switch(_mur_len)                                                               \
+  {                                                                              \
+    case 3: hashv ^= _mur_key[2] << 16;                                          \
+    case 2: hashv ^= _mur_key[1] << 8;                                           \
+    case 1: hashv ^= _mur_key[0];                                                \
+            hashv *= _mur_m;                                                     \
+  };                                                                             \
+                                                                                 \
+  hashv ^= hashv >> 13;                                                          \
+  hashv *= _mur_m;                                                               \
+  hashv ^= hashv >> 15;                                                          \
+                                                                                 \
+  bkt = hashv & (num_bkts-1);                                                    \
+} while(0)
+
+/* Appleby's MurmurHash version for alignment-sensitive archs like Sparc */
+#define HASH_MUR_ALIGNED(key,keylen,num_bkts,hashv,bkt)                          \
+do {                                                                             \
+  const unsigned int _mur_m = 0x5bd1e995;                                        \
+  const int _mur_r = 24;                                                         \
+  hashv = 0xcafebabe ^ (keylen);                                                 \
+  char *_mur_key = (char *)(key);                                                \
+  uint32_t _mur_len = keylen;                                                    \
+  int _mur_align = (int)_mur_key & 3;                                            \
+                                                                                 \
+  if (_mur_align && (_mur_len >= 4)) {                                           \
+    unsigned _mur_t = 0, _mur_d = 0;                                             \
+    switch(_mur_align) {                                                         \
+      case 1: _mur_t |= _mur_key[2] << 16;                                       \
+      case 2: _mur_t |= _mur_key[1] << 8;                                        \
+      case 3: _mur_t |= _mur_key[0];                                             \
+    }                                                                            \
+    _mur_t <<= (8 * _mur_align);                                                 \
+    _mur_key += 4-_mur_align;                                                    \
+    _mur_len -= 4-_mur_align;                                                    \
+    int _mur_sl = 8 * (4-_mur_align);                                            \
+    int _mur_sr = 8 * _mur_align;                                                \
+                                                                                 \
+    for (;_mur_len >= 4; _mur_len-=4) {                                          \
+      _mur_d = *(unsigned *)_mur_key;                                            \
+      _mur_t = (_mur_t >> _mur_sr) | (_mur_d << _mur_sl);                        \
+      unsigned _mur_k = _mur_t;                                                  \
+      _mur_k *= _mur_m;                                                          \
+      _mur_k ^= _mur_k >> _mur_r;                                                \
+      _mur_k *= _mur_m;                                                          \
+      hashv *= _mur_m;                                                           \
+      hashv ^= _mur_k;                                                           \
+      _mur_t = _mur_d;                                                           \
+      _mur_key += 4;                                                             \
+    }                                                                            \
+    _mur_d = 0;                                                                  \
+    if(_mur_len >= _mur_align) {                                                 \
+      switch(_mur_align) {                                                       \
+        case 3: _mur_d |= _mur_key[2] << 16;                                     \
+        case 2: _mur_d |= _mur_key[1] << 8;                                      \
+        case 1: _mur_d |= _mur_key[0];                                           \
+      }                                                                          \
+      unsigned _mur_k = (_mur_t >> _mur_sr) | (_mur_d << _mur_sl);               \
+      _mur_k *= _mur_m;                                                          \
+      _mur_k ^= _mur_k >> _mur_r;                                                \
+      _mur_k *= _mur_m;                                                          \
+      hashv *= _mur_m;                                                           \
+      hashv ^= _mur_k;                                                           \
+      _mur_k += _mur_align;                                                      \
+      _mur_len -= _mur_align;                                                    \
+                                                                                 \
+      switch(_mur_len)                                                           \
+      {                                                                          \
+        case 3: hashv ^= _mur_key[2] << 16;                                      \
+        case 2: hashv ^= _mur_key[1] << 8;                                       \
+        case 1: hashv ^= _mur_key[0];                                            \
+                hashv *= _mur_m;                                                 \
+      }                                                                          \
+    } else {                                                                     \
+      switch(_mur_len)                                                           \
+      {                                                                          \
+        case 3: _mur_d ^= _mur_key[2] << 16;                                     \
+        case 2: _mur_d ^= _mur_key[1] << 8;                                      \
+        case 1: _mur_d ^= _mur_key[0];                                           \
+        case 0: hashv ^= (_mur_t >> _mur_sr) | (_mur_d << _mur_sl);              \
+        hashv *= _mur_m;                                                         \
+      }                                                                          \
+    }                                                                            \
+                                                                                 \
+    hashv ^= hashv >> 13;                                                        \
+    hashv *= _mur_m;                                                             \
+    hashv ^= hashv >> 15;                                                        \
+  } else {                                                                       \
+    for (;_mur_len >= 4; _mur_len-=4) {                                          \
+      unsigned _mur_k = *(unsigned*)_mur_key;                                    \
+      _mur_k *= _mur_m;                                                          \
+      _mur_k ^= _mur_k >> _mur_r;                                                \
+      _mur_k *= _mur_m;                                                          \
+      hashv *= _mur_m;                                                           \
+      hashv ^= _mur_k;                                                           \
+      _mur_key += 4;                                                             \
+    }                                                                            \
+    switch(_mur_len)                                                             \
+    {                                                                            \
+      case 3: hashv ^= _mur_key[2] << 16;                                        \
+      case 2: hashv ^= _mur_key[1] << 8;                                         \
+      case 1: hashv ^= _mur_key[0];                                              \
+      hashv *= _mur_m;                                                           \
+    }                                                                            \
+                                                                                 \
+    hashv ^= hashv >> 13;                                                        \
+    hashv *= _mur_m;                                                             \
+    hashv ^= hashv >> 15;                                                        \
+  }                                                                              \
+  bkt = hashv & (num_bkts-1);                                                    \
+} while(0)
+#endif  /* HASH_USING_NO_STRICT_ALIASING */
+
+/* key comparison function; return 0 if keys equal */
+#define HASH_KEYCMP(a,b,len) memcmp(a,b,len) 
+
+/* iterate over items in a known bucket to find desired item */
+#define HASH_FIND_IN_BKT(tbl,hh,head,keyptr,keylen_in,out)                       \
+do {                                                                             \
+ if (head.hh_head) DECLTYPE_ASSIGN(out,ELMT_FROM_HH(tbl,head.hh_head));          \
+ else out=NULL;                                                                  \
+ while (out) {                                                                   \
+    if (out->hh.keylen == keylen_in) {                                           \
+        if ((HASH_KEYCMP(out->hh.key,keyptr,keylen_in)) == 0) break;             \
+    }                                                                            \
+    if (out->hh.hh_next) DECLTYPE_ASSIGN(out,ELMT_FROM_HH(tbl,out->hh.hh_next)); \
+    else out = NULL;                                                             \
+ }                                                                               \
+} while(0)
+
+/* add an item to a bucket  */
+#define HASH_ADD_TO_BKT(head,addhh)                                              \
+do {                                                                             \
+ head.count++;                                                                   \
+ (addhh)->hh_next = head.hh_head;                                                \
+ (addhh)->hh_prev = NULL;                                                        \
+ if (head.hh_head) { (head).hh_head->hh_prev = (addhh); }                        \
+ (head).hh_head=addhh;                                                           \
+ if (head.count >= ((head.expand_mult+1) * HASH_BKT_CAPACITY_THRESH)             \
+     && (addhh)->tbl->noexpand != 1) {                                           \
+       HASH_EXPAND_BUCKETS((addhh)->tbl);                                        \
+ }                                                                               \
+} while(0)
+
+/* remove an item from a given bucket */
+#define HASH_DEL_IN_BKT(hh,head,hh_del)                                          \
+    (head).count--;                                                              \
+    if ((head).hh_head == hh_del) {                                              \
+      (head).hh_head = hh_del->hh_next;                                          \
+    }                                                                            \
+    if (hh_del->hh_prev) {                                                       \
+        hh_del->hh_prev->hh_next = hh_del->hh_next;                              \
+    }                                                                            \
+    if (hh_del->hh_next) {                                                       \
+        hh_del->hh_next->hh_prev = hh_del->hh_prev;                              \
+    }                                                                
+
+/* Bucket expansion has the effect of doubling the number of buckets
+ * and redistributing the items into the new buckets. Ideally the
+ * items will distribute more or less evenly into the new buckets
+ * (the extent to which this is true is a measure of the quality of
+ * the hash function as it applies to the key domain). 
+ * 
+ * With the items distributed into more buckets, the chain length
+ * (item count) in each bucket is reduced. Thus by expanding buckets
+ * the hash keeps a bound on the chain length. This bounded chain 
+ * length is the essence of how a hash provides constant time lookup.
+ * 
+ * The calculation of tbl->ideal_chain_maxlen below deserves some
+ * explanation. First, keep in mind that we're calculating the ideal
+ * maximum chain length based on the *new* (doubled) bucket count.
+ * In fractions this is just n/b (n=number of items,b=new num buckets).
+ * Since the ideal chain length is an integer, we want to calculate 
+ * ceil(n/b). We don't depend on floating point arithmetic in this
+ * hash, so to calculate ceil(n/b) with integers we could write
+ * 
+ *      ceil(n/b) = (n/b) + ((n%b)?1:0)
+ * 
+ * and in fact a previous version of this hash did just that.
+ * But now we have improved things a bit by recognizing that b is
+ * always a power of two. We keep its base 2 log handy (call it lb),
+ * so now we can write this with a bit shift and logical AND:
+ * 
+ *      ceil(n/b) = (n>>lb) + ( (n & (b-1)) ? 1:0)
+ * 
+ */
+#define HASH_EXPAND_BUCKETS(tbl)                                                 \
+do {                                                                             \
+    unsigned _he_bkt;                                                            \
+    unsigned _he_bkt_i;                                                          \
+    struct UT_hash_handle *_he_thh, *_he_hh_nxt;                                 \
+    UT_hash_bucket *_he_new_buckets, *_he_newbkt;                                \
+    _he_new_buckets = (UT_hash_bucket*)uthash_malloc(                            \
+             2 * tbl->num_buckets * sizeof(struct UT_hash_bucket));              \
+    if (!_he_new_buckets) { uthash_fatal( "out of memory"); }                    \
+    memset(_he_new_buckets, 0,                                                   \
+            2 * tbl->num_buckets * sizeof(struct UT_hash_bucket));               \
+    tbl->ideal_chain_maxlen =                                                    \
+       (tbl->num_items >> (tbl->log2_num_buckets+1)) +                           \
+       ((tbl->num_items & ((tbl->num_buckets*2)-1)) ? 1 : 0);                    \
+    tbl->nonideal_items = 0;                                                     \
+    for(_he_bkt_i = 0; _he_bkt_i < tbl->num_buckets; _he_bkt_i++)                \
+    {                                                                            \
+        _he_thh = tbl->buckets[ _he_bkt_i ].hh_head;                             \
+        while (_he_thh) {                                                        \
+           _he_hh_nxt = _he_thh->hh_next;                                        \
+           HASH_TO_BKT( _he_thh->hashv, tbl->num_buckets*2, _he_bkt);            \
+           _he_newbkt = &(_he_new_buckets[ _he_bkt ]);                           \
+           if (++(_he_newbkt->count) > tbl->ideal_chain_maxlen) {                \
+             tbl->nonideal_items++;                                              \
+             _he_newbkt->expand_mult = _he_newbkt->count /                       \
+                                        tbl->ideal_chain_maxlen;                 \
+           }                                                                     \
+           _he_thh->hh_prev = NULL;                                              \
+           _he_thh->hh_next = _he_newbkt->hh_head;                               \
+           if (_he_newbkt->hh_head) _he_newbkt->hh_head->hh_prev =               \
+                _he_thh;                                                         \
+           _he_newbkt->hh_head = _he_thh;                                        \
+           _he_thh = _he_hh_nxt;                                                 \
+        }                                                                        \
+    }                                                                            \
+    uthash_free( tbl->buckets, tbl->num_buckets*sizeof(struct UT_hash_bucket) ); \
+    tbl->num_buckets *= 2;                                                       \
+    tbl->log2_num_buckets++;                                                     \
+    tbl->buckets = _he_new_buckets;                                              \
+    tbl->ineff_expands = (tbl->nonideal_items > (tbl->num_items >> 1)) ?         \
+        (tbl->ineff_expands+1) : 0;                                              \
+    if (tbl->ineff_expands > 1) {                                                \
+        tbl->noexpand=1;                                                         \
+        uthash_noexpand_fyi(tbl);                                                \
+    }                                                                            \
+    uthash_expand_fyi(tbl);                                                      \
+} while(0)
+
+/* This is an adaptation of Simon Tatham's O(n log(n)) mergesort */
+/* Note that HASH_SORT assumes the hash handle name to be hh. 
+ * HASH_SRT was added to allow the hash handle name to be passed in. */
+#define HASH_SORT(head,cmpfcn) HASH_SRT(hh,head,cmpfcn)
+#define HASH_SRT(hh,head,cmpfcn)                                                 \
+do {                                                                             \
+  unsigned _hs_i;                                                                \
+  unsigned _hs_looping,_hs_nmerges,_hs_insize,_hs_psize,_hs_qsize;               \
+  struct UT_hash_handle *_hs_p, *_hs_q, *_hs_e, *_hs_list, *_hs_tail;            \
+  if (head) {                                                                    \
+      _hs_insize = 1;                                                            \
+      _hs_looping = 1;                                                           \
+      _hs_list = &((head)->hh);                                                  \
+      while (_hs_looping) {                                                      \
+          _hs_p = _hs_list;                                                      \
+          _hs_list = NULL;                                                       \
+          _hs_tail = NULL;                                                       \
+          _hs_nmerges = 0;                                                       \
+          while (_hs_p) {                                                        \
+              _hs_nmerges++;                                                     \
+              _hs_q = _hs_p;                                                     \
+              _hs_psize = 0;                                                     \
+              for ( _hs_i = 0; _hs_i  < _hs_insize; _hs_i++ ) {                  \
+                  _hs_psize++;                                                   \
+                  _hs_q = (UT_hash_handle*)((_hs_q->next) ?                      \
+                          ((void*)((char*)(_hs_q->next) +                        \
+                          (head)->hh.tbl->hho)) : NULL);                         \
+                  if (! (_hs_q) ) break;                                         \
+              }                                                                  \
+              _hs_qsize = _hs_insize;                                            \
+              while ((_hs_psize > 0) || ((_hs_qsize > 0) && _hs_q )) {           \
+                  if (_hs_psize == 0) {                                          \
+                      _hs_e = _hs_q;                                             \
+                      _hs_q = (UT_hash_handle*)((_hs_q->next) ?                  \
+                              ((void*)((char*)(_hs_q->next) +                    \
+                              (head)->hh.tbl->hho)) : NULL);                     \
+                      _hs_qsize--;                                               \
+                  } else if ( (_hs_qsize == 0) || !(_hs_q) ) {                   \
+                      _hs_e = _hs_p;                                             \
+                      _hs_p = (UT_hash_handle*)((_hs_p->next) ?                  \
+                              ((void*)((char*)(_hs_p->next) +                    \
+                              (head)->hh.tbl->hho)) : NULL);                     \
+                      _hs_psize--;                                               \
+                  } else if ((                                                   \
+                      cmpfcn(DECLTYPE(head)(ELMT_FROM_HH((head)->hh.tbl,_hs_p)), \
+                             DECLTYPE(head)(ELMT_FROM_HH((head)->hh.tbl,_hs_q))) \
+                             ) <= 0) {                                           \
+                      _hs_e = _hs_p;                                             \
+                      _hs_p = (UT_hash_handle*)((_hs_p->next) ?                  \
+                              ((void*)((char*)(_hs_p->next) +                    \
+                              (head)->hh.tbl->hho)) : NULL);                     \
+                      _hs_psize--;                                               \
+                  } else {                                                       \
+                      _hs_e = _hs_q;                                             \
+                      _hs_q = (UT_hash_handle*)((_hs_q->next) ?                  \
+                              ((void*)((char*)(_hs_q->next) +                    \
+                              (head)->hh.tbl->hho)) : NULL);                     \
+                      _hs_qsize--;                                               \
+                  }                                                              \
+                  if ( _hs_tail ) {                                              \
+                      _hs_tail->next = ((_hs_e) ?                                \
+                            ELMT_FROM_HH((head)->hh.tbl,_hs_e) : NULL);          \
+                  } else {                                                       \
+                      _hs_list = _hs_e;                                          \
+                  }                                                              \
+                  _hs_e->prev = ((_hs_tail) ?                                    \
+                     ELMT_FROM_HH((head)->hh.tbl,_hs_tail) : NULL);              \
+                  _hs_tail = _hs_e;                                              \
+              }                                                                  \
+              _hs_p = _hs_q;                                                     \
+          }                                                                      \
+          _hs_tail->next = NULL;                                                 \
+          if ( _hs_nmerges <= 1 ) {                                              \
+              _hs_looping=0;                                                     \
+              (head)->hh.tbl->tail = _hs_tail;                                   \
+              DECLTYPE_ASSIGN(head,ELMT_FROM_HH((head)->hh.tbl, _hs_list));      \
+          }                                                                      \
+          _hs_insize *= 2;                                                       \
+      }                                                                          \
+      HASH_FSCK(hh,head);                                                        \
+ }                                                                               \
+} while (0)
+
+/* This function selects items from one hash into another hash. 
+ * The end result is that the selected items have dual presence 
+ * in both hashes. There is no copy of the items made; rather 
+ * they are added into the new hash through a secondary hash 
+ * hash handle that must be present in the structure. */
+#define HASH_SELECT(hh_dst, dst, hh_src, src, cond)                              \
+do {                                                                             \
+  unsigned _src_bkt, _dst_bkt;                                                   \
+  void *_last_elt=NULL, *_elt;                                                   \
+  UT_hash_handle *_src_hh, *_dst_hh, *_last_elt_hh=NULL;                         \
+  ptrdiff_t _dst_hho = ((char*)(&(dst)->hh_dst) - (char*)(dst));                 \
+  if (src) {                                                                     \
+    for(_src_bkt=0; _src_bkt < (src)->hh_src.tbl->num_buckets; _src_bkt++) {     \
+      for(_src_hh = (src)->hh_src.tbl->buckets[_src_bkt].hh_head;                \
+          _src_hh;                                                               \
+          _src_hh = _src_hh->hh_next) {                                          \
+          _elt = ELMT_FROM_HH((src)->hh_src.tbl, _src_hh);                       \
+          if (cond(_elt)) {                                                      \
+            _dst_hh = (UT_hash_handle*)(((char*)_elt) + _dst_hho);               \
+            _dst_hh->key = _src_hh->key;                                         \
+            _dst_hh->keylen = _src_hh->keylen;                                   \
+            _dst_hh->hashv = _src_hh->hashv;                                     \
+            _dst_hh->prev = _last_elt;                                           \
+            _dst_hh->next = NULL;                                                \
+            if (_last_elt_hh) { _last_elt_hh->next = _elt; }                     \
+            if (!dst) {                                                          \
+              DECLTYPE_ASSIGN(dst,_elt);                                         \
+              HASH_MAKE_TABLE(hh_dst,dst);                                       \
+            } else {                                                             \
+              _dst_hh->tbl = (dst)->hh_dst.tbl;                                  \
+            }                                                                    \
+            HASH_TO_BKT(_dst_hh->hashv, _dst_hh->tbl->num_buckets, _dst_bkt);    \
+            HASH_ADD_TO_BKT(_dst_hh->tbl->buckets[_dst_bkt],_dst_hh);            \
+            (dst)->hh_dst.tbl->num_items++;                                      \
+            _last_elt = _elt;                                                    \
+            _last_elt_hh = _dst_hh;                                              \
+          }                                                                      \
+      }                                                                          \
+    }                                                                            \
+  }                                                                              \
+  HASH_FSCK(hh_dst,dst);                                                         \
+} while (0)
+
+#define HASH_CLEAR(hh,head)                                                      \
+do {                                                                             \
+  if (head) {                                                                    \
+    uthash_free((head)->hh.tbl->buckets,                                         \
+                (head)->hh.tbl->num_buckets*sizeof(struct UT_hash_bucket));      \
+    uthash_free((head)->hh.tbl, sizeof(UT_hash_table));                          \
+    (head)=NULL;                                                                 \
+  }                                                                              \
+} while(0)
+
+#ifdef NO_DECLTYPE
+#define HASH_ITER(hh,head,el,tmp)                                                \
+for((el)=(head), (*(char**)(&(tmp)))=(char*)((head)?(head)->hh.next:NULL);       \
+  el; (el)=(tmp),(*(char**)(&(tmp)))=(char*)((tmp)?(tmp)->hh.next:NULL)) 
+#else
+#define HASH_ITER(hh,head,el,tmp)                                                \
+for((el)=(head),(tmp)=DECLTYPE(el)((head)?(head)->hh.next:NULL);                 \
+  el; (el)=(tmp),(tmp)=DECLTYPE(el)((tmp)?(tmp)->hh.next:NULL))
+#endif
+
+/* obtain a count of items in the hash */
+#define HASH_COUNT(head) HASH_CNT(hh,head) 
+#define HASH_CNT(hh,head) ((head)?((head)->hh.tbl->num_items):0)
+
+typedef struct UT_hash_bucket
+{
+    struct UT_hash_handle *hh_head;
+    unsigned count;
+
+    /* expand_mult is normally set to 0. In this situation, the max chain length
+     * threshold is enforced at its default value, HASH_BKT_CAPACITY_THRESH. (If
+     * the bucket's chain exceeds this length, bucket expansion is triggered). 
+     * However, setting expand_mult to a non-zero value delays bucket expansion
+     * (that would be triggered by additions to this particular bucket)
+     * until its chain length reaches a *multiple* of HASH_BKT_CAPACITY_THRESH.
+     * (The multiplier is simply expand_mult+1). The whole idea of this
+     * multiplier is to reduce bucket expansions, since they are expensive, in
+     * situations where we know that a particular bucket tends to be overused.
+     * It is better to let its chain length grow to a longer yet-still-bounded
+     * value, than to do an O(n) bucket expansion too often. 
+     */
+    unsigned expand_mult;
+
+} UT_hash_bucket;
+
+/* random signature used only to find hash tables in external analysis */
+#define HASH_SIGNATURE 0xa0111fe1
+#define HASH_BLOOM_SIGNATURE 0xb12220f2
+
+typedef struct UT_hash_table
+{
+    UT_hash_bucket *buckets;
+    unsigned num_buckets, log2_num_buckets;
+    unsigned num_items;
+    struct UT_hash_handle *tail; /* tail hh in app order, for fast append    */
+    ptrdiff_t hho; /* hash handle offset (byte pos of hash handle in element */
+
+    /* in an ideal situation (all buckets used equally), no bucket would have
+     * more than ceil(#items/#buckets) items. that's the ideal chain length. */
+    unsigned ideal_chain_maxlen;
+
+    /* nonideal_items is the number of items in the hash whose chain position
+     * exceeds the ideal chain maxlen. these items pay the penalty for an uneven
+     * hash distribution; reaching them in a chain traversal takes >ideal steps */
+    unsigned nonideal_items;
+
+    /* ineffective expands occur when a bucket doubling was performed, but 
+     * afterward, more than half the items in the hash had nonideal chain
+     * positions. If this happens on two consecutive expansions we inhibit any
+     * further expansion, as it's not helping; this happens when the hash
+     * function isn't a good fit for the key domain. When expansion is inhibited
+     * the hash will still work, albeit no longer in constant time. */
+    unsigned ineff_expands, noexpand;
+
+    uint32_t signature; /* used only to find hash tables in external analysis */
+#ifdef HASH_BLOOM
+    uint32_t bloom_sig; /* used only to test bloom exists in external analysis */
+    uint8_t *bloom_bv;
+    char bloom_nbits;
+#endif
+
+} UT_hash_table;
+
+typedef struct UT_hash_handle
+{
+    struct UT_hash_table *tbl;
+    void *prev; /* prev element in app order      */
+    void *next; /* next element in app order      */
+    struct UT_hash_handle *hh_prev; /* previous hh in bucket order    */
+    struct UT_hash_handle *hh_next; /* next hh in bucket order        */
+    void *key; /* ptr to enclosing struct's key  */
+    unsigned keylen; /* enclosing struct's key len     */
+    unsigned hashv; /* result of hash-fcn(key)        */
+} UT_hash_handle;
+
+#endif /* UTHASH_H */
diff --git a/resource/csdk/connectivity/lib/libcoap-4.1.1/utlist.h b/resource/csdk/connectivity/lib/libcoap-4.1.1/utlist.h
new file mode 100644 (file)
index 0000000..4073e04
--- /dev/null
@@ -0,0 +1,489 @@
+/*
+ Copyright (c) 2007-2010, Troy D. Hanson   http://uthash.sourceforge.net
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef UTLIST_H
+#define UTLIST_H
+
+#define UTLIST_VERSION 1.9.1
+
+/* 
+ * This file contains macros to manipulate singly and doubly-linked lists.
+ *
+ * 1. LL_ macros:  singly-linked lists.
+ * 2. DL_ macros:  doubly-linked lists.
+ * 3. CDL_ macros: circular doubly-linked lists.
+ *
+ * To use singly-linked lists, your structure must have a "next" pointer.
+ * To use doubly-linked lists, your structure must "prev" and "next" pointers.
+ * Either way, the pointer to the head of the list must be initialized to NULL.
+ * 
+ * ----------------.EXAMPLE -------------------------
+ * struct item {
+ *      int id;
+ *      struct item *prev, *next;
+ * }
+ *
+ * struct item *list = NULL:
+ *
+ * int main() {
+ *      struct item *item;
+ *      ... allocate and populate item ...
+ *      DL_APPEND(list, item);
+ * }
+ * --------------------------------------------------
+ *
+ * For doubly-linked lists, the append and delete macros are O(1)
+ * For singly-linked lists, append and delete are O(n) but prepend is O(1)
+ * The sort macro is O(n log(n)) for all types of single/double/circular lists.
+ */
+
+/* These macros use decltype or the earlier __typeof GNU extension.
+ As decltype is only available in newer compilers (VS2010 or gcc 4.3+
+ when compiling c++ code), this code uses whatever method is needed
+ or, for VS2008 where neither is available, uses casting workarounds. */
+#ifdef _MSC_VER            /* MS compiler */
+#if _MSC_VER >= 1600 && __cplusplus  /* VS2010 and newer in C++ mode */
+#define LDECLTYPE(x) decltype(x)
+#else                     /* VS2008 or older (or VS2010 in C mode) */
+#define NO_DECLTYPE
+#define LDECLTYPE(x) char*
+#endif
+#else                      /* GNU, Sun and other compilers */
+#define LDECLTYPE(x) __typeof(x)
+#endif
+
+/* for VS2008 we use some workarounds to get around the lack of decltype,
+ * namely, we always reassign our tmp variable to the list head if we need
+ * to dereference its prev/next pointers, and save/restore the real head.*/
+#ifdef NO_DECLTYPE
+#define _SV(elt,list) _tmp = (char*)(list); {char **_alias = (char**)&(list); *_alias = (elt); }
+#define _NEXT(elt,list) ((char*)((list)->next))
+#define _NEXTASGN(elt,list,to) { char **_alias = (char**)&((list)->next); *_alias=(char*)(to); }
+#define _PREV(elt,list) ((char*)((list)->prev))
+#define _PREVASGN(elt,list,to) { char **_alias = (char**)&((list)->prev); *_alias=(char*)(to); }
+#define _RS(list) { char **_alias = (char**)&(list); *_alias=_tmp; }
+#define _CASTASGN(a,b) { char **_alias = (char**)&(a); *_alias=(char*)(b); }
+#else 
+#define _SV(elt,list)
+#define _NEXT(elt,list) ((elt)->next)
+#define _NEXTASGN(elt,list,to) ((elt)->next)=(to)
+#define _PREV(elt,list) ((elt)->prev)
+#define _PREVASGN(elt,list,to) ((elt)->prev)=(to)
+#define _RS(list)
+#define _CASTASGN(a,b) (a)=(b)
+#endif
+
+/******************************************************************************
+ * The sort macro is an adaptation of Simon Tatham's O(n log(n)) mergesort    *
+ * Unwieldy variable names used here to avoid shadowing passed-in variables.  *
+ *****************************************************************************/
+#define LL_SORT(list, cmp)                                                                     \
+do {                                                                                           \
+  LDECLTYPE(list) _ls_p;                                                                       \
+  LDECLTYPE(list) _ls_q;                                                                       \
+  LDECLTYPE(list) _ls_e;                                                                       \
+  LDECLTYPE(list) _ls_tail;                                                                    \
+  LDECLTYPE(list) _ls_oldhead;                                                                 \
+  LDECLTYPE(list) _tmp;                                                                        \
+  int _ls_insize, _ls_nmerges, _ls_psize, _ls_qsize, _ls_i, _ls_looping;                       \
+  if (list) {                                                                                  \
+    _ls_insize = 1;                                                                            \
+    _ls_looping = 1;                                                                           \
+    while (_ls_looping) {                                                                      \
+      _CASTASGN(_ls_p,list);                                                                   \
+      _CASTASGN(_ls_oldhead,list);                                                             \
+      list = NULL;                                                                             \
+      _ls_tail = NULL;                                                                         \
+      _ls_nmerges = 0;                                                                         \
+      while (_ls_p) {                                                                          \
+        _ls_nmerges++;                                                                         \
+        _ls_q = _ls_p;                                                                         \
+        _ls_psize = 0;                                                                         \
+        for (_ls_i = 0; _ls_i < _ls_insize; _ls_i++) {                                         \
+          _ls_psize++;                                                                         \
+          _SV(_ls_q,list); _ls_q = _NEXT(_ls_q,list); _RS(list);                               \
+          if (!_ls_q) break;                                                                   \
+        }                                                                                      \
+        _ls_qsize = _ls_insize;                                                                \
+        while (_ls_psize > 0 || (_ls_qsize > 0 && _ls_q)) {                                    \
+          if (_ls_psize == 0) {                                                                \
+            _ls_e = _ls_q; _SV(_ls_q,list); _ls_q = _NEXT(_ls_q,list); _RS(list); _ls_qsize--; \
+          } else if (_ls_qsize == 0 || !_ls_q) {                                               \
+            _ls_e = _ls_p; _SV(_ls_p,list); _ls_p = _NEXT(_ls_p,list); _RS(list); _ls_psize--; \
+          } else if (cmp(_ls_p,_ls_q) <= 0) {                                                  \
+            _ls_e = _ls_p; _SV(_ls_p,list); _ls_p = _NEXT(_ls_p,list); _RS(list); _ls_psize--; \
+          } else {                                                                             \
+            _ls_e = _ls_q; _SV(_ls_q,list); _ls_q = _NEXT(_ls_q,list); _RS(list); _ls_qsize--; \
+          }                                                                                    \
+          if (_ls_tail) {                                                                      \
+            _SV(_ls_tail,list); _NEXTASGN(_ls_tail,list,_ls_e); _RS(list);                     \
+          } else {                                                                             \
+            _CASTASGN(list,_ls_e);                                                             \
+          }                                                                                    \
+          _ls_tail = _ls_e;                                                                    \
+        }                                                                                      \
+        _ls_p = _ls_q;                                                                         \
+      }                                                                                        \
+      _SV(_ls_tail,list); _NEXTASGN(_ls_tail,list,NULL); _RS(list);                            \
+      if (_ls_nmerges <= 1) {                                                                  \
+        _ls_looping=0;                                                                         \
+      }                                                                                        \
+      _ls_insize *= 2;                                                                         \
+    }                                                                                          \
+  } else _tmp=NULL; /* quiet gcc unused variable warning */                                    \
+} while (0)
+
+#define DL_SORT(list, cmp)                                                                     \
+do {                                                                                           \
+  LDECLTYPE(list) _ls_p;                                                                       \
+  LDECLTYPE(list) _ls_q;                                                                       \
+  LDECLTYPE(list) _ls_e;                                                                       \
+  LDECLTYPE(list) _ls_tail;                                                                    \
+  LDECLTYPE(list) _ls_oldhead;                                                                 \
+  LDECLTYPE(list) _tmp;                                                                        \
+  int _ls_insize, _ls_nmerges, _ls_psize, _ls_qsize, _ls_i, _ls_looping;                       \
+  if (list) {                                                                                  \
+    _ls_insize = 1;                                                                            \
+    _ls_looping = 1;                                                                           \
+    while (_ls_looping) {                                                                      \
+      _CASTASGN(_ls_p,list);                                                                   \
+      _CASTASGN(_ls_oldhead,list);                                                             \
+      list = NULL;                                                                             \
+      _ls_tail = NULL;                                                                         \
+      _ls_nmerges = 0;                                                                         \
+      while (_ls_p) {                                                                          \
+        _ls_nmerges++;                                                                         \
+        _ls_q = _ls_p;                                                                         \
+        _ls_psize = 0;                                                                         \
+        for (_ls_i = 0; _ls_i < _ls_insize; _ls_i++) {                                         \
+          _ls_psize++;                                                                         \
+          _SV(_ls_q,list); _ls_q = _NEXT(_ls_q,list); _RS(list);                               \
+          if (!_ls_q) break;                                                                   \
+        }                                                                                      \
+        _ls_qsize = _ls_insize;                                                                \
+        while (_ls_psize > 0 || (_ls_qsize > 0 && _ls_q)) {                                    \
+          if (_ls_psize == 0) {                                                                \
+            _ls_e = _ls_q; _SV(_ls_q,list); _ls_q = _NEXT(_ls_q,list); _RS(list); _ls_qsize--; \
+          } else if (_ls_qsize == 0 || !_ls_q) {                                               \
+            _ls_e = _ls_p; _SV(_ls_p,list); _ls_p = _NEXT(_ls_p,list); _RS(list); _ls_psize--; \
+          } else if (cmp(_ls_p,_ls_q) <= 0) {                                                  \
+            _ls_e = _ls_p; _SV(_ls_p,list); _ls_p = _NEXT(_ls_p,list); _RS(list); _ls_psize--; \
+          } else {                                                                             \
+            _ls_e = _ls_q; _SV(_ls_q,list); _ls_q = _NEXT(_ls_q,list); _RS(list); _ls_qsize--; \
+          }                                                                                    \
+          if (_ls_tail) {                                                                      \
+            _SV(_ls_tail,list); _NEXTASGN(_ls_tail,list,_ls_e); _RS(list);                     \
+          } else {                                                                             \
+            _CASTASGN(list,_ls_e);                                                             \
+          }                                                                                    \
+          _SV(_ls_e,list); _PREVASGN(_ls_e,list,_ls_tail); _RS(list);                          \
+          _ls_tail = _ls_e;                                                                    \
+        }                                                                                      \
+        _ls_p = _ls_q;                                                                         \
+      }                                                                                        \
+      _CASTASGN(list->prev, _ls_tail);                                                         \
+      _SV(_ls_tail,list); _NEXTASGN(_ls_tail,list,NULL); _RS(list);                            \
+      if (_ls_nmerges <= 1) {                                                                  \
+        _ls_looping=0;                                                                         \
+      }                                                                                        \
+      _ls_insize *= 2;                                                                         \
+    }                                                                                          \
+  } else _tmp=NULL; /* quiet gcc unused variable warning */                                    \
+} while (0)
+
+#define CDL_SORT(list, cmp)                                                                    \
+do {                                                                                           \
+  LDECLTYPE(list) _ls_p;                                                                       \
+  LDECLTYPE(list) _ls_q;                                                                       \
+  LDECLTYPE(list) _ls_e;                                                                       \
+  LDECLTYPE(list) _ls_tail;                                                                    \
+  LDECLTYPE(list) _ls_oldhead;                                                                 \
+  LDECLTYPE(list) _tmp;                                                                        \
+  LDECLTYPE(list) _tmp2;                                                                       \
+  int _ls_insize, _ls_nmerges, _ls_psize, _ls_qsize, _ls_i, _ls_looping;                       \
+  if (list) {                                                                                  \
+    _ls_insize = 1;                                                                            \
+    _ls_looping = 1;                                                                           \
+    while (_ls_looping) {                                                                      \
+      _CASTASGN(_ls_p,list);                                                                   \
+      _CASTASGN(_ls_oldhead,list);                                                             \
+      list = NULL;                                                                             \
+      _ls_tail = NULL;                                                                         \
+      _ls_nmerges = 0;                                                                         \
+      while (_ls_p) {                                                                          \
+        _ls_nmerges++;                                                                         \
+        _ls_q = _ls_p;                                                                         \
+        _ls_psize = 0;                                                                         \
+        for (_ls_i = 0; _ls_i < _ls_insize; _ls_i++) {                                         \
+          _ls_psize++;                                                                         \
+          _SV(_ls_q,list);                                                                     \
+          if (_NEXT(_ls_q,list) == _ls_oldhead) {                                              \
+            _ls_q = NULL;                                                                      \
+          } else {                                                                             \
+            _ls_q = _NEXT(_ls_q,list);                                                         \
+          }                                                                                    \
+          _RS(list);                                                                           \
+          if (!_ls_q) break;                                                                   \
+        }                                                                                      \
+        _ls_qsize = _ls_insize;                                                                \
+        while (_ls_psize > 0 || (_ls_qsize > 0 && _ls_q)) {                                    \
+          if (_ls_psize == 0) {                                                                \
+            _ls_e = _ls_q; _SV(_ls_q,list); _ls_q = _NEXT(_ls_q,list); _RS(list); _ls_qsize--; \
+            if (_ls_q == _ls_oldhead) { _ls_q = NULL; }                                        \
+          } else if (_ls_qsize == 0 || !_ls_q) {                                               \
+            _ls_e = _ls_p; _SV(_ls_p,list); _ls_p = _NEXT(_ls_p,list); _RS(list); _ls_psize--; \
+            if (_ls_p == _ls_oldhead) { _ls_p = NULL; }                                        \
+          } else if (cmp(_ls_p,_ls_q) <= 0) {                                                  \
+            _ls_e = _ls_p; _SV(_ls_p,list); _ls_p = _NEXT(_ls_p,list); _RS(list); _ls_psize--; \
+            if (_ls_p == _ls_oldhead) { _ls_p = NULL; }                                        \
+          } else {                                                                             \
+            _ls_e = _ls_q; _SV(_ls_q,list); _ls_q = _NEXT(_ls_q,list); _RS(list); _ls_qsize--; \
+            if (_ls_q == _ls_oldhead) { _ls_q = NULL; }                                        \
+          }                                                                                    \
+          if (_ls_tail) {                                                                      \
+            _SV(_ls_tail,list); _NEXTASGN(_ls_tail,list,_ls_e); _RS(list);                     \
+          } else {                                                                             \
+            _CASTASGN(list,_ls_e);                                                             \
+          }                                                                                    \
+          _SV(_ls_e,list); _PREVASGN(_ls_e,list,_ls_tail); _RS(list);                          \
+          _ls_tail = _ls_e;                                                                    \
+        }                                                                                      \
+        _ls_p = _ls_q;                                                                         \
+      }                                                                                        \
+      _CASTASGN(list->prev,_ls_tail);                                                          \
+      _CASTASGN(_tmp2,list);                                                                   \
+      _SV(_ls_tail,list); _NEXTASGN(_ls_tail,list,_tmp2); _RS(list);                           \
+      if (_ls_nmerges <= 1) {                                                                  \
+        _ls_looping=0;                                                                         \
+      }                                                                                        \
+      _ls_insize *= 2;                                                                         \
+    }                                                                                          \
+  } else _tmp=NULL; /* quiet gcc unused variable warning */                                    \
+} while (0)
+
+/******************************************************************************
+ * singly linked list macros (non-circular)                                   *
+ *****************************************************************************/
+#define LL_PREPEND(head,add)                                                                   \
+do {                                                                                           \
+  (add)->next = head;                                                                          \
+  head = add;                                                                                  \
+} while (0)
+
+#define LL_APPEND(head,add)                                                                    \
+do {                                                                                           \
+  LDECLTYPE(head) _tmp;                                                                        \
+  (add)->next=NULL;                                                                            \
+  if (head) {                                                                                  \
+    _tmp = head;                                                                               \
+    while (_tmp->next) { _tmp = _tmp->next; }                                                  \
+    _tmp->next=(add);                                                                          \
+  } else {                                                                                     \
+    (head)=(add);                                                                              \
+  }                                                                                            \
+} while (0)
+
+#define LL_DELETE(head,del)                                                                    \
+do {                                                                                           \
+  LDECLTYPE(head) _tmp;                                                                        \
+  if ((head) == (del)) {                                                                       \
+    (head)=(head)->next;                                                                       \
+  } else {                                                                                     \
+    _tmp = head;                                                                               \
+    while (_tmp->next && (_tmp->next != (del))) {                                              \
+      _tmp = _tmp->next;                                                                       \
+    }                                                                                          \
+    if (_tmp->next) {                                                                          \
+      _tmp->next = ((del)->next);                                                              \
+    }                                                                                          \
+  }                                                                                            \
+} while (0)
+
+/* Here are VS2008 replacements for LL_APPEND and LL_DELETE */
+#define LL_APPEND_VS2008(head,add)                                                             \
+do {                                                                                           \
+  if (head) {                                                                                  \
+    (add)->next = head;     /* use add->next as a temp variable */                             \
+    while ((add)->next->next) { (add)->next = (add)->next->next; }                             \
+    (add)->next->next=(add);                                                                   \
+  } else {                                                                                     \
+    (head)=(add);                                                                              \
+  }                                                                                            \
+  (add)->next=NULL;                                                                            \
+} while (0)
+
+#define LL_DELETE_VS2008(head,del)                                                             \
+do {                                                                                           \
+  if ((head) == (del)) {                                                                       \
+    (head)=(head)->next;                                                                       \
+  } else {                                                                                     \
+    char *_tmp = (char*)(head);                                                                \
+    while (head->next && (head->next != (del))) {                                              \
+      head = head->next;                                                                       \
+    }                                                                                          \
+    if (head->next) {                                                                          \
+      head->next = ((del)->next);                                                              \
+    }                                                                                          \
+    {                                                                                          \
+      char **_head_alias = (char**)&(head);                                                    \
+      *_head_alias = _tmp;                                                                     \
+    }                                                                                          \
+  }                                                                                            \
+} while (0)
+#ifdef NO_DECLTYPE
+#undef LL_APPEND
+#define LL_APPEND LL_APPEND_VS2008
+#undef LL_DELETE
+#define LL_DELETE LL_DELETE_VS2008
+#endif
+/* end VS2008 replacements */
+
+#define LL_FOREACH(head,el)                                                                    \
+    for(el=head;el;el=el->next)
+
+#define LL_FOREACH_SAFE(head,el,tmp)                                                           \
+  for((el)=(head);(el) && (tmp = (el)->next, 1); (el) = tmp)
+
+#define LL_SEARCH_SCALAR(head,out,field,val)                                                   \
+do {                                                                                           \
+    LL_FOREACH(head,out) {                                                                     \
+      if ((out)->field == (val)) break;                                                        \
+    }                                                                                          \
+} while(0) 
+
+#define LL_SEARCH(head,out,elt,cmp)                                                            \
+do {                                                                                           \
+    LL_FOREACH(head,out) {                                                                     \
+      if ((cmp(out,elt))==0) break;                                                            \
+    }                                                                                          \
+} while(0) 
+
+/******************************************************************************
+ * doubly linked list macros (non-circular)                                   *
+ *****************************************************************************/
+#define DL_PREPEND(head,add)                                                                   \
+do {                                                                                           \
+ (add)->next = head;                                                                           \
+ if (head) {                                                                                   \
+   (add)->prev = (head)->prev;                                                                 \
+   (head)->prev = (add);                                                                       \
+ } else {                                                                                      \
+   (add)->prev = (add);                                                                        \
+ }                                                                                             \
+ (head) = (add);                                                                               \
+} while (0)
+
+#define DL_APPEND(head,add)                                                                    \
+do {                                                                                           \
+  if (head) {                                                                                  \
+      (add)->prev = (head)->prev;                                                              \
+      (head)->prev->next = (add);                                                              \
+      (head)->prev = (add);                                                                    \
+      (add)->next = NULL;                                                                      \
+  } else {                                                                                     \
+      (head)=(add);                                                                            \
+      (head)->prev = (head);                                                                   \
+      (head)->next = NULL;                                                                     \
+  }                                                                                            \
+} while (0);
+
+#define DL_DELETE(head,del)                                                                    \
+do {                                                                                           \
+  if ((del)->prev == (del)) {                                                                  \
+      (head)=NULL;                                                                             \
+  } else if ((del)==(head)) {                                                                  \
+      (del)->next->prev = (del)->prev;                                                         \
+      (head) = (del)->next;                                                                    \
+  } else {                                                                                     \
+      (del)->prev->next = (del)->next;                                                         \
+      if ((del)->next) {                                                                       \
+          (del)->next->prev = (del)->prev;                                                     \
+      } else {                                                                                 \
+          (head)->prev = (del)->prev;                                                          \
+      }                                                                                        \
+  }                                                                                            \
+} while (0);
+
+#define DL_FOREACH(head,el)                                                                    \
+    for(el=head;el;el=el->next)
+
+/* this version is safe for deleting the elements during iteration */
+#define DL_FOREACH_SAFE(head,el,tmp)                                                           \
+  for((el)=(head);(el) && (tmp = (el)->next, 1); (el) = tmp)
+
+/* these are identical to their singly-linked list counterparts */
+#define DL_SEARCH_SCALAR LL_SEARCH_SCALAR
+#define DL_SEARCH LL_SEARCH
+
+/******************************************************************************
+ * circular doubly linked list macros                                         *
+ *****************************************************************************/
+#define CDL_PREPEND(head,add)                                                                  \
+do {                                                                                           \
+ if (head) {                                                                                   \
+   (add)->prev = (head)->prev;                                                                 \
+   (add)->next = (head);                                                                       \
+   (head)->prev = (add);                                                                       \
+   (add)->prev->next = (add);                                                                  \
+ } else {                                                                                      \
+   (add)->prev = (add);                                                                        \
+   (add)->next = (add);                                                                        \
+ }                                                                                             \
+(head)=(add);                                                                                  \
+} while (0)
+
+#define CDL_DELETE(head,del)                                                                   \
+do {                                                                                           \
+  if ( ((head)==(del)) && ((head)->next == (head))) {                                          \
+      (head) = 0L;                                                                             \
+  } else {                                                                                     \
+     (del)->next->prev = (del)->prev;                                                          \
+     (del)->prev->next = (del)->next;                                                          \
+     if ((del) == (head)) (head)=(del)->next;                                                  \
+  }                                                                                            \
+} while (0);
+
+#define CDL_FOREACH(head,el)                                                                   \
+    for(el=head;el;el=(el->next==head ? 0L : el->next)) 
+
+#define CDL_FOREACH_SAFE(head,el,tmp1,tmp2)                                                    \
+  for((el)=(head), ((tmp1)=(head)?((head)->prev):NULL);                                        \
+      (el) && ((tmp2)=(el)->next, 1);                                                          \
+      ((el) = (((el)==(tmp1)) ? 0L : (tmp2))))
+
+#define CDL_SEARCH_SCALAR(head,out,field,val)                                                  \
+do {                                                                                           \
+    CDL_FOREACH(head,out) {                                                                    \
+      if ((out)->field == (val)) break;                                                        \
+    }                                                                                          \
+} while(0) 
+
+#define CDL_SEARCH(head,out,elt,cmp)                                                           \
+do {                                                                                           \
+    CDL_FOREACH(head,out) {                                                                    \
+      if ((cmp(out,elt))==0) break;                                                            \
+    }                                                                                          \
+} while(0) 
+
+#endif /* UTLIST_H */
+
diff --git a/resource/csdk/connectivity/samples/linux/.gitignore b/resource/csdk/connectivity/samples/linux/.gitignore
new file mode 100644 (file)
index 0000000..1ec70a5
--- /dev/null
@@ -0,0 +1,2 @@
+/.objs/
+/out/
diff --git a/resource/csdk/connectivity/samples/linux/Makefile b/resource/csdk/connectivity/samples/linux/Makefile
new file mode 100644 (file)
index 0000000..74197a0
--- /dev/null
@@ -0,0 +1,120 @@
+#/******************************************************************
+# *
+# * Copyright 2014 Samsung Electronics All Rights Reserved.
+# *
+# *
+# *
+# * Licensed under the Apache License, Version 2.0 (the "License");
+# * you may not use this file except in compliance with the License.
+# * You may obtain a copy of the License at
+# *
+# *      http://www.apache.org/licenses/LICENSE-2.0
+# *
+# * Unless required by applicable law or agreed to in writing, software
+# * distributed under the License is distributed on an "AS IS" BASIS,
+# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# * See the License for the specific language governing permissions and
+# * limitations under the License.
+# *
+#******************************************************************/
+
+##
+##     Definitions
+##
+SHELL                                          = /bin/bash
+PROJECT_NAME                           = connectivity_abstraction
+PROJECT_ROOT_PATH                      = ../..
+PROJECT_API_PATH                       = $(PROJECT_ROOT_PATH)/api
+PROJECT_INC_PATH                       = $(PROJECT_ROOT_PATH)/inc
+PROJECT_SRC_PATH                       = $(PROJECT_ROOT_PATH)/src
+PROJECT_COMMON_PATH            = $(PROJECT_ROOT_PATH)/common
+PROJECT_OUT_PATH                       = $(PROJECT_ROOT_PATH)/build/out
+COMPONENT_OUT_PATH             = ./out
+COMPONENT_OBJ_PATH             = ./.objs
+
+TARGET = sample_main
+
+##
+##     Commands
+##
+CC                     = gcc
+CXX                    = g++
+RM                     = rm -rf
+CP                     = cp
+MV                     = mv
+AR                     = ar
+LD                     = ld
+LN                     = ln
+CD                     = cd
+RANLIB         = ranlib
+
+##
+##     file declaration
+##
+COMPONENT_SRCS                 =  sample_main.c        \
+
+COMPONENT_OBJS                 = $(COMPONENT_SRCS:%.c=$(COMPONENT_OBJ_PATH)/%.o)
+
+##
+##     compiler flags
+##
+LIBS                           = -L$(PROJECT_OUT_PATH) -lconnectivity_abstraction
+
+CFLAGS                         = -g -c -Wall -fPIC
+
+LFLAGS                         = -ldl -lpthread
+
+IFLAGS                         = -I$(PROJECT_API_PATH) \
+
+DFLAGS                         = -DLINUX -DTB_LOG
+
+##
+##     compile and link rules
+##
+vpath %.c ./
+
+$(COMPONENT_OBJ_PATH)/%.o: %.c
+       @$(MAKE_OBJ_PATH)
+       $(CC) -o $@ $(CFLAGS) $(DFLAGS) $(IFLAGS) $<
+
+all : $(TARGET)
+       @echo   " "
+       @echo   "======================"
+       @echo   "       Success!!"
+       @echo   "======================"
+
+$(TARGET) : $(COMPONENT_OBJS)
+       @$(MAKE_COMPONENT_OUT_PATH)
+       $(CC) -o $@ $(COMPONENT_OBJS) $(LIBS) $(LFLAGS)
+       @$(MV) $(TARGET) $(COMPONENT_OUT_PATH)/.
+
+clean :        
+       @$(RM) $(COMPONENT_OBJ_PATH) \
+                       $(COMPONENT_OUT_PATH)
+
+install :
+       @$(MAKE_COMPONENT_OUT_PATH)
+       @$(CP) $(PROJECT_OUT_PATH)/* $(COMPONENT_OUT_PATH)/.
+
+##
+##     macros
+##
+define MAKE_OBJ_PATH
+       @if [ ! -d $(COMPONENT_OBJ_PATH) ]; then \
+       mkdir $(COMPONENT_OBJ_PATH); \
+       fi
+endef
+
+
+##
+##     macro
+##
+define MAKE_COMPONENT_OUT_PATH
+       @if     [ ! -d $(COMPONENT_OUT_PATH) ]; then    \
+       mkdir $(COMPONENT_OUT_PATH);    \
+       fi
+endef
+
+.PHONY:        all clean install
+
+
diff --git a/resource/csdk/connectivity/samples/linux/README b/resource/csdk/connectivity/samples/linux/README
new file mode 100644 (file)
index 0000000..53c5564
--- /dev/null
@@ -0,0 +1,14 @@
+
+#1. build "connectivity" project
+       - execute make command in "connectivity/build/" folder.
+
+#2. build "example" for linux
+       - execute make command in "connectivity/samples/linux/" folder.
+
+#3. execute sample program
+       - you should link the "connectivity_abstraction" library.
+       ex. LD_LIBRARY_PATH=../../../build/out ./sample_main
+       
+#4     execute sample.sh in "connectivity/samples/linux/" folder
+ ex.    $./sample.sh (This will make a clean build and execute application)
+
diff --git a/resource/csdk/connectivity/samples/linux/sample.sh b/resource/csdk/connectivity/samples/linux/sample.sh
new file mode 100644 (file)
index 0000000..3d85b40
--- /dev/null
@@ -0,0 +1,35 @@
+#/******************************************************************
+# *
+# * Copyright 2014 Samsung Electronics All Rights Reserved.
+# *
+# *
+# *
+# * Licensed under the Apache License, Version 2.0 (the "License");
+# * you may not use this file except in compliance with the License.
+# * You may obtain a copy of the License at
+# *
+# *      http://www.apache.org/licenses/LICENSE-2.0
+# *
+# * Unless required by applicable law or agreed to in writing, software
+# * distributed under the License is distributed on an "AS IS" BASIS,
+# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# * See the License for the specific language governing permissions and
+# * limitations under the License.
+# *
+#******************************************************************/
+
+cd ../../lib/libcoap-4.1.1
+make clean
+make
+
+cd ../../build/linux 
+make clean
+make
+
+
+cd ../../samples/linux
+make clean
+make
+
+cd out
+LD_LIBRARY_PATH=../../../build/out ./sample_main
diff --git a/resource/csdk/connectivity/samples/linux/sample_main.c b/resource/csdk/connectivity/samples/linux/sample_main.c
new file mode 100644 (file)
index 0000000..17992e2
--- /dev/null
@@ -0,0 +1,395 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include "cacommon.h"
+#include "cainterface.h"
+
+#define MAX_BUF_LEN 1024
+
+char get_menu();
+void process();
+
+void start_listening_server();
+void start_discovery_server();
+void find_resource();
+void send_request();
+void send_response();
+void advertise_resource();
+void select_network();
+void unselect_network();
+void handle_request_response();
+
+void request_handler(CARemoteEndpoint_t* object, CARequestInfo_t* requestInfo);
+void response_handler(CARemoteEndpoint_t* object, CAResponseInfo_t* responseInfo);
+void send_request_tmp(CARemoteEndpoint_t* endpoint, CAToken_t token);
+
+int main()
+{
+    system("clear");
+
+    printf("=============================================\n");
+    printf("\t\tsample main\n");
+    printf("=============================================\n");
+
+    CAInitialize();
+
+    // network enable
+    // default
+    printf("select default network(WIFI)\n");
+    CASelectNetwork(CA_WIFI);
+
+    // set handler.
+    CARegisterHandler(request_handler, response_handler);
+
+    process();
+
+    CATerminate();
+
+    return 0;
+}
+
+void process()
+{
+    while (1)
+    {
+        char menu = get_menu();
+
+        switch (menu)
+        {
+            case 'm': // menu
+            case 'M':
+                continue;
+
+            case 'q': // quit
+            case 'Q':
+                printf("quit..!!\n");
+                return;
+
+            case 's': // start listening server
+            case 'S':
+                start_listening_server();
+                break;
+
+            case 'd': // start discovery server
+            case 'D':
+                start_discovery_server();
+                break;
+
+            case 'f': // find resource
+            case 'F':
+                find_resource();
+                break;
+
+            case 'r': // send request
+            case 'R':
+                send_request();
+                break;
+
+            case 'a': // advertise resource
+            case 'A':
+                advertise_resource();
+                break;
+
+            case 'n': // select network
+            case 'N':
+                select_network();
+                break;
+
+            case 'x': // unselect network
+            case 'X':
+                unselect_network();
+                break;
+
+            case 'h': // handle request response
+            case 'H':
+                handle_request_response();
+                break;
+
+            default:
+                printf("not supported menu!!\n");
+                break;
+        }
+    }
+
+}
+
+void start_listening_server()
+{
+    printf("start listening server!!\n");
+
+    CAStartListeningServer();
+}
+
+void start_discovery_server()
+{
+    printf("start discovery server!!\n");
+
+    CAStartDiscoveryServer();
+}
+
+void find_resource()
+{
+    char buf[MAX_BUF_LEN];
+
+    memset(buf, 0, sizeof(char) * MAX_BUF_LEN);
+
+    printf("\n=============================================\n");
+    printf("ex) a/light\n");
+    printf("reference uri : ");
+
+    gets(buf);
+
+    CAResult_t res = CAFindResource(buf);
+
+    if (res != CA_STATUS_OK)
+    {
+        printf("find resource error!!\n");
+    }
+    else
+    {
+        printf("find resource fo %s URI\n", buf);
+    }
+
+    printf("=============================================\n");
+}
+
+void send_request()
+{
+    char buf[MAX_BUF_LEN];
+
+    memset(buf, 0, sizeof(char) * MAX_BUF_LEN);
+
+    printf("\n=============================================\n");
+    printf("coap://10.11.12.13:4545/resource_uri ( for IP )\n");
+    printf("coap://10:11:12:13:45:45/resource_uri ( for BT )\n");
+    printf("uri : ");
+
+    gets(buf);
+
+    // create remote endpoint
+    CARemoteEndpoint_t* endpoint = NULL;
+    CAResult_t res = CACreateRemoteEndpoint(buf, &endpoint);
+    endpoint->connectivityType = CA_WIFI; //
+
+    if (res != CA_STATUS_OK)
+    {
+        printf("create remote endpoint error!!");
+        return;
+    }
+
+    // create token
+    CAToken_t token = NULL;
+    res = CAGenerateToken(&token);
+
+    if (res != CA_STATUS_OK)
+    {
+        printf("token generate error!!");
+        token = NULL;
+    }
+
+    printf("generated token %s\n", (token != NULL) ? token : "");
+
+    CAInfo_t requestData;
+    memset(&requestData, 0, sizeof(CAInfo_t));
+    requestData.token = token;
+    requestData.payload = "Temp Json Payload";
+
+    CARequestInfo_t requestInfo;
+    memset(&requestInfo, 0, sizeof(CARequestInfo_t));
+    requestInfo.method = CA_GET;
+    requestInfo.info = requestData;
+
+    // send request
+    CASendRequest(endpoint, &requestInfo);
+
+    if (token != NULL)
+    {
+        CADestroyToken(token);
+    }
+
+    // destroy remote endpoint
+    if (endpoint != NULL)
+    {
+        CADestroyRemoteEndpoint(endpoint);
+    }
+
+    printf("=============================================\n");
+}
+
+void advertise_resource()
+{
+    printf("\n=============================================\n");
+
+    printf("not implemented yet.\n");
+
+    printf("=============================================\n");
+}
+
+void select_network()
+{
+    char buf[MAX_BUF_LEN];
+
+    printf("\n=============================================\n");
+    printf("\tselect network\n");
+    printf("ETHERNET : 0\n");
+    printf("WIFI : 1\n");
+    printf("EDR : 2\n");
+    printf("LE : 3\n");
+    printf("select : ");
+
+    memset(buf, 0, sizeof(char) * MAX_BUF_LEN);
+    gets(buf);
+
+    int number = buf[0] - '0';
+
+    number = (number < 0 || number > 3) ? 1 : number;
+
+    CASelectNetwork(1 << number);
+
+    printf("=============================================\n");
+}
+
+void unselect_network()
+{
+    char buf[MAX_BUF_LEN];
+
+    printf("\n=============================================\n");
+    printf("\tunselect enabled network\n");
+    printf("ETHERNET : 0\n");
+    printf("WIFI : 1\n");
+    printf("EDR : 2\n");
+    printf("LE : 3\n");
+    printf("select : ");
+
+    memset(buf, 0, sizeof(char) * MAX_BUF_LEN);
+    gets(buf);
+
+    int number = buf[0] - '0';
+
+    number = (number < 0 || number > 3) ? 1 : number;
+
+    CAUnSelectNetwork(1 << number);
+
+    printf("=============================================\n");
+}
+
+char get_menu()
+{
+    char buf[MAX_BUF_LEN];
+
+    printf("\n=============================================\n");
+    printf("\t\tMenu\n");
+    printf("\ts : start listening server\n");
+    printf("\td : start discovery server\n");
+    printf("\tf : find resource\n");
+    printf("\tr : send request\n");
+    printf("\ta : advertise resource\n");
+    printf("\tn : select network\n");
+    printf("\tx : unselect network\n");
+    printf("\th : handle request response\n");
+    printf("\tq : quit\n");
+    printf("=============================================\n");
+    printf("select : ");
+
+    memset(buf, 0, sizeof(char) * MAX_BUF_LEN);
+
+    gets(buf);
+
+    return buf[0];
+}
+
+void handle_request_response()
+{
+    printf("handle_request_response\n");
+    CAHandleRequestResponse();
+}
+
+void request_handler(CARemoteEndpoint_t* object, CARequestInfo_t* requestInfo)
+{
+
+    printf("request_handler, uri : %s, data : %s\n", (object != NULL) ? object->resourceUri : "",
+            (requestInfo != NULL) ? requestInfo->info.payload : "");
+
+    printf("send response with URI\n");
+    send_response(object, (requestInfo != NULL) ? requestInfo->info.token : "");
+
+}
+
+void response_handler(CARemoteEndpoint_t* object, CAResponseInfo_t* responseInfo)
+{
+
+    printf("response_handler, uri : %s, data : %s\n", (object != NULL) ? object->resourceUri : "",
+            (responseInfo != NULL) ? responseInfo->info.payload : "");
+
+    printf("send request after receivce response data\n");
+    send_request_tmp(object, (responseInfo != NULL) ? responseInfo->info.token : "");
+}
+
+void send_response(CARemoteEndpoint_t* endpoint, CAToken_t request_token)
+{
+
+    printf("\n=============================================\n");
+
+    CAInfo_t responseData;
+    //responseData = (CAInfo*) malloc(sizeof(CAInfo));
+    memset(&responseData, 0, sizeof(CAInfo_t));
+    responseData.token = request_token;
+    responseData.payload = "response payload";
+
+    CAResponseInfo_t responseInfo;
+    //responseInfo = (CAResponseInfo*) malloc(sizeof(CAResponseInfo));
+    memset(&responseInfo, 0, sizeof(CAResponseInfo_t));
+    responseInfo.result = 203;
+    responseInfo.info = responseData;
+
+    // send request
+    endpoint->connectivityType = CA_WIFI;
+    CASendResponse(endpoint, &responseInfo);
+
+    printf("=============================================\n");
+
+}
+
+void send_request_tmp(CARemoteEndpoint_t* endpoint, CAToken_t token)
+{
+
+    printf("\n=============================================\n");
+
+    CAInfo_t requestData;
+    memset(&requestData, 0, sizeof(CAInfo_t));
+    requestData.token = token;
+    requestData.payload = "Temp Json Payload";
+
+    CARequestInfo_t requestInfo;
+    memset(&requestInfo, 0, sizeof(CARequestInfo_t));
+    requestInfo.method = CA_GET;
+    requestInfo.info = requestData;
+
+    // send request
+    endpoint->connectivityType = CA_WIFI;
+    CASendRequest(endpoint, &requestInfo);
+
+    printf("=============================================\n");
+
+}
+
diff --git a/resource/csdk/connectivity/samples/linux/threadpool/Makefile b/resource/csdk/connectivity/samples/linux/threadpool/Makefile
new file mode 100644 (file)
index 0000000..74abc3d
--- /dev/null
@@ -0,0 +1,14 @@
+CC=gcc
+ROOT_DIR = ../../..
+INC_DIR := -I$(ROOT_DIR)/api -I$(ROOT_DIR)/inc -I$(ROOT_DIR)/common/inc
+SRC_DIR := $(ROOT_DIR)/common/src/
+CFLAGS = -Wall
+COMPILEFLAGS = `pkg-config --cflags glib-2.0`
+LDFLAGS = `pkg-config --libs glib-2.0` 
+
+OUT = threadpool
+
+all: 
+       $(CC) $(CFLAGS) $(INC_DIR) $(COMPILEFLAGS) $(SRC_DIR)uthreadpool.c $(SRC_DIR)umutex.c $(SRC_DIR)/../logger.c main.c -o $(OUT) $(LDFLAGS)
+clean:
+       rm -f $(OUT)
diff --git a/resource/csdk/connectivity/samples/linux/threadpool/main.c b/resource/csdk/connectivity/samples/linux/threadpool/main.c
new file mode 100644 (file)
index 0000000..3b83fa0
--- /dev/null
@@ -0,0 +1,127 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "uthreadpool.h"
+#include "umutex.h"
+
+u_thread_pool_t gThreadPoolHandle = NULL;
+
+u_mutex gMutex = NULL;
+u_cond gCond = NULL;
+
+void task(void *data)
+{
+    printf("[TASK] Task is executing: data: %s\n", (char *) data);
+
+    //Signal the condition that task has been completed
+    printf("[TASK] Signaling the condition\n");
+    u_cond_signal(gCond);
+}
+
+void testThreadPool(void)
+{
+    char *string = "Test glib thread pool";
+
+    //Initialize the mutex
+    printf("[testThreadPool] Initializing mutex\n");
+    u_mutex_init();
+
+    //Initialize the thread pool
+    printf("[testThreadPool] Initializing thread pool\n");
+    if (CA_STATUS_OK != u_thread_pool_init(2, &gThreadPoolHandle))
+    {
+        printf("thread_pool_init failed!\n");
+        return;
+    }
+
+    //Create the mutex
+    printf("[testThreadPool] Creating mutex\n");
+    gMutex = u_mutex_new();
+    if (NULL == gMutex)
+    {
+        printf("[testThreadPool] Failed to create mutex!\n");
+        return;
+    }
+
+    //Create the condition
+    printf("[testThreadPool] Creating Condition\n");
+    gCond = u_cond_new();
+    if (NULL == gCond)
+    {
+        printf("[testThreadPool] Failed to create condition!\n");
+
+        u_mutex_free(gMutex);
+        return;
+    }
+
+    //Lock the mutex
+    printf("[testThreadPool] Locking the mutex\n");
+    u_mutex_lock(gMutex);
+
+    //Add task to thread pool
+    printf("[testThreadPool] Adding the task to thread pool\n");
+    if (CA_STATUS_OK != u_thread_pool_add_task(gThreadPoolHandle, task, (void *) string))
+    {
+        printf("[testThreadPool] thread_pool_add_task failed!\n");
+
+        u_mutex_unlock(gMutex);
+        u_mutex_free(gMutex);
+        u_cond_free(gCond);
+        return;
+    }
+
+    //Wait for the task to be executed
+    printf("[testThreadPool] Waiting for the task to be completed\n");
+    u_cond_wait(gCond, gMutex);
+
+    //Unlock the mutex
+    printf("[testThreadPool] Got the signal and unlock the mutex\n");
+    u_mutex_unlock(gMutex);
+
+    printf("[testThreadPool] Task is completed and terminating threadpool\n");
+    u_mutex_free(gMutex);
+    u_cond_free(gCond);
+    u_thread_pool_free(gThreadPoolHandle);
+
+    printf("Exiting from testThreadPool\n");
+}
+
+static void menu()
+{
+    printf(" =====================================================================\n");
+    printf("|                 Welcome to Theadpool testing                        |\n");
+    printf("|---------------------------------------------------------------------|\n");
+    printf("|                           ** Options **                             |\n");
+    printf("|  1 - Test Threadpool functionality                                  |\n");
+    printf("|  0 - Terminate test                                                 |\n");
+}
+
+static void startTesting(void)
+{
+    while (1)
+    {
+        int choice = -1;
+        scanf("%d", &choice);
+
+        switch (choice)
+        {
+            case 0:
+                printf("Terminating test.....\n");
+                return;
+            case 1:
+                testThreadPool();
+                break;
+            default:
+                printf("Invalid input...\n");
+                menu();
+                break;
+        }
+    }
+}
+
+int main()
+{
+    menu();
+    startTesting();
+    return 0;
+}
diff --git a/resource/csdk/connectivity/src/bt_edr_adapter/linux/caedradapter.c b/resource/csdk/connectivity/src/bt_edr_adapter/linux/caedradapter.c
new file mode 100644 (file)
index 0000000..3a31a81
--- /dev/null
@@ -0,0 +1,133 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "caedradapter.h"
+#include "logger.h"
+
+#define TAG PCF("CA")
+
+static CANetworkPacketReceivedCallback gEDRReceivedCallback = NULL;
+
+CAResult_t CAInitializeEDR(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAInitializeEDR");
+
+    gEDRReceivedCallback = reqRespCallback;
+
+    // register handlers
+    CAConnectivityHandler_t handler;
+    memset(&handler, 0, sizeof(CAConnectivityHandler_t));
+
+    handler.startAdapter = CAStartEDR;
+    handler.startListenServer = CAStartEDRListeningServer;
+    handler.startDiscoverServer = CAStartEDRDiscoveryServer;
+    handler.sendData = CASendEDRUnicastData;
+    handler.sendDataToAll = CASendEDRMulticastData;
+    handler.startNotifyServer = CAStartEDRNotifyServer;
+    handler.sendNotification = CASendEDRNotification;
+    handler.GetnetInfo = CAGetEDRInterfaceInformation;
+    handler.readData = CAReadEDRData;
+    handler.stopAdapter = CAStopEDR;
+    handler.terminate = CATerminateEDR;
+
+    registerCallback(handler, CA_EDR);
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartEDR()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartEDR");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartEDRListeningServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartEDRListeningServer");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartEDRDiscoveryServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartEDRDiscoveryServer");
+
+    return CA_STATUS_OK;
+}
+
+uint32_t CASendEDRUnicastData(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendEDRUnicastData");
+
+    return 0;
+}
+
+uint32_t CASendEDRMulticastData(void* data, uint32_t dataLen)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendEDRMulticastData");
+
+    return 0;
+}
+
+CAResult_t CAStartEDRNotifyServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartEDRNotifyServer");
+
+    return CA_STATUS_OK;
+}
+
+uint32_t CASendEDRNotification(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendEDRNotification");
+
+    return 0;
+}
+
+CAResult_t CAGetEDRInterfaceInformation(CALocalConnectivityt_t** info, uint32_t* size)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAGetEDRInterfaceInformation");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAReadEDRData()
+{
+    OIC_LOG_V(DEBUG, TAG, "Read EDR Data");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStopEDR()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStopEDR");
+
+    return CA_STATUS_OK;
+}
+
+void CATerminateEDR()
+{
+    OIC_LOG_V(DEBUG, TAG, "CATerminateEDR");
+}
diff --git a/resource/csdk/connectivity/src/bt_le_adapter/caleadapter.c b/resource/csdk/connectivity/src/bt_le_adapter/caleadapter.c
new file mode 100644 (file)
index 0000000..ff60572
--- /dev/null
@@ -0,0 +1,417 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+#include "caleadapter.h"
+
+#ifdef __TIZEN__
+#include <arpa/inet.h>
+#include <sys/socket.h>
+#include <netdb.h>
+#include <ifaddrs.h>
+#include <unistd.h>
+#include <pthread.h>
+#endif //#ifdef __TIZEN__
+#include <stdio.h>
+#include <stdlib.h>
+
+#ifdef __TIZEN__
+#include "cableserver.h"
+#include "cableclient.h"
+#include "cacommon.h"
+#else // __ARDUINO__
+#include "BLEAdapterArduino.h"
+#include "caadapterutils.h"
+#endif //#ifdef __TIZEN__
+#define CALEADAPTER_TAG "CA_BLE_ADAPTER"
+
+static CANetworkChangeCallback gNetworkCallback = NULL;
+static char gLocalBLEAddress[16] =
+{ 0, };
+
+static int gIsServer = 0;
+
+int CALERegisterNetworkNotifications(CANetworkChangeCallback netCallback);
+
+#ifdef __TIZEN__
+int CALEDeviceStateChangedCb(int result, bt_adapter_state_e adapter_state, void *user_data);
+#endif //#ifdef __TIZEN__
+
+pthread_mutex_t gBleIsServerMutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
+
+pthread_mutex_t gBleNetworkCbMutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
+
+pthread_mutex_t gBleLocalAddressMutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
+
+CAResult_t CAInitializeLE(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback)
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    //Input validation
+    VERIFY_NON_NULL(registerCallback, NULL, "RegisterConnectivity callback is null");
+    VERIFY_NON_NULL(reqRespCallback, NULL, "PacketReceived Callback is null");
+    VERIFY_NON_NULL(netCallback, NULL, "NetworkChange Callback is null");
+
+#ifdef __TIZEN__
+
+    int ret = bt_initialize();
+    if (0 != ret)
+    {
+        OCLog(ERROR, CALEADAPTER_TAG, "bt_initialize failed!");
+        return CA_STATUS_FAILED;
+    }
+
+#endif //#ifdef __TIZEN__
+    CASetBLEReqRescallback(reqRespCallback);
+    CALERegisterNetworkNotifications(netCallback);
+
+    CAConnectivityHandler_t connHandler;
+    connHandler.startListenServer = CAStartLEListeningServer;
+    connHandler.startDiscoverServer = CAStartLEDiscoveryServer;
+    connHandler.sendData = CASendLEUnicastData;
+    connHandler.sendDataToAll = CASendLEMulticastData;
+    connHandler.startNotifyServer = CAStartLENotifyServer;
+    connHandler.sendNotification = CASendLENotification;
+    connHandler.GetnetInfo = CAGetLEInterfaceInformation;
+    connHandler.readData = CAReadLEData;
+    connHandler.terminate = CATerminateLE;
+    registerCallback(connHandler, CA_LE);
+
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+
+    return CA_STATUS_OK;
+}
+
+void CATerminateLE()
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    CASetBLEReqRescallback(NULL);
+    CALERegisterNetworkNotifications(NULL);
+
+    pthread_mutex_lock(&gBleIsServerMutex);
+    if (gIsServer == 1)
+    {
+        CAStopBleGattServer();
+    }
+    else
+    {
+        CAStopBLEGattClient();
+    }
+    pthread_mutex_unlock(&gBleIsServerMutex);
+
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+    return;
+}
+
+void CALEServerInitThreadFunc(void *param)
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "[CALEServerInitThreadFunc]IN");
+
+    CAStartBleGattServer();
+
+    OCLog(DEBUG, CALEADAPTER_TAG, "[CALEServerInitThreadFunc] OUT");
+}
+
+void CALEClientInitThreadFunc(void *param)
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "[CALEClientInitThreadFunc]IN");
+
+    CAStartBLEGattClient();
+
+    OCLog(DEBUG, CALEADAPTER_TAG, "[CALEClientInitThreadFunc] OUT");
+}
+
+CAResult_t CAStartLEListeningServer()
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    int init_pthread_status = 0;
+    pthread_t pthread_id = 0;
+    pthread_attr_t attr;
+    pthread_attr_init(&attr);
+    pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
+
+    init_pthread_status = pthread_create(&pthread_id, &attr, CALEServerInitThreadFunc, NULL);
+
+    if (init_pthread_status != 0)
+    {
+        OCLog(ERROR, CALEADAPTER_TAG, "pthread_create failed!");
+        return CA_STATUS_FAILED;
+    }
+
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+    pthread_mutex_lock(&gBleIsServerMutex);
+    gIsServer = 1;
+    pthread_mutex_unlock(&gBleIsServerMutex);
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartLEDiscoveryServer()
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    int init_pthread_status = 0;
+    pthread_t pthread_id = 0;
+    pthread_attr_t attr;
+    pthread_attr_init(&attr);
+    pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
+
+    init_pthread_status = pthread_create(&pthread_id, &attr, CALEClientInitThreadFunc, NULL);
+
+    if (init_pthread_status != 0)
+    {
+        OCLog(ERROR, CALEADAPTER_TAG, "pthread_create failed!");
+        return CA_STATUS_FAILED;
+    }
+
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+    pthread_mutex_lock(&gBleIsServerMutex);
+    gIsServer = 0;
+    pthread_mutex_unlock(&gBleIsServerMutex);
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartLENotifyServer()
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+
+    return CA_STATUS_OK;
+}
+
+uint32_t CASendLENotification(const CARemoteEndpoint_t *endpoint, void *data, uint32_t dataLen)
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAReadLEData()
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+
+    return CA_STATUS_OK;
+}
+
+uint32_t CASendLEUnicastData(const CARemoteEndpoint_t *endpoint, void *data, uint32_t dataLen)
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    //Input validation
+    VERIFY_NON_NULL(endpoint, NULL, "Remote endpoint is null");
+    VERIFY_NON_NULL(data, NULL, "Data is null");
+
+    CAResult_t result = CA_STATUS_FAILED;
+
+#ifdef __TIZEN__
+    pthread_mutex_lock(&gBleIsServerMutex);
+    if (gIsServer)
+    {
+        result = CAUpdateCharacteristicsInGattServer(data, dataLen);
+        if (CA_STATUS_OK != result)
+        {
+            OCLogv(ERROR, CALEADAPTER_TAG,
+                    "[SendLEUnicastData] sending unicast data to [%s] failed\n", endpoint->addressInfo.BT.btMacAddress);
+            pthread_mutex_unlock(&gBleIsServerMutex);
+            return 0;
+        }
+    }
+    else
+    {
+
+        result = CAUpdateCharacteristicsToGattServer(endpoint->addressInfo.BT.btMacAddress, data,
+                dataLen, UNICAST, 0);
+        if (CA_STATUS_OK != result)
+        {
+            OCLogv(ERROR, CALEADAPTER_TAG,
+                    "[SendLEUnicastData] sending unicast data to [%s] failed\n", endpoint->addressInfo.BT.btMacAddress);
+            pthread_mutex_unlock(&gBleIsServerMutex);
+            return 0;
+        }
+    }
+    pthread_mutex_unlock(&gBleIsServerMutex);
+#else
+    char *tempPath = "temp_path";
+    updateCharacteristicsInGattServer(tempPath, (char *) data, dataLen);
+#endif //#ifdef __TIZEN__
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+
+    return dataLen;
+}
+
+uint32_t CASendLEMulticastData(void *data, uint32_t dataLen)
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    //Input validation
+    VERIFY_NON_NULL(data, NULL, "Data is null");
+
+    if (0 >= dataLen)
+    {
+        OCLog(ERROR, CALEADAPTER_TAG, "Invalid Parameter");
+        return 0;
+    }
+
+    CAResult_t result = CA_STATUS_FAILED;
+#ifdef __TIZEN__
+    pthread_mutex_lock(&gBleIsServerMutex);
+    if (gIsServer)
+    {
+        result = CAUpdateCharacteristicsInGattServer(data, dataLen);
+        if (CA_STATUS_OK != result)
+        {
+            OCLogv(ERROR, CALEADAPTER_TAG,
+                    "[CASendLEMulticastData] updating data in server is failed");
+            pthread_mutex_unlock(&gBleIsServerMutex);
+            return 0;
+        }
+    }
+    else
+    {
+        result = CAUpdateCharacteristicsToAllGattServers(data, dataLen);
+        if (CA_STATUS_OK != result)
+        {
+            OCLogv(ERROR, CALEADAPTER_TAG,
+                    "[SendLEMulticastDataToAll] multicasting data to servers failed" );
+            pthread_mutex_unlock(&gBleIsServerMutex);
+            return 0;
+        }
+    }
+    pthread_mutex_unlock(&gBleIsServerMutex);
+#else
+    char *tempPath = "temp_path";
+    updateCharacteristicsInGattServer(tempPath, (char *) data, dataLen);
+#endif //#ifdef __TIZEN__
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+    return dataLen;
+}
+
+CAResult_t CAGetLEInterfaceInformation(CALocalConnectivityt_t **info, uint32_t *size)
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    VERIFY_NON_NULL(info, NULL, "CALocalConnectivity info is null");
+
+#ifdef OIC_ARDUINODUE
+    OCLog(DEBUG, CALEADAPTER_TAG, "Info from ARDUINO");
+    //1: call corresponding Arduino API
+#endif
+
+#if __TIZEN__
+
+    char *local_address = NULL;
+
+    bt_adapter_get_address(&local_address);
+    if (NULL == local_address)
+    {
+        OCLog(ERROR, CALEADAPTER_TAG, "Get local bt adapter address failed");
+        return CA_STATUS_FAILED;
+    }
+
+#endif //#if ARDUINODUE
+    *size = 0;
+    (*info) = (CALocalConnectivityt_t *) OICMalloc(sizeof(CALocalConnectivityt_t));
+    if (NULL == (*info))
+    {
+        OCLog(ERROR, CALEADAPTER_TAG, "Malloc failure!");
+        return CA_STATUS_FAILED;
+    }
+    memset((*info), 0x0, sizeof(CALocalConnectivityt_t));
+
+    strncpy((*info)->addressInfo.BT.btMacAddress, local_address, strlen(local_address));
+    pthread_mutex_lock(&gBleLocalAddressMutex);
+    strncpy(gLocalBLEAddress, local_address, sizeof(gLocalBLEAddress));
+    pthread_mutex_unlock(&gBleLocalAddressMutex);
+
+    (*info)->type = CA_LE;
+    *size = 1;
+    OICFree(local_address);
+
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+    return CA_STATUS_OK;
+}
+
+int CALERegisterNetworkNotifications(CANetworkChangeCallback netCallback)
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    pthread_mutex_lock(&gBleNetworkCbMutex);
+    gNetworkCallback = netCallback;
+    pthread_mutex_unlock(&gBleNetworkCbMutex);
+    int ret = 0;
+#ifdef __TIZEN__
+    if (netCallback)
+    {
+        ret = bt_adapter_set_state_changed_cb(CALEDeviceStateChangedCb, NULL);
+        if(ret != 0)
+        {
+            OCLog(ERROR, CALEADAPTER_TAG, "bt_adapter_set_state_changed_cb failed!");
+        }
+    }
+    else
+    {
+        ret = bt_adapter_unset_state_changed_cb();
+        if(ret != 0)
+        {
+            OCLog(ERROR, CALEADAPTER_TAG, "bt_adapter_set_state_changed_cb failed!");
+        }
+    }
+#endif //#ifdef __TIZEN__
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+    return CA_STATUS_OK;
+}
+
+#ifdef __TIZEN__
+
+int CALEDeviceStateChangedCb(int result, bt_adapter_state_e adapter_state, void *user_data)
+{
+    OCLog(DEBUG, CALEADAPTER_TAG, "IN");
+
+    bt_adapter_state_e btAdaptorState = BT_ADAPTER_DISABLED;
+    if (BT_ADAPTER_ENABLED == adapter_state)
+    {
+        btAdaptorState = BT_ADAPTER_ENABLED;
+    }
+
+    CALocalConnectivityt_t localEndpoint;
+
+    pthread_mutex_lock(&gBleLocalAddressMutex);
+    strncpy(localEndpoint.addressInfo.BT.btMacAddress, gLocalBLEAddress, strlen(gLocalBLEAddress));
+    pthread_mutex_unlock(&gBleLocalAddressMutex);
+
+    pthread_mutex_lock(&gBleNetworkCbMutex);
+    if(NULL != gNetworkCallback)
+    {
+        gNetworkCallback(&localEndpoint, adapter_state);
+    }
+    else
+    {
+        OCLog(ERROR, CALEADAPTER_TAG, "gNetworkCallback is NULL");
+    }
+    pthread_mutex_unlock(&gBleNetworkCbMutex);
+    OCLog(DEBUG, CALEADAPTER_TAG, "OUT");
+    return CA_STATUS_OK;
+}
+#endif //#ifdef OIC_TIZEN
diff --git a/resource/csdk/connectivity/src/bt_le_adapter/linux/caleadapter.c b/resource/csdk/connectivity/src/bt_le_adapter/linux/caleadapter.c
new file mode 100644 (file)
index 0000000..fb7ec92
--- /dev/null
@@ -0,0 +1,133 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "caleadapter.h"
+#include "logger.h"
+
+#define TAG PCF("CA")
+
+static CANetworkPacketReceivedCallback gLEReceivedCallback = NULL;
+
+CAResult_t CAInitializeLE(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAInitializeLE");
+
+    gLEReceivedCallback = reqRespCallback;
+
+    // register handlers
+    CAConnectivityHandler_t handler;
+    memset(&handler, 0, sizeof(CAConnectivityHandler_t));
+
+    handler.startAdapter = CAStartLE;
+    handler.startListenServer = CAStartLEListeningServer;
+    handler.startDiscoverServer = CAStartLEDiscoveryServer;
+    handler.sendData = CASendLEUnicastData;
+    handler.sendDataToAll = CASendLEMulticastData;
+    handler.startNotifyServer = CAStartLENotifyServer;
+    handler.sendNotification = CASendLENotification;
+    handler.GetnetInfo = CAGetLEInterfaceInformation;
+    handler.readData = CAReadLEData;
+    handler.stopAdapter = CAStopLE;
+    handler.terminate = CATerminateLE;
+
+    registerCallback(handler, CA_LE);
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartLE()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartLE");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartLEListeningServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartLEListeningServer");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartLEDiscoveryServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartLEDiscoveryServer");
+
+    return CA_STATUS_OK;
+}
+
+uint32_t CASendLEUnicastData(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendLEUnicastData");
+
+    return 0;
+}
+
+uint32_t CASendLEMulticastData(void* data, uint32_t dataLen)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendLEMulticastData");
+
+    return 0;
+}
+
+CAResult_t CAStartLENotifyServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartLENotifyServer");
+
+    return CA_STATUS_OK;
+}
+
+uint32_t CASendLENotification(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendLENotification");
+
+    return 0;
+}
+
+CAResult_t CAGetLEInterfaceInformation(CALocalConnectivityt_t** info, uint32_t* size)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAGetLEInterfaceInformation");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAReadLEData()
+{
+    OIC_LOG_V(DEBUG, TAG, "Read LE Data");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStopLE()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStopLE");
+
+    return CA_STATUS_OK;
+}
+
+void CATerminateLE()
+{
+    OIC_LOG_V(DEBUG, TAG, "TerminatLE");
+}
diff --git a/resource/csdk/connectivity/src/caconnectivitymanager.c b/resource/csdk/connectivity/src/caconnectivitymanager.c
new file mode 100644 (file)
index 0000000..29da713
--- /dev/null
@@ -0,0 +1,295 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdint.h>
+
+#include "cainterface.h"
+#include "caremotehandler.h"
+#include "camessagehandler.h"
+#include "canetworkconfigurator.h"
+#include "cainterfacecontroller.h"
+#include "logger.h"
+
+#define TAG PCF("CA")
+
+static void CAMessageHandler(int32_t id, CADetachErrorCode code)
+{
+}
+
+CAResult_t CAInitialize()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAInitialize");
+
+    CASetMessageHandlerCallback(CAMessageHandler);
+
+    CAResult_t res = CAInitializeMessageHandler();
+
+    if (res != CA_STATUS_OK)
+    {
+        return res;
+    }
+
+    return CA_STATUS_OK;
+}
+
+void CATerminate()
+{
+    OIC_LOG_V(DEBUG, TAG, "CATerminate");
+
+    CATerminateMessageHandler();
+}
+
+CAResult_t CAStartListeningServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartListeningServer");
+
+    return CAStartListeningServerAdapters();
+}
+
+CAResult_t CAStartDiscoveryServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartDiscoveryServer");
+
+    return CAStartDiscoveryServerAdapters();
+}
+
+CAResult_t CARegisterHandler(CARequestCallback ReqHandler, CAResponseCallback RespHandler)
+{
+    OIC_LOG_V(DEBUG, TAG, "CARegisterHandler");
+
+    CASetRequestResponseCallbacks(ReqHandler, RespHandler);
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CACreateRemoteEndpoint(const CAURI_t uri, CARemoteEndpoint_t** remoteEndpoint)
+{
+    OIC_LOG_V(DEBUG, TAG, "CACreateRemoteEndpoint");
+
+    CARemoteEndpoint_t* remote = CACreateRemoteEndpointUriInternal(uri);
+
+    *remoteEndpoint = remote;
+
+    if (remote == NULL)
+        return CA_STATUS_FAILED;
+
+    return CA_STATUS_OK;
+}
+
+void CADestroyRemoteEndpoint(CARemoteEndpoint_t* rep)
+{
+    OIC_LOG_V(DEBUG, TAG, "CADestroyRemoteEndpoint");
+
+    CADestroyRemoteEndpointInternal(rep);
+}
+
+CAResult_t CAGenerateToken(CAToken_t* token)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAGenerateToken");
+
+    return CAGenerateTokenInternal(token);
+}
+
+void CADestroyToken(CAToken_t token)
+{
+    OIC_LOG_V(DEBUG, TAG, "CADestroyToken");
+
+    CADestroyTokenInternal(token);
+}
+
+CAResult_t CAGetNetworkInformation(CALocalConnectivityt_t **info, uint32_t* size)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAGetNetworkInformation");
+
+    return CA_NOT_SUPPORTED;
+}
+
+CAResult_t CAFindResource(const CAURI_t resourceUri)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAFindResource");
+
+    int32_t actionId = -1;
+
+    actionId = CADetachMessageResourceUri(resourceUri);
+
+    if (actionId == -1)
+        return CA_SEND_FAILED;
+
+    OIC_LOG_V(DEBUG, TAG, "action id : %d", actionId);
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CASendRequest(const CARemoteEndpoint_t* object, CARequestInfo_t* requestInfo)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendGetRequest");
+
+    int32_t actionId = -1;
+
+    actionId = CADetachRequestMessage(object, requestInfo);
+
+    if (actionId == -1)
+        return CA_SEND_FAILED;
+
+    OIC_LOG_V(DEBUG, TAG, "action id : %d", actionId);
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CASendNotification(const CARemoteEndpoint_t* object, CAResponseInfo_t* responseInfo)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendNotification");
+
+    return CA_NOT_SUPPORTED;
+}
+
+CAResult_t CASendResponse(const CARemoteEndpoint_t* object, CAResponseInfo_t* responseInfo)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendResponse");
+
+    int32_t actionId = -1;
+
+    actionId = CADetachResponseMessage(object, responseInfo);
+
+    if (actionId == -1)
+        return CA_SEND_FAILED;
+
+    OIC_LOG_V(DEBUG, TAG, "action id : %d", actionId);
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAAdvertiseResource(const CAURI_t uri, CAHeaderOption_t* options, uint8_t numOptions)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAAdvertiseResource");
+
+    return CA_NOT_SUPPORTED;
+}
+
+CAResult_t CASelectNetwork(const uint32_t interestedNetwork)
+{
+    OIC_LOG_V(DEBUG, TAG, "Selected network : %d", interestedNetwork);
+
+    if (!(interestedNetwork & 0xf))
+    {
+        return CA_NOT_SUPPORTED;
+    }
+    CAResult_t res;
+
+    if (interestedNetwork & CA_ETHERNET)
+    {
+        res = CAAddNetworkType(CA_ETHERNET);
+        if (res != CA_STATUS_OK)
+        {
+            return res;
+        }
+    }
+
+    if (interestedNetwork & CA_WIFI)
+    {
+        res = CAAddNetworkType(CA_WIFI);
+        if (res != CA_STATUS_OK)
+        {
+            return res;
+        }
+    }
+
+    if (interestedNetwork & CA_EDR)
+    {
+        res = CAAddNetworkType(CA_EDR);
+        if (res != CA_STATUS_OK)
+        {
+            return res;
+        }
+    }
+
+    if (interestedNetwork & CA_LE)
+    {
+        res = CAAddNetworkType(CA_LE);
+        if (res != CA_STATUS_OK)
+        {
+            return res;
+        }
+    }
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAUnSelectNetwork(const uint32_t nonInterestedNetwork)
+{
+    OIC_LOG_V(DEBUG, TAG, "unselected network : %d", nonInterestedNetwork);
+
+    if (!(nonInterestedNetwork & 0xf))
+    {
+        return CA_NOT_SUPPORTED;
+    }
+
+    CAResult_t res;
+
+    if (nonInterestedNetwork & CA_ETHERNET)
+    {
+        res = CARemoveNetworkType(CA_ETHERNET);
+        if (res != CA_STATUS_OK)
+        {
+            return res;
+        }
+    }
+
+    if (nonInterestedNetwork & CA_WIFI)
+    {
+        res = CARemoveNetworkType(CA_WIFI);
+        if (res != CA_STATUS_OK)
+        {
+            return res;
+        }
+    }
+
+    if (nonInterestedNetwork & CA_EDR)
+    {
+        res = CARemoveNetworkType(CA_EDR);
+        if (res != CA_STATUS_OK)
+        {
+            return res;
+        }
+    }
+
+    if (nonInterestedNetwork & CA_LE)
+    {
+        res = CARemoveNetworkType(CA_LE);
+        if (res != CA_STATUS_OK)
+        {
+            return res;
+        }
+    }
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAHandleRequestResponse()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAHandleRequestResponse");
+
+    CAHandleRequestResponseCallbacks();
+
+    return CA_STATUS_OK;
+}
+
diff --git a/resource/csdk/connectivity/src/cainterfacecontroller.c b/resource/csdk/connectivity/src/cainterfacecontroller.c
new file mode 100644 (file)
index 0000000..981eef9
--- /dev/null
@@ -0,0 +1,312 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdint.h>
+
+#include "cainterfacecontroller.h"
+#include "caedradapter.h"
+#include "caleadapter.h"
+#include "cawifiethernetadapter.h"
+#include "canetworkconfigurator.h"
+#include "logger.h"
+
+#define TAG PCF("CA")
+
+#define CA_CONNECTIVITY_TYPE_NUM   4
+
+static CAConnectivityHandler_t gAdapterHandler[CA_CONNECTIVITY_TYPE_NUM];
+
+static CANetworkPacketReceivedCallback gNetworkPacketReceivedCallback = NULL;
+
+static int8_t CAGetAdapterIndex(CAConnectivityType_t cType)
+{
+    switch (cType)
+    {
+        case CA_ETHERNET:
+            return 0;
+        case CA_WIFI:
+            return 1;
+        case CA_EDR:
+            return 2;
+        case CA_LE:
+            return 3;
+    }
+    return -1;
+}
+
+static void CARegisterCallback(CAConnectivityHandler_t handler, CAConnectivityType_t cType)
+{
+    int8_t index = -1;
+
+    index = CAGetAdapterIndex(cType);
+
+    if (index == -1)
+    {
+        OIC_LOG(DEBUG, TAG, "unknown connectivity type!");
+        return;
+    }
+
+    memcpy(&gAdapterHandler[index], &handler, sizeof(CAConnectivityHandler_t));
+
+    OIC_LOG_V(DEBUG, TAG, "%d type adapter, register complete!", cType);
+}
+
+static void CAReceivedPacketCallback(CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen)
+{
+    OIC_LOG(DEBUG, TAG, "receivedPacketCallback in interface controller");
+
+    // Call the callback.
+    if (gNetworkPacketReceivedCallback != NULL)
+    {
+        gNetworkPacketReceivedCallback(endpoint, data, dataLen);
+    }
+}
+
+static void CANetworkChangedCallback(CALocalConnectivityt_t* info, CANetworkStatus_t status)
+{
+    OIC_LOG(DEBUG, TAG, "Network Changed callback");
+}
+
+void CAInitializeAdapters()
+{
+    OIC_LOG(DEBUG, TAG, "initialize adapters..");
+
+    memset(gAdapterHandler, 0, sizeof(CAConnectivityHandler_t) * CA_CONNECTIVITY_TYPE_NUM);
+
+    // Initialize adapters and register callback.
+#ifdef ETHERNET_ADAPTER
+    CAInitializeEthernet(CARegisterCallback, CAReceivedPacketCallback, CANetworkChangedCallback);
+#endif /* ETHERNET_ADAPTER */
+
+#ifdef WIFI_ADAPTER
+    CAInitializeWifi(CARegisterCallback, CAReceivedPacketCallback, CANetworkChangedCallback);
+#endif /* WIFI_ADAPTER */
+
+#ifdef EDR_ADAPTER
+    CAInitializeEDR(CARegisterCallback, CAReceivedPacketCallback, CANetworkChangedCallback);
+#endif /* EDR_ADAPTER */
+
+#ifdef LE_ADAPTER
+    CAInitializeLE(CARegisterCallback, CAReceivedPacketCallback, CANetworkChangedCallback);
+#endif /* LE_ADAPTER */
+
+}
+
+void CASetPacketReceivedCallback(CANetworkPacketReceivedCallback callback)
+{
+    OIC_LOG(DEBUG, TAG, "Set packet received callback");
+
+    gNetworkPacketReceivedCallback = callback;
+}
+
+void CAStartAdapter(CAConnectivityType_t cType)
+{
+    OIC_LOG_V(DEBUG, TAG, "Start the adapter of CAConnectivityType[%d]", cType);
+
+    int8_t index = -1;
+
+    index = CAGetAdapterIndex(cType);
+
+    if (index == -1)
+    {
+        OIC_LOG(DEBUG, TAG, "unknown connectivity type!");
+        return;
+    }
+
+    if (gAdapterHandler[index].startAdapter != NULL)
+    {
+        gAdapterHandler[index].startAdapter();
+    }
+}
+
+void CAStopAdapter(CAConnectivityType_t cType)
+{
+    OIC_LOG_V(DEBUG, TAG, "Stop the adapter of CAConnectivityType[%d]", cType);
+
+    int8_t index = -1;
+
+    index = CAGetAdapterIndex(cType);
+
+    if (index == -1)
+    {
+        OIC_LOG(DEBUG, TAG, "unknown connectivity type!");
+        return;
+    }
+
+    if (gAdapterHandler[index].stopAdapter != NULL)
+    {
+        gAdapterHandler[index].stopAdapter();
+    }
+}
+
+CAResult_t CASendUnicastData(const CARemoteEndpoint_t* endpoint, void* data, uint32_t length)
+{
+    OIC_LOG(DEBUG, TAG, "Send unicast data to enabled interface..");
+
+    int8_t index = -1;
+    CAResult_t res = CA_STATUS_FAILED;
+
+    if (endpoint == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "Invalid endpoint");
+        return CA_STATUS_INVALID_PARAM;
+    }
+
+    CAConnectivityType_t type = endpoint->connectivityType;
+
+    index = CAGetAdapterIndex(type);
+
+    if (index == -1)
+    {
+        OIC_LOG(DEBUG, TAG, "unknown connectivity type!");
+        return CA_STATUS_INVALID_PARAM;
+    }
+
+    if (gAdapterHandler[index].sendData != NULL)
+    {
+        res = gAdapterHandler[index].sendData(endpoint, data, length);
+    }
+
+    return res;
+}
+
+CAResult_t CASendMulticastData(void* data, uint32_t length)
+{
+    OIC_LOG(DEBUG, TAG, "Send multicast data to enabled interface..");
+
+    uint8_t i, type;
+    int8_t index = -1;
+    CAResult_t res = CA_STATUS_FAILED;
+    u_arraylist_t *list = CAGetSelectedNetworkList();
+
+    if (!list)
+    {
+        OIC_LOG(DEBUG, TAG, "No selected network");
+        return CA_STATUS_FAILED;
+    }
+
+    for (i = 0; i < u_arraylist_length(list); i++)
+    {
+        type = *(int*) u_arraylist_get(list, i);
+
+        index = CAGetAdapterIndex(type);
+
+        if (index == -1)
+        {
+            OIC_LOG(DEBUG, TAG, "unknown connectivity type!");
+            continue;
+        }
+
+        if (gAdapterHandler[index].sendDataToAll != NULL)
+        {
+            res = gAdapterHandler[index].sendDataToAll(data, length);
+        }
+    }
+
+    return res;
+}
+
+CAResult_t CAStartListeningServerAdapters()
+{
+    OIC_LOG(DEBUG, TAG, "Start listening server from adapters..");
+
+    uint8_t i, type;
+    int8_t index = -1;
+    u_arraylist_t *list = CAGetSelectedNetworkList();
+
+    if (!list)
+    {
+        OIC_LOG(DEBUG, TAG, "No selected network");
+        return CA_STATUS_FAILED;
+    }
+
+    for (i = 0; i < u_arraylist_length(list); i++)
+    {
+        type = *(int*) u_arraylist_get(list, i);
+
+        index = CAGetAdapterIndex(type);
+
+        if (index == -1)
+        {
+            OIC_LOG(DEBUG, TAG, "unknown connectivity type!");
+            continue;
+        }
+
+        if (gAdapterHandler[index].startListenServer != NULL)
+        {
+            gAdapterHandler[index].startListenServer();
+        }
+    }
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartDiscoveryServerAdapters()
+{
+    OIC_LOG(DEBUG, TAG, "Start discovery server from adapters..");
+
+    uint8_t i, type;
+    int8_t index = -1;
+    u_arraylist_t *list = CAGetSelectedNetworkList();
+
+    if (!list)
+    {
+        OIC_LOG(DEBUG, TAG, "No selected network");
+        return CA_STATUS_FAILED;
+    }
+
+    for (i = 0; i < u_arraylist_length(list); i++)
+    {
+        type = *(int*) u_arraylist_get(list, i);
+
+        index = CAGetAdapterIndex(type);
+
+        if (index == -1)
+        {
+            OIC_LOG_V(DEBUG, TAG, "unknown connectivity type!");
+            continue;
+        }
+
+        if (gAdapterHandler[index].startDiscoverServer != NULL)
+        {
+            gAdapterHandler[index].startDiscoverServer();
+        }
+    }
+
+    return CA_STATUS_OK;
+}
+
+void CATerminateAdapters()
+{
+    OIC_LOG(DEBUG, TAG, "terminate all adapters..");
+
+    uint8_t index;
+
+    for (index = 0; index < CA_CONNECTIVITY_TYPE_NUM; index++)
+    {
+        if (gAdapterHandler[index].terminate != NULL)
+        {
+            gAdapterHandler[index].terminate();
+        }
+    }
+}
diff --git a/resource/csdk/connectivity/src/camessagehandler.c b/resource/csdk/connectivity/src/camessagehandler.c
new file mode 100644 (file)
index 0000000..9552827
--- /dev/null
@@ -0,0 +1,686 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdint.h>
+
+#include "cainterface.h"
+#include "camessagehandler.h"
+#include "caremotehandler.h"
+#include "cainterfacecontroller.h"
+#include "uqueue.h"
+#include "logger.h"
+#include "config.h" /* for coap protocol */
+#include "coap.h"
+#include "uthreadpool.h" /* for thread pool */
+#include "umutex.h"
+#include "oic_malloc.h"
+
+#define TAG PCF("CA")
+
+#define MEMORY_ALLOCK_CHECK(arg) { if (arg == NULL) {OIC_LOG_V(DEBUG, TAG, "memory error"); goto memory_error_exit;} }
+#define MAX_ACTION_NUM   300
+
+#define MAX_THREAD_POOL_SIZE    10
+
+#ifndef TRUE
+#define TRUE    1
+#endif
+
+#ifndef FALSE
+#define FALSE   0
+#endif
+
+typedef struct
+{
+    int32_t actionId;
+    CARemoteEndpoint_t* remoteEndpoint;
+    CARequestInfo_t* requestInfo;
+    CAResponseInfo_t* responseInfo;
+} CAData_t;
+
+typedef void (*CAThreadTask)(CAData_t* data);
+
+typedef struct
+{
+    u_mutex threadMutex;
+    u_cond threadCond;
+    CAThreadTask threadTask;
+    int32_t isStop;
+    u_queue_t* dataQueue;
+} CAThread_t;
+
+// thread pool handle
+static u_thread_pool_t gThreadPoolHandle = NULL;
+
+// message handler main thread
+static CAThread_t gSendThread;
+
+// message handler callback
+static int32_t gCurrentActionId = 0;
+static CAMessageHandlerCallback gHandlerCallback = NULL;
+
+// handler field
+static CARequestCallback gRequestHandler = NULL;
+static CAResponseCallback gResponseHandler = NULL;
+
+static u_queue_t* gMessageQueue = NULL;
+static u_mutex gMessageQueueMutex = NULL;
+
+static void CAAddReceiveData(CAData_t* data)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAAddReceiveData");
+
+    // create thread data
+    u_queue_message_t* message = (u_queue_message_t*) OICMalloc(sizeof(u_queue_message_t));
+
+    if (message == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "memory error!!");
+        return;
+    }
+    memset(message, 0, sizeof(u_queue_message_t));
+
+    message->msg = data;
+    message->size = sizeof(CAData_t);
+
+    // mutex lock
+    u_mutex_lock(gMessageQueueMutex);
+
+    // add thread data into list
+    u_queue_add_element(gMessageQueue, message);
+
+    // mutex unlock
+    u_mutex_unlock(gMessageQueueMutex);
+}
+
+static void CAAddSendData(CAData_t* data)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAAddSendData!!");
+
+    // create thread data
+    u_queue_message_t* message = (u_queue_message_t*) OICMalloc(sizeof(u_queue_message_t));
+
+    if (message == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "memory error!!");
+        return;
+    }
+    memset(message, 0, sizeof(u_queue_message_t));
+
+    message->msg = data;
+    message->size = sizeof(CAData_t);
+
+    // mutex lock
+    u_mutex_lock(gSendThread.threadMutex);
+
+    // add thread data into list
+    u_queue_add_element(gSendThread.dataQueue, message);
+
+    // notity the thread
+    u_cond_signal(gSendThread.threadCond);
+
+    // mutex unlock
+    u_mutex_unlock(gSendThread.threadMutex);
+}
+
+static void CAStopSendThread()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStopSendThread request!!");
+
+    // mutex lock
+    u_mutex_lock(gSendThread.threadMutex);
+
+    // set stop flag
+    gSendThread.isStop = TRUE;
+
+    // notity the thread
+    u_cond_signal(gSendThread.threadCond);
+
+    // mutex unlock
+    u_mutex_unlock(gSendThread.threadMutex);
+}
+
+static void CASendThreadProcess(CAData_t* data)
+{
+    if (data == NULL)
+    {
+        OIC_LOG(DEBUG, TAG, "thread data error!!");
+        return;
+    }
+
+    if (NULL == data->remoteEndpoint)
+    {
+        OIC_LOG(DEBUG, TAG, "remoteEndpoint is null");
+        return;
+    }
+
+    OIC_LOG_V(DEBUG, TAG, "thread action id : %d", data->actionId);
+
+    CADetachErrorCode code = FAIL;
+    int32_t res = 0;
+
+    if (data->requestInfo != NULL)
+    {
+        OIC_LOG(DEBUG, TAG, "requestInfo is available");
+
+        coap_pdu_t* pdu = NULL;
+        pdu = CAGeneratePdu(data->remoteEndpoint->resourceUri, data->requestInfo->method,
+                data->requestInfo->info);
+
+        // interface controller function call.
+        if (NULL != pdu)
+        {
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - payload : %s", pdu->data);
+
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - code : %d", pdu->hdr->code);
+
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - buffer data : %s", pdu->hdr);
+
+            res = CASendUnicastData(data->remoteEndpoint, pdu->hdr, pdu->length);
+        }
+    }
+    else if (data->responseInfo != NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "responseInfo is available..");
+
+        coap_pdu_t* pdu = NULL;
+
+        pdu = CAGeneratePdu(data->remoteEndpoint->resourceUri, data->responseInfo->result,
+                data->responseInfo->info);
+
+        // interface controller function call.
+        if (NULL != pdu)
+        {
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - payload : %s", pdu->data);
+
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - code : %d", pdu->hdr->code);
+
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - buffer data : %x", pdu->hdr);
+
+            res = CASendUnicastData(data->remoteEndpoint, pdu->hdr, pdu->length);
+        }
+    }
+    else
+    {
+        OIC_LOG(DEBUG, TAG, "both requestInfo & responseInfo is not available");
+
+        coap_pdu_t* pdu = NULL;
+        CAInfo_t info;
+        memset(&info, 0, sizeof(CAInfo_t));
+        pdu = CAGeneratePdu(data->remoteEndpoint->resourceUri, CA_GET, info);
+
+        if (NULL != pdu)
+        {
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - payload : %s", pdu->data);
+
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - type : %d", pdu->hdr->type);
+
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - code : %d", pdu->hdr->code);
+
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - id : %d", pdu->hdr->id);
+
+            OIC_LOG_V(DEBUG, TAG, "PDU Maker - buffer data : %x", pdu->hdr);
+
+            res = CASendMulticastData(pdu->hdr, pdu->length);
+        }
+
+    }
+
+    if (res)
+    {
+        code = SUCCESS;
+    }
+
+    if (gHandlerCallback != NULL)
+    {
+        gHandlerCallback(data->actionId, code);
+    }
+}
+
+static void* CAThreadBaseRoutine(void* treadData)
+{
+    OIC_LOG_V(DEBUG, TAG, "message handler main thread start..");
+
+    CAThread_t* thread = (CAThread_t*) treadData;
+
+    if (thread == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "thread data passing error!!");
+
+        return NULL;
+    }
+
+    while (!thread->isStop)
+    {
+        // mutex lock
+        u_mutex_lock(thread->threadMutex);
+
+        // if queue is empty, thread will wait
+        if (u_queue_get_size(thread->dataQueue) <= 0)
+        {
+            OIC_LOG_V(DEBUG, TAG, "wait..");
+            // wait
+            u_cond_wait(thread->threadCond, thread->threadMutex);
+
+            OIC_LOG_V(DEBUG, TAG, "wake up..");
+        }
+
+        // mutex unlock
+        u_mutex_unlock(thread->threadMutex);
+
+        // check stop flag
+        if (thread->isStop)
+            continue;
+
+        // get data
+        u_queue_message_t* message = u_queue_get_element(thread->dataQueue);
+
+        CAData_t* data = (CAData_t*) message->msg;
+
+        // process data
+        thread->threadTask(data);
+    }
+
+    OIC_LOG_V(DEBUG, TAG, "message handler main thread end..");
+
+    return NULL;
+}
+
+static int32_t CAIncreaseActionId()
+{
+    ++gCurrentActionId;
+
+    gCurrentActionId = (gCurrentActionId > MAX_ACTION_NUM) ? 0 : gCurrentActionId;
+
+    return gCurrentActionId;
+}
+
+static void CAReceivedPacketCallback(CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen)
+{
+    OIC_LOG(DEBUG, TAG, "receivedPacketCallback in message handler!!");
+
+    if (NULL == data)
+    {
+        OIC_LOG(DEBUG, TAG, "received data is null");
+        return;
+    }
+
+    coap_pdu_t* pdu;
+    uint32_t code = CA_NOT_FOUND;
+    pdu = CAParsePDU(data, &code);
+
+    if (code == CA_GET || code == CA_POST || code == CA_PUT || code == CA_DELETE)
+    {
+        CARequestInfo_t ReqInfo;
+        memset(&ReqInfo, 0, sizeof(CARequestInfo_t));
+        CAGetRequestInfoFromPdu(pdu, &ReqInfo);
+
+        if (NULL != ReqInfo.info.options && NULL != endpoint)
+        {
+            OIC_LOG_V(DEBUG, TAG, "Request PDU - optionID: %d", ReqInfo.info.options->optionID);
+
+            OIC_LOG_V(DEBUG, TAG, "Request PDU - optionlist: %s", ReqInfo.info.options->optionData);
+
+            OIC_LOG_V(DEBUG, TAG, "Request PDU  - payload: %s", ReqInfo.info.payload);
+
+            OIC_LOG_V(DEBUG, TAG, "Request PDU  - code: %d", ReqInfo.method);
+
+            endpoint->resourceUri = (char*) OICMalloc(strlen(ReqInfo.info.options->optionData) + 1);
+            memcpy(endpoint->resourceUri, ReqInfo.info.options->optionData,
+                    strlen(ReqInfo.info.options->optionData));
+            OIC_LOG_V(DEBUG, TAG, "added resource URI : %s", endpoint->resourceUri);
+        }
+
+        // store the data at queue.
+        CAData_t* cadata = NULL;
+        cadata = (CAData_t*) OICMalloc(sizeof(CAData_t));
+        memset(cadata, 0, sizeof(CAData_t));
+        cadata->actionId = 1;
+        cadata->remoteEndpoint = endpoint;
+        cadata->requestInfo = &ReqInfo;
+        cadata->responseInfo = NULL;
+        CAAddReceiveData(cadata);
+
+    }
+    else
+    {
+        CAResponseInfo_t ResInfo;
+        memset(&ResInfo, 0, sizeof(CARequestInfo_t));
+        CAGetResponseInfoFromPdu(pdu, &ResInfo);
+
+        if (NULL != ResInfo.info.options && NULL != endpoint)
+        {
+            OIC_LOG_V(DEBUG, TAG, "Response PDU - optionID: %d", ResInfo.info.options->optionID);
+
+            OIC_LOG_V(DEBUG, TAG, "Response PDU - optionlist: %s", ResInfo.info.options->optionData);
+
+            OIC_LOG_V(DEBUG, TAG, "Response PDU - payload: %s", ResInfo.info.payload);
+
+            OIC_LOG_V(DEBUG, TAG, "Response PDU - code: %d", ResInfo.result);
+
+            endpoint->resourceUri = (char*) OICMalloc(strlen(ResInfo.info.options->optionData) + 1);
+            memcpy(endpoint->resourceUri, ResInfo.info.options->optionData,
+                    strlen(ResInfo.info.options->optionData));
+            OIC_LOG_V(DEBUG, TAG, "added resource URI : %s", endpoint->resourceUri);
+        }
+
+        // store the data at queue.
+        CAData_t* cadata = NULL;
+        cadata = (CAData_t*) OICMalloc(sizeof(CAData_t));
+        memset(cadata, 0, sizeof(CAData_t));
+        cadata->actionId = 1;
+        cadata->remoteEndpoint = endpoint;
+        cadata->requestInfo = NULL;
+        cadata->responseInfo = &ResInfo;
+        CAAddReceiveData(cadata);
+    }
+}
+
+void CAHandleRequestResponseCallbacks()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAHandleRequestResponseCallbacks");
+
+    // parse the data and call the callbacks.
+    // #1 parse the data
+    // #2 get endpoint
+
+    u_mutex_lock(gMessageQueueMutex);
+
+    u_queue_message_t* item = u_queue_get_element(gMessageQueue);
+
+    u_mutex_unlock(gMessageQueueMutex);
+
+    if (item == NULL)
+        return;
+
+    // get values
+    void* msg = item->msg;
+
+    if (msg == NULL)
+        return;
+
+    // get endpoint
+    CAData_t* td = (CAData_t*) msg;
+
+    CARemoteEndpoint_t* rep = td->remoteEndpoint;
+
+    if (rep == NULL)
+        return;
+
+    if (td->requestInfo != NULL)
+    {
+        if (gRequestHandler)
+        {
+            gRequestHandler(rep, NULL);
+        }
+    }
+
+    if (td->responseInfo != NULL)
+    {
+        if (gResponseHandler)
+        {
+            gResponseHandler(rep, NULL);
+        }
+    }
+
+    u_queue_remove_element(gMessageQueue);
+}
+
+int32_t CADetachRequestMessage(const CARemoteEndpoint_t* object, const CARequestInfo_t* request)
+{
+    OIC_LOG_V(DEBUG, TAG, "CADetachRequestMessage");
+
+    if (object == NULL || request == NULL)
+    {
+        return -1;
+    }
+
+    int32_t id = 0;
+
+    // create action id
+    id = CAIncreaseActionId();
+
+    CAData_t* data = (CAData_t*) OICMalloc(sizeof(CAData_t));
+    MEMORY_ALLOCK_CHECK(data);
+
+    // initialize
+    memset(data, 0, sizeof(CAData_t));
+
+    // clone remote endpoint
+    CARemoteEndpoint_t* remoteEndpoint = CACloneRemoteEndpoint(object);
+    MEMORY_ALLOCK_CHECK(remoteEndpoint);
+
+    // clone request info
+    CARequestInfo_t* requestInfo = CACloneRequestInfo(request);
+    MEMORY_ALLOCK_CHECK(requestInfo);
+
+    // save data
+    data->actionId = id;
+    data->remoteEndpoint = remoteEndpoint;
+    data->requestInfo = requestInfo;
+    data->responseInfo = NULL;
+
+    // add thread
+    CAAddSendData(data);
+
+    return id;
+
+    // memory error label.
+    memory_error_exit:
+
+    CADestroyRemoteEndpointInternal(remoteEndpoint);
+
+    CADestroyRequestInfoInternal(requestInfo);
+
+    if (data != NULL)
+    {
+        OICFree(data);
+    }
+
+    return -1;
+}
+
+int32_t CADetachResponseMessage(const CARemoteEndpoint_t* object, const CAResponseInfo_t* response)
+{
+    OIC_LOG_V(DEBUG, TAG, "CADetachResponseMessage");
+
+    if (object == NULL || response == NULL)
+    {
+        return -1;
+    }
+
+    int32_t id = 0;
+
+    // create action id
+    id = CAIncreaseActionId();
+
+    CAData_t* data = (CAData_t*) OICMalloc(sizeof(CAData_t));
+    MEMORY_ALLOCK_CHECK(data);
+
+    // initialize
+    memset(data, 0, sizeof(CAData_t));
+
+    // clone remote endpoint
+    CARemoteEndpoint_t* remoteEndpoint = CACloneRemoteEndpoint(object);
+    MEMORY_ALLOCK_CHECK(remoteEndpoint);
+
+    // clone response info
+    CAResponseInfo_t* responseInfo = CACloneResponseInfo(response);
+    MEMORY_ALLOCK_CHECK(responseInfo);
+
+    // save data
+    data->actionId = id;
+    data->remoteEndpoint = remoteEndpoint;
+    data->requestInfo = NULL;
+    data->responseInfo = responseInfo;
+
+    // add thread
+    CAAddSendData(data);
+
+    return id;
+
+    // memory error label.
+    memory_error_exit:
+
+    CADestroyRemoteEndpointInternal(remoteEndpoint);
+
+    CADestroyResponseInfoInternal(responseInfo);
+
+    if (data != NULL)
+    {
+        OICFree(data);
+    }
+
+    return -1;
+}
+
+int32_t CADetachMessageResourceUri(const CAURI_t resourceUri)
+{
+    if (resourceUri == NULL)
+    {
+        return -1;
+    }
+
+    int32_t id = 0;
+
+    // create action id
+    id = CAIncreaseActionId();
+
+    CAData_t* data = (CAData_t*) OICMalloc(sizeof(CAData_t));
+    MEMORY_ALLOCK_CHECK(data);
+
+    // initialize
+    memset(data, 0, sizeof(CAData_t));
+
+    CAAddress_t addr;
+    memset(&addr, 0, sizeof(CAAddress_t));
+    CARemoteEndpoint_t* remoteEndpoint = CACreateRemoteEndpointInternal(resourceUri, addr,
+            CA_ETHERNET | CA_WIFI | CA_EDR | CA_LE);
+
+    // save data
+    data->actionId = id;
+    data->remoteEndpoint = remoteEndpoint;
+    data->requestInfo = NULL;
+    data->responseInfo = NULL;
+
+    // add thread
+    CAAddSendData(data);
+
+    return id;
+
+    // memory error label.
+    memory_error_exit:
+
+    CADestroyRemoteEndpointInternal(remoteEndpoint);
+
+    if (data != NULL)
+    {
+        OICFree(data);
+    }
+
+    return -1;
+}
+
+void CASetMessageHandlerCallback(CAMessageHandlerCallback callback)
+{
+    OIC_LOG_V(DEBUG, TAG, "set message handler callback.");
+
+    gHandlerCallback = callback;
+}
+
+void CASetRequestResponseCallbacks(CARequestCallback ReqHandler, CAResponseCallback RespHandler)
+{
+    OIC_LOG_V(DEBUG, TAG, "set request, response handler callback.");
+
+    gRequestHandler = ReqHandler;
+    gResponseHandler = RespHandler;
+}
+
+CAResult_t CAInitializeMessageHandler()
+{
+    CASetPacketReceivedCallback(CAReceivedPacketCallback);
+
+    // create thread pool
+    CAResult_t res;
+    res = u_thread_pool_init(MAX_THREAD_POOL_SIZE, &gThreadPoolHandle);
+
+    if (res != CA_STATUS_OK)
+    {
+        OIC_LOG_V(DEBUG, TAG, "thread pool initialize error.");
+        return res;
+    }
+
+    // send thread initialize
+    memset(&gSendThread, 0, sizeof(CAThread_t));
+
+    // mutex init
+    u_mutex_init();
+
+    // set send thread data
+    gSendThread.dataQueue = u_queue_create();
+    gSendThread.threadMutex = u_mutex_new();
+    gSendThread.threadCond = u_cond_new();
+    gSendThread.isStop = FALSE;
+    gSendThread.threadTask = CASendThreadProcess;
+
+    // start send thread
+    res = u_thread_pool_add_task(gThreadPoolHandle, CAThreadBaseRoutine, &gSendThread);
+
+    if (res != CA_STATUS_OK)
+    {
+        OIC_LOG_V(DEBUG, TAG, "thread pool add task error.");
+        return res;
+    }
+
+    // set receive queue
+    gMessageQueue = u_queue_create();
+    gMessageQueueMutex = u_mutex_new();
+
+    // initialize interface adapters by controller
+    CAInitializeAdapters();
+
+    return CA_STATUS_OK;
+}
+
+void CATerminateMessageHandler()
+{
+    // terminate interface adapters by controller
+    CATerminateAdapters();
+
+    // stop thread
+    CAStopSendThread();
+
+    // delete thread data
+    u_mutex_free(gSendThread.threadMutex);
+    u_cond_free(gSendThread.threadCond);
+    u_queue_delete(gSendThread.dataQueue);
+
+    // destroy thread pool
+    u_thread_pool_free(gThreadPoolHandle);
+
+    OIC_LOG_V(DEBUG, TAG, "message handler terminate completed!");
+
+    u_queue_delete(gMessageQueue);
+    u_mutex_free(gMessageQueueMutex);
+}
+
diff --git a/resource/csdk/connectivity/src/canetworkconfigurator.c b/resource/csdk/connectivity/src/canetworkconfigurator.c
new file mode 100644 (file)
index 0000000..0efe118
--- /dev/null
@@ -0,0 +1,173 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdlib.h>
+
+#include "canetworkconfigurator.h"
+#include "uarraylist.h"
+#include "logger.h"
+#include "cainterfacecontroller.h"
+
+#define TAG PCF("CA")
+
+static u_arraylist_t *gSelectedNetworkList = NULL;
+
+CAResult_t CAAddNetworkType(uint32_t ConnectivityType)
+{
+    if (gSelectedNetworkList == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "Create network list");
+
+        gSelectedNetworkList = u_arraylist_create();
+    }
+
+    switch (ConnectivityType)
+    {
+        case CA_ETHERNET:
+
+#ifndef ETHERNET_ADAPTER
+            OIC_LOG_V(DEBUG, TAG, "Add network type(ETHERNET) - Not Supported");
+            return CA_NOT_SUPPORTED;
+#endif /* ETHERNET_ADAPTER */
+
+            OIC_LOG_V(DEBUG, TAG, "Add network type(ETHERNET)");
+            u_arraylist_add(gSelectedNetworkList, &NETWORK_ETHERNET);
+
+            break;
+
+        case CA_WIFI:
+
+#ifndef WIFI_ADAPTER
+            OIC_LOG_V(DEBUG, TAG, "Add network type(WIFI) - Not Supported");
+            return CA_NOT_SUPPORTED;
+#endif /* WIFI_ADAPTER */
+
+            OIC_LOG_V(DEBUG, TAG, "Add network type(WIFI)");
+            u_arraylist_add(gSelectedNetworkList, &NETWORK_WIFI);
+
+            break;
+
+        case CA_EDR:
+
+#ifndef EDR_ADAPTER
+            OIC_LOG_V(DEBUG, TAG, "Add network type(EDR) - Not Supported");
+            return CA_NOT_SUPPORTED;
+#endif /* EDR_ADAPTER */
+
+            OIC_LOG_V(DEBUG, TAG, "Add network type(EDR)");
+            u_arraylist_add(gSelectedNetworkList, &NETWORK_EDR);
+            break;
+
+        case CA_LE:
+
+#ifdef LE_ADAPTER
+            OIC_LOG_V(DEBUG, TAG, "Add network type(LE) - Not Supported");
+            return CA_NOT_SUPPORTED;
+#endif /* LE_ADAPTER */
+
+            OIC_LOG_V(DEBUG, TAG, "Add network type(LE)");
+            u_arraylist_add(gSelectedNetworkList, &NETWORK_LE);
+            break;
+
+    }
+
+    // start selected interface adapter
+    CAStartAdapter(ConnectivityType);
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CARemoveNetworkType(uint32_t ConnectivityType)
+{
+    if (gSelectedNetworkList == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "Selected network not found");
+
+        return CA_STATUS_FAILED;
+    }
+
+    switch (ConnectivityType)
+    {
+        case CA_ETHERNET:
+
+#ifndef ETHERNET_ADAPTER
+            OIC_LOG_V(DEBUG, TAG, "Remove network type(ETHERNET) - Not Supported");
+            return CA_NOT_SUPPORTED;
+#else
+
+            OIC_LOG_V(DEBUG, TAG, "Remove network type(ETHERNET)");
+            u_arraylist_remove(gSelectedNetworkList, &NETWORK_ETHERNET);
+#endif /* ETHERNET_ADAPTER */
+            break;
+
+        case CA_WIFI:
+
+#ifndef WIFI_ADAPTER
+            OIC_LOG_V(DEBUG, TAG, "Remove network type(WIFI) - Not Supported");
+            return CA_NOT_SUPPORTED;
+#else
+            OIC_LOG_V(DEBUG, TAG, "Remove network type(WIFI)");
+            u_arraylist_remove(gSelectedNetworkList, &NETWORK_WIFI);
+#endif /* WIFI_ADAPTER */
+
+            break;
+
+        case CA_EDR:
+
+#ifndef EDR_ADAPTER
+            OIC_LOG_V(DEBUG, TAG, "Remove network type(EDR) - Not Supported");
+            return CA_NOT_SUPPORTED;
+#else
+            OIC_LOG_V(DEBUG, TAG, "Remove network type(EDR)");
+            u_arraylist_remove(gSelectedNetworkList, &NETWORK_EDR);
+#endif /* EDR_ADAPTER */
+
+            break;
+
+        case CA_LE:
+
+#ifdef LE_ADAPTER
+            OIC_LOG_V(DEBUG, TAG, "Remove network type(LE) - Not Supported");
+            return CA_NOT_SUPPORTED;
+#else
+            OIC_LOG_V(DEBUG, TAG, "Remove network type(LE)");
+            u_arraylist_remove(gSelectedNetworkList, &NETWORK_LE);
+#endif /* LE_ADAPTER */
+
+            break;
+    }
+
+    // stop selected interface adapter
+    CAStopAdapter(ConnectivityType);
+
+    return CA_STATUS_OK;
+}
+
+u_arraylist_t* CAGetSelectedNetworkList()
+{
+    if (gSelectedNetworkList == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "Selected network not found");
+
+        return NULL;
+    }
+
+    return gSelectedNetworkList;
+}
diff --git a/resource/csdk/connectivity/src/caprotocolmessage.c b/resource/csdk/connectivity/src/caprotocolmessage.c
new file mode 100644 (file)
index 0000000..fb5a3d5
--- /dev/null
@@ -0,0 +1,403 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "caprotocolmessage.h"
+#include "logger.h"
+#include "oic_malloc.h"
+
+#define TAG PCF("CA")
+
+#define CA_MAX_TOKEN_LEN   8
+#define CA_FLAGS_BLOCK 0x01
+#define CA_URI_MAX_SIZE 256
+#define CA_BUFSIZE 40
+
+uint32_t CAGetRequestInfoFromPdu(const coap_pdu_t *pdu, CARequestInfo_t* outReqInfo)
+{
+    OIC_LOG(DEBUG, TAG, "get request info from PDU");
+    if (NULL == pdu)
+        return 0;
+
+    uint32_t code = CA_NOT_FOUND;
+    CAGetRequestPDUInfo(pdu, &code, &(outReqInfo->info));
+    outReqInfo->method = code;
+    return 1;
+}
+
+uint32_t CAGetResponseInfoFromPdu(const coap_pdu_t *pdu, CAResponseInfo_t* outResInfo)
+{
+    OIC_LOG(DEBUG, TAG, "get response info from PDU");
+    if (NULL == pdu)
+        return 0;
+
+    uint32_t code = CA_NOT_FOUND;
+    CAGetRequestPDUInfo(pdu, &code, &(outResInfo->info));
+    outResInfo->result = code;
+
+    return 1;
+}
+
+coap_pdu_t* CAGeneratePdu(const char* uri, const uint32_t code, const CAInfo_t info)
+{
+    OIC_LOG(DEBUG, TAG, "generate PDU");
+
+    coap_pdu_t *pdu;
+    char* coapUri = NULL;
+    uint32_t coapHeaderLength = 12;
+    uint32_t length;
+    coap_list_t *optlist = NULL;
+
+    if (NULL == uri)
+        return NULL;
+
+    length = strlen(uri);
+    coapUri = (char*) OICMalloc(length + coapHeaderLength + 1);
+    memset(coapUri, 0, length + coapHeaderLength + 1);
+
+    if (NULL != coapUri)
+    {
+
+        memcpy(coapUri, "coap://[::]/", coapHeaderLength);
+        memcpy(coapUri + coapHeaderLength, uri, length);
+
+        // parsing options in URI
+        CAParseURI(coapUri, &optlist);
+
+        // parsing options in HeadOption
+        if (NULL != &info)
+        {
+            CAParseHeadOption(code, info, &optlist);
+        }
+
+        OICFree(coapUri);
+    }
+
+    if (NULL != info.payload)
+    {
+        if (!(pdu = CACreatePDUforRequestWithPayload((code_t) code, optlist, info.payload)))
+            return NULL;
+    }
+    else
+    {
+        if (!(pdu = CACreatePDUforRequest((code_t) code, optlist)))
+            return NULL;
+    }
+
+    // pdu print method : coap_show_pdu(pdu);
+
+    return pdu;
+}
+
+coap_pdu_t* CAParsePDU(const char* data, uint32_t* outCode)
+{
+    coap_pdu_t* outpdu = coap_new_pdu();
+    coap_pdu_parse((unsigned char *) data, strlen(data), outpdu);
+    (*outCode) = (uint32_t) outpdu->hdr->code;
+
+    return outpdu;
+}
+
+coap_pdu_t* CACreatePDUforRequestWithPayload(const code_t code, coap_list_t *options,
+        const char* payload)
+{
+    OIC_LOG(DEBUG, TAG, "CACreatePDUforRequestWithPayload");
+
+    coap_pdu_t *pdu;
+    coap_list_t *opt;
+    unsigned char _token_data[8];
+    str the_token =
+    { 0, _token_data };
+
+    if (!(pdu = coap_new_pdu()))
+        return NULL;
+
+    /* initialize message id */
+    unsigned short message_id;
+    prng((unsigned char *)&message_id, sizeof(unsigned short));
+
+    pdu->hdr->type = msgtype;
+    pdu->hdr->id = htons(++message_id);
+    pdu->hdr->code = code;
+
+    pdu->hdr->token_length = the_token.length;
+    if (!coap_add_token(pdu, the_token.length, the_token.s))
+    {
+        OIC_LOG(DEBUG, TAG,"cannot add token to request");
+    }
+
+    for (opt = options; opt; opt = opt->next)
+    {
+        coap_add_option(pdu, COAP_OPTION_KEY(*(coap_option *)opt->data),
+                COAP_OPTION_LENGTH(*(coap_option *)opt->data),
+                COAP_OPTION_DATA(*(coap_option *)opt->data));
+    }
+
+    if (NULL != payload)
+    {
+        uint32_t len = strlen(payload);
+        if ((flags & CA_FLAGS_BLOCK) == 0)
+        {
+            OIC_LOG_V(DEBUG, TAG, "coap_add_data, payload: %s", payload);
+            coap_add_data(pdu, len, payload);
+        }
+        else
+        {
+            OIC_LOG_V(DEBUG, TAG, "coap_add_block, payload: %s", payload);
+            coap_add_block(pdu, len, payload, block.num, block.szx);
+        }
+    }
+    return pdu;
+}
+
+coap_pdu_t* CACreatePDUforRequest(const code_t code, coap_list_t *options)
+{
+    OIC_LOG(DEBUG, TAG, "CACreatePDUforRequest");
+
+    coap_pdu_t *pdu;
+    coap_list_t *opt;
+    unsigned char _token_data[8];
+    str the_token =
+    { 0, _token_data };
+
+    if (!(pdu = coap_new_pdu()))
+        return NULL;
+
+    /* initialize message id */
+    unsigned short message_id;
+    prng((unsigned char *)&message_id, sizeof(unsigned short));
+
+    pdu->hdr->type = msgtype;
+    pdu->hdr->id = htons(++message_id);
+    pdu->hdr->code = code;
+
+    pdu->hdr->token_length = the_token.length;
+    if (!coap_add_token(pdu, the_token.length, the_token.s))
+    {
+        OIC_LOG(DEBUG, TAG, "cannot add token to request");
+    }
+
+    for (opt = options; opt; opt = opt->next)
+    {
+        coap_add_option(pdu, COAP_OPTION_KEY(*(coap_option *)opt->data),
+                COAP_OPTION_LENGTH(*(coap_option *)opt->data),
+                COAP_OPTION_DATA(*(coap_option *)opt->data));
+    }
+
+    return pdu;
+}
+
+void CAParseURI(const char* uriInfo, coap_list_t **optlist)
+{
+    OIC_LOG(DEBUG, TAG, "parse URI");
+
+    unsigned char portbuf[2];
+    unsigned char _buf[CA_BUFSIZE];
+    unsigned char *buf = _buf;
+    coap_uri_t uri;
+    size_t buflen;
+    uint32_t res;
+
+    OIC_LOG_V(DEBUG, TAG, "url : %s", uriInfo);
+
+    /* split arg into Uri-* options */
+    coap_split_uri((unsigned char *) uriInfo, strlen(uriInfo), &uri);
+
+    if (uri.port != COAP_DEFAULT_PORT)
+    {
+        coap_insert(optlist,
+                CACreateNewOptionNode(COAP_OPTION_URI_PORT,
+                        coap_encode_var_bytes(portbuf, uri.port), portbuf), CAOrderOpts);
+    }
+
+    if (uri.path.length)
+    {
+        buflen = CA_BUFSIZE;
+        res = coap_split_path(uri.path.s, uri.path.length, buf, &buflen);
+
+        while (res--)
+        {
+            coap_insert(optlist,
+                    CACreateNewOptionNode(COAP_OPTION_URI_PATH, COAP_OPT_LENGTH(buf),
+                            COAP_OPT_VALUE(buf)), CAOrderOpts);
+            buf += COAP_OPT_SIZE(buf);
+        }
+    }
+
+    if (uri.query.length)
+    {
+        buflen = CA_BUFSIZE;
+        buf = _buf;
+        res = coap_split_query(uri.query.s, uri.query.length, buf, &buflen);
+
+        while (res--)
+        {
+            coap_insert(optlist,
+                    CACreateNewOptionNode(COAP_OPTION_URI_QUERY, COAP_OPT_LENGTH(buf),
+                            COAP_OPT_VALUE(buf)), CAOrderOpts);
+
+            buf += COAP_OPT_SIZE(buf);
+        }
+    }
+
+}
+
+void CAParseHeadOption(const uint32_t code, const CAInfo_t info, coap_list_t **optlist)
+{
+    OIC_LOG_V(DEBUG, TAG, "start parse Head Option : %d", info.numOptions);
+
+    uint32_t i;
+    for (i = 0; i < info.numOptions; i++)
+    {
+        coap_insert(optlist,
+                CACreateNewOptionNode(info.options->optionID, info.options->optionLength,
+                        info.options->optionData), CAOrderOpts);
+    }
+}
+
+coap_list_t* CACreateNewOptionNode(const uint16_t key, const uint32_t length, const uint8_t *data)
+{
+    coap_option *option;
+    coap_list_t *node;
+
+    option = coap_malloc(sizeof(coap_option) + length);
+    if (!option)
+        goto error;
+
+    COAP_OPTION_KEY(*option) = key;
+    COAP_OPTION_LENGTH(*option) = length;
+    memcpy(COAP_OPTION_DATA(*option), data, length);
+
+    /* we can pass NULL here as delete function since option is released automatically  */
+    node = coap_new_listnode(option, NULL);
+
+    if (node)
+        return node;
+
+    error: perror("new_option_node: malloc");
+    coap_free( option);
+    return NULL;
+}
+
+int32_t CAOrderOpts(void *a, void *b)
+{
+    if (!a || !b)
+        return a < b ? -1 : 1;
+
+    if (COAP_OPTION_KEY(*(coap_option *)a) < COAP_OPTION_KEY(*(coap_option *)b))
+        return -1;
+
+    return COAP_OPTION_KEY(*(coap_option *)a) == COAP_OPTION_KEY(*(coap_option *)b);
+}
+
+void CAGetRequestPDUInfo(const coap_pdu_t *pdu, uint32_t* outCode, CAInfo_t* outInfo)
+{
+    unsigned char buf[COAP_MAX_PDU_SIZE]; /* need some space for output creation */
+    uint32_t encode = 0;
+    coap_opt_iterator_t opt_iter;
+    coap_opt_t *option;
+    char optionResult[CA_URI_MAX_SIZE] =
+    { 0, };
+    uint32_t count = 0;
+    uint32_t isfirstsetflag = 0;
+
+    /* show options, if any */
+    coap_option_iterator_init((coap_pdu_t *) pdu, &opt_iter, COAP_OPT_ALL);
+
+    memset(optionResult, 0, sizeof(optionResult));
+    while ((option = coap_option_next(&opt_iter)))
+    {
+
+        if (print_readable(COAP_OPT_VALUE(option), COAP_OPT_LENGTH(option), buf, sizeof(buf),
+                encode))
+        {
+            if (opt_iter.type == COAP_OPTION_URI_PATH || opt_iter.type == COAP_OPTION_URI_QUERY)
+            {
+                if (0 == isfirstsetflag)
+                {
+                    isfirstsetflag = 1;
+                    memcpy(optionResult + count, buf, strlen(buf));
+                    count += strlen(buf);
+
+                }
+                else
+                {
+                    if (opt_iter.type == COAP_OPTION_URI_PATH)
+                    {
+                        memcpy(optionResult + count, "/", 1);
+                        count++;
+                    }
+                    else if (opt_iter.type == COAP_OPTION_URI_QUERY)
+                    {
+                        memcpy(optionResult + count, "?", 1);
+                        count++;
+                    }
+                    memcpy(optionResult + count, buf, strlen(buf));
+                    count += strlen(buf);
+                }
+            }
+        }
+    }
+
+    OIC_LOG(DEBUG, TAG, "set CAInfo_t after parsing");
+
+    // set pdu info
+    (*outCode) = (uint32_t) pdu->hdr->code;
+    memset(outInfo, 0, sizeof(CAInfo_t));
+
+    outInfo->options = (CAHeaderOption_t*) OICMalloc(sizeof(CAHeaderOption_t));
+    memset(outInfo->options, 0, sizeof(CAHeaderOption_t));
+
+    outInfo->options->optionID = opt_iter.type;
+    outInfo->options->optionLength = count;
+    memcpy(outInfo->options->optionData, optionResult, CA_MAX_HEADER_OPTION_DATA_LENGTH);
+
+    if (pdu->hdr->token_length > 0)
+    {
+        outInfo->token = (char*) OICMalloc(pdu->hdr->token_length);
+        memcpy(outInfo->token, pdu->hdr->token, pdu->hdr->token_length);
+    }
+
+    if (NULL != pdu->data)
+    {
+        outInfo->payload = (char*) OICMalloc(strlen(pdu->data) + 1);
+        memcpy(outInfo->payload, pdu->data, strlen(pdu->data) + 1);
+    }
+}
+
+CAResult_t CAGenerateTokenInternal(CAToken_t* token)
+{
+    OIC_LOG(DEBUG, TAG, "generate the token");
+
+    return CA_STATUS_OK;
+}
+
+void CADestroyTokenInternal(CAToken_t token)
+{
+    OIC_LOG(DEBUG, TAG, "destroy the token!!");
+
+    if (token != NULL)
+    {
+        OICFree(token);
+    }
+}
diff --git a/resource/csdk/connectivity/src/caremotehandler.c b/resource/csdk/connectivity/src/caremotehandler.c
new file mode 100644 (file)
index 0000000..f193168
--- /dev/null
@@ -0,0 +1,477 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include "oic_malloc.h"
+#include "caremotehandler.h"
+#include "logger.h"
+
+#define TAG PCF("CA")
+
+CARemoteEndpoint_t* CACloneRemoteEndpoint(const CARemoteEndpoint_t* rep)
+{
+    char* temp = NULL;
+    int len = 0;
+
+    if (rep == NULL)
+        return NULL;
+
+    // allocate the remote end point structure.
+    CARemoteEndpoint_t* clone = (CARemoteEndpoint_t*) OICMalloc(sizeof(CARemoteEndpoint_t));
+    if (clone == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "memory alloc error!!");
+        return NULL;
+    }
+    memset(clone, 0, sizeof(CARemoteEndpoint_t));
+    memcpy(clone, rep, sizeof(CARemoteEndpoint_t));
+
+    if (rep->resourceUri != NULL)
+    {
+        // allocate reference uri field
+        len = strlen(rep->resourceUri);
+
+        temp = (char*) OICMalloc(sizeof(char) * (len + 1));
+        if (temp == NULL)
+        {
+            OIC_LOG_V(DEBUG, TAG, "memory alloc error!!");
+
+            CADestroyRemoteEndpointInternal(clone);
+
+            return NULL;
+        }
+        memset(temp, 0, sizeof(char) * (len + 1));
+        strncpy(temp, rep->resourceUri, len);
+
+        // save the uri
+        clone->resourceUri = temp;
+    }
+
+    return clone;
+}
+
+#define COAP_PREFIX         "coap://"
+#define COAP_PREFIX_LEN     7
+
+// return 1 : ip
+// return 0 : mac
+static int32_t getCAAddress(const char* pAddress, CAAddress_t* outAddress)
+{
+    if (pAddress == NULL || outAddress == NULL)
+        return -1;
+
+    // simple parse, it will be change.
+    // 10.11.12.13:4545 (ip)
+    // 10:11:12:13:45:45 (mac)
+
+    int32_t len = strlen(pAddress);
+
+    int32_t isIp = 0;
+    int32_t ipLen = 0;
+    int32_t port = 0;
+
+    int i = 0;
+    for (i = 0; i < len; i++)
+    {
+        if (pAddress[i] == '.')
+        {
+            isIp = 1;
+        }
+
+        // found port number start index
+        if (isIp && pAddress[i] == ':')
+        {
+            ipLen = i;
+            break;
+        }
+    }
+
+    if (isIp)
+    {
+        strncpy(outAddress->IP.ipAddress, pAddress, ipLen == 0 ? len : ipLen);
+
+        if (ipLen > 0)
+            outAddress->IP.port = atoi(pAddress + ipLen + 1);
+
+        OIC_LOG_V(DEBUG, TAG, "ip: %s,port: %d", outAddress->IP.ipAddress, outAddress->IP.port);
+    }
+    else
+    {
+        strncpy(outAddress->BT.btMacAddress, pAddress, CA_MACADDR_SIZE - 1);
+
+        OIC_LOG_V(DEBUG, TAG, "mac address : %s", outAddress->BT.btMacAddress);
+    }
+
+    return isIp;
+}
+
+CARemoteEndpoint_t* CACreateRemoteEndpointUriInternal(const CAURI_t uri)
+{
+    // support URI type
+    // coap://10.11.12.13:4545/resource_uri
+    // coap://10:11:12:13:45:45/resource_uri
+
+    if (uri == NULL)
+        return NULL;
+
+    // parse uri
+    // #1. check prefix
+    int startIndex = 0;
+
+    if (strncmp(COAP_PREFIX, uri, COAP_PREFIX_LEN) == 0)
+    {
+        OIC_LOG_V(DEBUG, TAG, "uri has '%s' prefix.", COAP_PREFIX);
+        startIndex = COAP_PREFIX_LEN;
+    }
+
+    // #2. copy uri for parse
+    char* cloneUri = NULL;
+    int32_t len = strlen(uri) - startIndex;
+
+    if (len <= 0)
+    {
+        OIC_LOG_V(DEBUG, TAG, "uri length is 0!");
+        return NULL;
+    }
+
+    cloneUri = (char*) OICMalloc(sizeof(char) * (len + 1));
+    if (cloneUri == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "memory error!!");
+        return NULL;
+    }
+    memset(cloneUri, 0, sizeof(char) * (len + 1));
+    memcpy(cloneUri, &uri[startIndex], sizeof(char) * (len + 1));
+
+    // #3. parse address
+    // #4. parse resource uri
+    char* pAddress = cloneUri;
+    char* pResourceUri = NULL;
+
+    int32_t i = 0;
+    for (i = 0; i < len; i++)
+    {
+        if (cloneUri[i] == '/')
+        {
+            // separate
+            cloneUri[i] = 0;
+
+            pResourceUri = &cloneUri[i + 1];
+
+            break;
+        }
+
+    }
+
+    OIC_LOG_V(DEBUG, TAG, "pAddress : %s", pAddress);
+
+    OIC_LOG_V(DEBUG, TAG, "pResourceUri : %s", pResourceUri == NULL ? "" : pResourceUri);
+
+    // address
+    CAAddress_t address;
+    memset(&address, 0, sizeof(CAAddress_t));
+
+    int resType = getCAAddress(pAddress, &address);
+    if (resType == -1)
+    {
+        OIC_LOG_V(DEBUG, TAG, "address parse error");
+
+        OICFree(cloneUri);
+        return NULL;
+    }
+
+    // resource uri
+    CAURI_t resourceUri = pResourceUri;
+
+    // connectivity type
+    CAConnectivityType_t type;
+
+    if (resType == 1)
+    {
+        type = CA_WIFI;
+    }
+    else
+    {
+        type = CA_EDR;
+    }
+
+    CARemoteEndpoint_t* remoteEndpoint = CACreateRemoteEndpointInternal(resourceUri, address, type);
+
+    OICFree(cloneUri);
+
+    return remoteEndpoint;
+}
+
+CARemoteEndpoint_t* CACreateRemoteEndpointInternal(const CAURI_t resourceUri,
+        const CAAddress_t addr, const CAConnectivityType_t type)
+{
+    char* temp = NULL;
+    int len = 0;
+
+    if (resourceUri == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "uri is null value");
+        return NULL;
+    }
+
+    // allocate the remote end point structure.
+    CARemoteEndpoint_t* rep = (CARemoteEndpoint_t*) OICMalloc(sizeof(CARemoteEndpoint_t));
+
+    if (rep == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "memory alloc error");
+        return NULL;
+    }
+    memset(rep, 0, sizeof(CARemoteEndpoint_t));
+
+    // allocate reference uri field
+    len = strlen(resourceUri);
+
+    temp = (char*) OICMalloc(sizeof(char) * (len + 1));
+    if (temp == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "memory alloc error");
+
+        CADestroyRemoteEndpointInternal(rep);
+
+        return NULL;
+    }
+    memset(temp, 0, sizeof(char) * (len + 1));
+    strncpy(temp, resourceUri, len);
+
+    // save the uri
+    rep->resourceUri = temp;
+
+    // save the addressInfo
+    memcpy(&(rep->addressInfo), &addr, sizeof(CAAddress_t));
+
+    // save the type
+    rep->connectivityType = type;
+
+    return rep;
+}
+
+CARequestInfo_t* CACloneRequestInfo(const CARequestInfo_t* rep)
+{
+    char* temp = NULL;
+    int len = 0;
+
+    if (rep == NULL)
+        return NULL;
+
+    // allocate the request info structure.
+    CARequestInfo_t* clone = (CARequestInfo_t*) OICMalloc(sizeof(CARequestInfo_t));
+    if (clone == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "memory alloc error!!");
+        return NULL;
+    }
+    memset(clone, 0, sizeof(CARequestInfo_t));
+    memcpy(clone, rep, sizeof(CARequestInfo_t));
+
+    if (rep->info.token != NULL)
+    {
+        // allocate token field
+        len = strlen(rep->info.token);
+
+        temp = (char*) OICMalloc(sizeof(char) * (len + 1));
+        if (temp == NULL)
+        {
+            OIC_LOG_V(DEBUG, TAG, "memory alloc error!!");
+
+            CADestroyRequestInfoInternal(clone);
+
+            return NULL;
+        }
+        memset(temp, 0, sizeof(char) * (len + 1));
+        strncpy(temp, rep->info.token, len);
+
+        // save the token
+        clone->info.token = temp;
+    }
+
+    if (rep->info.options != NULL)
+    {
+        // save the options
+        clone->info.options = (CAHeaderOption_t*) OICMalloc(sizeof(CAHeaderOption_t));
+        memset(clone->info.options, 0, sizeof(CAHeaderOption_t));
+        memcpy(clone->info.options, rep->info.options, sizeof(CAHeaderOption_t));
+    }
+
+    if (rep->info.payload != NULL)
+    {
+        // allocate payload field
+        len = strlen(rep->info.payload);
+
+        temp = (char*) OICMalloc(sizeof(char) * (len + 1));
+        if (temp == NULL)
+        {
+            OIC_LOG_V(DEBUG, TAG, "memory alloc error!!");
+
+            CADestroyRequestInfoInternal(clone);
+
+            return NULL;
+        }
+        memset(temp, 0, sizeof(char) * (len + 1));
+        strncpy(temp, rep->info.payload, len);
+
+        // save the payload
+        clone->info.payload = temp;
+    }
+
+    return clone;
+}
+
+CAResponseInfo_t* CACloneResponseInfo(const CAResponseInfo_t* rep)
+{
+    char* temp = NULL;
+    int len = 0;
+
+    if (rep == NULL)
+        return NULL;
+
+    // allocate the response info structure.
+    CAResponseInfo_t* clone = (CAResponseInfo_t*) OICMalloc(sizeof(CAResponseInfo_t));
+    if (clone == NULL)
+    {
+        OIC_LOG_V(DEBUG, TAG, "memory alloc error!!");
+        return NULL;
+    }
+    memset(clone, 0, sizeof(CAResponseInfo_t));
+    memcpy(clone, rep, sizeof(CAResponseInfo_t));
+
+    if (rep->info.token != NULL)
+    {
+        // allocate token field
+        len = strlen(rep->info.token);
+
+        temp = (char*) OICMalloc(sizeof(char) * (len + 1));
+        if (temp == NULL)
+        {
+            OIC_LOG_V(DEBUG, TAG, "memory alloc error!!");
+
+            CADestroyResponseInfoInternal(clone);
+
+            return NULL;
+        }
+        memset(temp, 0, sizeof(char) * (len + 1));
+        strncpy(temp, rep->info.token, len);
+
+        // save the token
+        clone->info.token = temp;
+    }
+
+    if (rep->info.options != NULL)
+    {
+        // save the options
+        clone->info.options = (CAHeaderOption_t*) OICMalloc(sizeof(CAHeaderOption_t));
+        memset(clone->info.options, 0, sizeof(CAHeaderOption_t));
+        memcpy(clone->info.options, rep->info.options, sizeof(CAHeaderOption_t));
+    }
+
+    if (rep->info.payload != NULL)
+    {
+        // allocate payload field
+        len = strlen(rep->info.payload);
+
+        temp = (char*) OICMalloc(sizeof(char) * (len + 1));
+        if (temp == NULL)
+        {
+            OIC_LOG_V(DEBUG, TAG, "memory alloc error!!");
+
+            CADestroyResponseInfoInternal(clone);
+
+            return NULL;
+        }
+        memset(temp, 0, sizeof(char) * (len + 1));
+        strncpy(temp, rep->info.payload, len);
+
+        // save the payload
+        clone->info.payload = temp;
+    }
+
+    return clone;
+}
+
+void CADestroyRemoteEndpointInternal(CARemoteEndpoint_t* rep)
+{
+    if (rep == NULL)
+        return;
+
+    // free uri field
+    if (rep->resourceUri != NULL)
+    {
+        OICFree((char*) rep->resourceUri);
+    }
+
+    // free remote end point structure.
+    OICFree(rep);
+}
+
+void CADestroyRequestInfoInternal(CARequestInfo_t* rep)
+{
+    if (rep == NULL)
+        return;
+
+    // free token field
+    if (rep->info.token != NULL)
+    {
+        OICFree((char*) rep->info.token);
+    }
+
+    // free options field
+    if (rep->info.options != NULL)
+    {
+        OICFree((CAHeaderOption_t*) rep->info.options);
+    }
+
+    // free payload field
+    if (rep->info.payload != NULL)
+    {
+        OICFree((char*) rep->info.payload);
+    }
+
+    OICFree(rep);
+}
+
+void CADestroyResponseInfoInternal(CAResponseInfo_t* rep)
+{
+    if (rep == NULL)
+        return;
+
+    // free token field
+    if (rep->info.token != NULL)
+    {
+        OICFree((char*) rep->info.token);
+    }
+
+    // free options field
+    if (rep->info.options != NULL)
+    {
+        OICFree((CAHeaderOption_t*) rep->info.options);
+    }
+
+    // free payload field
+    if (rep->info.payload != NULL)
+    {
+        OICFree((char*) rep->info.payload);
+    }
+
+    OICFree(rep);
+}
diff --git a/resource/csdk/connectivity/src/ethernet_adapter/linux/caethernetadapter.c b/resource/csdk/connectivity/src/ethernet_adapter/linux/caethernetadapter.c
new file mode 100644 (file)
index 0000000..e73c2fd
--- /dev/null
@@ -0,0 +1,134 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "caethernetadapter.h"
+#include "logger.h"
+
+#define TAG PCF("CA")
+
+static CANetworkPacketReceivedCallback gEthernetReceivedCallback = NULL;
+
+CAResult_t CAInitializeEthernet(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAInitializeEthernet");
+
+    gEthernetReceivedCallback = reqRespCallback;
+
+    // register handlers
+    CAConnectivityHandler_t handler;
+    memset(&handler, 0, sizeof(CAConnectivityHandler_t));
+
+    handler.startAdapter = CAStartEthernet;
+    handler.startListenServer = CAStartEthernetListeningServer;
+    handler.startDiscoverServer = CAStartEthernetDiscoveryServer;
+    handler.sendData = CASendEthernetUnicastData;
+    handler.sendDataToAll = CASendEthernetMulticastData;
+    handler.startNotifyServer = CAStartEthernetNotifyServer;
+    handler.sendNotification = CASendEthernetNotification;
+    handler.GetnetInfo = CAGetEthernetInterfaceInformation;
+    handler.readData = CAReadEthernetData;
+    handler.stopAdapter = CAStopEthernet;
+    handler.terminate = CATerminateEthernet;
+
+    registerCallback(handler, CA_ETHERNET);
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartEthernet()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartEthernet");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartEthernetListeningServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartEthernetListeningServer");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStartEthernetDiscoveryServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartEthernetDiscoveryServer");
+
+    return CA_STATUS_OK;
+}
+
+uint32_t CASendEthernetUnicastData(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendEthernetUnicastData");
+
+    return 0;
+}
+
+uint32_t CASendEthernetMulticastData(void* data, uint32_t dataLen)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendEthernetMulticastData");
+
+    return 0;
+}
+
+CAResult_t CAStartEthernetNotifyServer()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStartEthernetNotifyServer");
+
+    return CA_STATUS_OK;
+}
+
+uint32_t CASendEthernetNotification(const CARemoteEndpoint_t* endpoint, void* data,
+        uint32_t dataLen)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendEthernetNotification");
+
+    return 0;
+}
+
+CAResult_t CAGetEthernetInterfaceInformation(CALocalConnectivityt_t** info, uint32_t* size)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAGetEthernetInterfaceInformation");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAReadEthernetData()
+{
+    OIC_LOG_V(DEBUG, TAG, "Read Ethernet Data");
+
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStopEthernet()
+{
+    OIC_LOG_V(DEBUG, TAG, "CAStopEthernet");
+
+    return CA_STATUS_OK;
+}
+
+void CATerminateEthernet()
+{
+    OIC_LOG_V(DEBUG, TAG, "CATerminateEthernet");
+}
diff --git a/resource/csdk/connectivity/src/wifi_adapter/cawifiethernetadapter.c b/resource/csdk/connectivity/src/wifi_adapter/cawifiethernetadapter.c
new file mode 100644 (file)
index 0000000..a6033cc
--- /dev/null
@@ -0,0 +1,371 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+#include "cawifiethernetadapter.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdint.h>
+#include "caadapterutils.h"
+#include "umutex.h"
+
+#ifdef __TIZEN__
+#include "cawifiserver.h"
+#include "cawificlient.h"
+#include "cawifimonitor.h"
+#elif defined(OIC_ARDUINODUE)
+#include <logger.h>
+#include <string.h>
+#include "cawifiadapter.h"
+#endif //#ifdef __TIZEN__
+/**
+ * @def WIFI_ETHERNET_ADAPTER_TAG
+ * @brief Logging tag for module name
+ */
+#define WIFI_ETHERNET_ADAPTER_TAG "WIFI_ETHERNET_ADAPTER"
+
+/**
+ * @def CA_PORT
+ * @brief Port to listen for incoming data
+ */
+#define CA_PORT   5283
+
+#define CA_MCAST_PORT   5298
+
+/**
+ * @def CA_MULTICAST_IP
+ * @brief Multicast IP Address
+ */
+#define CA_MULTICAST_IP "224.0.1.187"
+
+/**
+ * @var gNetworkCallback
+ * @brief Network callback
+ */
+static CANetworkChangeCallback gNetworkCallback = NULL;
+
+/**
+ * @var gIsMulticastServerStarted
+ * @brief Flag to check if multicast server is started
+ */
+static int gIsMulticastServerStarted = 0;
+static u_mutex gMutexIsMulticastServerStarted = NULL;
+
+void CAInitializeMutex()
+{
+    u_mutex_init();
+    gMutexIsMulticastServerStarted = u_mutex_new();
+}
+
+int CAWIFIRegisterNetworkNotifications(CANetworkChangeCallback netCallback)
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+
+    gNetworkCallback = netCallback; //TODO: Remove and set using API define in arduino specific file
+#ifdef __TIZEN__
+            if (netCallback != NULL)
+            {
+                CAInitializeWIFIAdapter();
+                CASetWIFINetworkChangeCallback(netCallback);
+            }
+            else
+            {
+                CADeinitializeWIFIAdapter();
+            }
+#endif
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAInitializeWifi(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback)
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+    CAResult_t ret = CA_STATUS_OK;
+
+    VERIFY_NON_NULL(registerCallback, WIFI_ETHERNET_ADAPTER_TAG, "Invalid argument");
+    VERIFY_NON_NULL(reqRespCallback, WIFI_ETHERNET_ADAPTER_TAG, "Invalid argument");
+    VERIFY_NON_NULL(netCallback, WIFI_ETHERNET_ADAPTER_TAG, "Invalid argument");
+
+    CAConnectivityHandler_t wifiHandler;
+    wifiHandler.startAdapter = CAStartWIFI;
+    wifiHandler.startListenServer = CAStartWIFIListeningServer;
+    wifiHandler.startDiscoverServer = CAStartWIFIDiscoveryServer;
+    wifiHandler.sendData = CASendWIFIUnicastData;
+    wifiHandler.sendDataToAll = CASendWIFIMulticastData;
+    wifiHandler.startNotifyServer = CAStartWIFINotifyRecvServers;
+    wifiHandler.sendNotification = CASendWIFINotification;
+    wifiHandler.GetnetInfo = CAGetWIFIInterfaceInformation;
+    wifiHandler.readData = CAReadWIFIData;
+    wifiHandler.stopAdapter = CAStopWIFI;
+    wifiHandler.terminate = CATerminateWifi;
+    registerCallback(wifiHandler, CA_WIFI);
+
+    CASetWIFINetworkPacketCallback(reqRespCallback);
+    CAWIFIRegisterNetworkNotifications(netCallback);
+    CAInitializeMutex();
+    CAInitializeServerMutex();
+    //ret = CAStartWIFIUnicastServer();
+
+    OCLog(INFO, WIFI_ETHERNET_ADAPTER_TAG, "IntializeWifi Success");
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return ret;
+}
+
+CAResult_t CAStartWIFI()
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+    int16_t unicastPort = CA_PORT;
+    CAResult_t ret = CA_STATUS_OK;
+
+#ifdef __TIZEN__
+    CASetIsStartServerInvoked();
+    int retVal = CAIsWIFIConnected();
+    if(retVal == 0)
+    {
+        OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "WIFI is not Connected");
+        return ret;
+    }
+#endif
+    /*Address is hardcoded as we are using Single Interface*/
+    ret = CAStartUnicastServer("0.0.0.0", &unicastPort);
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return ret;
+}
+
+CAResult_t CAStartWIFIListeningServer()
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+
+    CAResult_t ret = CA_STATUS_OK;
+    int16_t multicastPort = CA_MCAST_PORT;
+
+    if (gIsMulticastServerStarted == 1)
+    {
+        OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "Server is already Started");
+        return CA_STATUS_OK;
+    }
+#ifdef __TIZEN__
+    int retVal = CAIsWIFIConnected();
+    if(retVal == 0)
+    {
+        OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "WIFI is not Connected");
+        return CA_STATUS_FAILED;
+    }
+#endif
+    ret = CAStartMulticastServer(CA_MULTICAST_IP, "0.0.0.0", &multicastPort);
+    if (ret == CA_STATUS_OK)
+    {
+        OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "Multicast Server is Started Successfully");
+        u_mutex_lock(gMutexIsMulticastServerStarted);
+        gIsMulticastServerStarted = 1;
+        u_mutex_unlock(gMutexIsMulticastServerStarted);
+    }
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return ret;
+}
+
+CAResult_t CAStartWIFIDiscoveryServer()
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+
+    CAResult_t ret = CA_STATUS_OK;
+    int16_t multicastPort = CA_MCAST_PORT;
+
+    if (gIsMulticastServerStarted == 1)
+    {
+        OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "Server is already Started");
+        return CA_STATUS_OK;
+    }
+#ifdef __TIZEN__
+    /*int retVal = CAIsWIFIConnected();
+     if(retVal == 0)
+     {
+     OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "WIFI is not Connected");
+     return CA_STATUS_FAILED;
+     }*/ //VV
+#endif
+    ret = CAStartMulticastServer(CA_MULTICAST_IP, "0.0.0.0", &multicastPort);
+    if (ret == CA_STATUS_OK)
+    {
+        OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "Multicast Server is Started Successfully");
+        u_mutex_lock(gMutexIsMulticastServerStarted);
+        gIsMulticastServerStarted = 1;
+        u_mutex_unlock(gMutexIsMulticastServerStarted);
+    }
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return ret;
+}
+
+uint32_t CASendWIFIUnicastData(const CARemoteEndpoint_t *remoteEndpoint, void *data,
+        uint32_t dataLen)
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+
+    uint32_t dataSize = 0;
+
+    VERIFY_NON_NULL_RET(remoteEndpoint, WIFI_ETHERNET_ADAPTER_TAG, "Invalid argument", dataSize);
+    VERIFY_NON_NULL_RET(data, WIFI_ETHERNET_ADAPTER_TAG, "Invalid argument", dataSize);
+
+    if (dataLen <= 0)
+    {
+        OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "Data Length is 0");
+        return dataSize;
+
+    }
+
+    dataSize = CAWIFISendData(remoteEndpoint->addressInfo.IP.ipAddress,
+            remoteEndpoint->addressInfo.IP.port, data, dataLen, 0);
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return dataSize;
+}
+
+uint32_t CASendWIFIMulticastData(void *data, uint32_t dataLength)
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+
+    uint32_t dataSize = 0;
+
+    VERIFY_NON_NULL_RET(data, WIFI_ETHERNET_ADAPTER_TAG, "Invalid argument", dataSize);
+
+    if (dataLength <= 0)
+    {
+        OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "Data Length is 0");
+        return 0;
+
+    }
+    dataSize = CAWIFISendData(CA_MULTICAST_IP, CA_MCAST_PORT, data, dataLength, 1);
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return dataSize;
+}
+
+CAResult_t CAStartWIFINotifyRecvServers()
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return CA_STATUS_OK;
+}
+
+uint32_t CASendWIFINotification(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen)
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAGetWIFIInterfaceInformation(CALocalConnectivityt_t **info, uint32_t* size)
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+
+    VERIFY_NON_NULL(info, WIFI_ETHERNET_ADAPTER_TAG, "Invalid argument");
+    //VERIFY_NON_NULL(size, WIFI_ETHERNET_ADAPTER_TAG, "Invalid argument");
+    char localIpAddress[CA_IPADDR_SIZE];
+    int32_t localIpAddressLen = sizeof(localIpAddress);
+#ifdef __TIZEN__
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "Getting WIFI address");
+    CAGetInterfaceAddress(localIpAddress, localIpAddressLen);
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "Got WIFI address");
+#else
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "Getting shield address");
+    arduinoGetInterfaceAddress(localIpAddress, localIpAddressLen);
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "Got shield address");
+#endif //#if __ARDUINO__
+    /**
+     * Create local endpoint using util function
+     */
+    (*info) = CreateLocalEndpoint(CA_WIFI, localIpAddress, "WiFi");
+    if (NULL == (*info))
+    {
+        OCLog(ERROR, WIFI_ETHERNET_ADAPTER_TAG, "Error while Createing Memory");
+        return CA_STATUS_FAILED;
+    }
+
+    (*size) = 1;
+
+    OCLog(INFO, WIFI_ETHERNET_ADAPTER_TAG, "GetWIFIInterfaceInformation success");
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAReadWIFIData()
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+#ifdef __ARDUINO__
+    arduoinoCheckServerData();
+#endif //#ifdef __ARDUINO__
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return CA_STATUS_OK;
+}
+
+CAResult_t CAStopWIFI()
+{
+    CAResult_t result = CA_STATUS_FAILED;
+    result = CAStopUnicastServer();
+    if (result != CA_STATUS_OK)
+    {
+        OCLog(ERROR, WIFI_ETHERNET_ADAPTER_TAG, "Error while stopping UnicastServer");
+        return CA_STATUS_FAILED;
+    }
+#ifdef __TIZEN__
+    CAUnsetIsStartServerInvoked();
+#endif
+    result = CAStopMulticastServer();
+    if (result != CA_STATUS_OK)
+    {
+        OCLog(ERROR, WIFI_ETHERNET_ADAPTER_TAG, "Error while stopping MulticastServer");
+        return CA_STATUS_FAILED;
+    }
+    else
+    {
+        u_mutex_lock(gMutexIsMulticastServerStarted);
+        gIsMulticastServerStarted = 0;
+        u_mutex_unlock(gMutexIsMulticastServerStarted);
+    }
+    return CA_STATUS_OK;
+}
+
+void CATerminateWifi()
+{
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "IN");
+    CAResult_t result = CA_STATUS_FAILED;
+
+    CASetWIFINetworkPacketCallback(NULL);
+    result = CAWIFIRegisterNetworkNotifications(NULL);
+    if (result != CA_STATUS_OK)
+    {
+        OCLog(ERROR, WIFI_ETHERNET_ADAPTER_TAG,
+                "Error while wifiRegisterNetworkNotifications(NULL)");
+    }
+
+    OCLog(INFO, WIFI_ETHERNET_ADAPTER_TAG, "TerminateWifi Success");
+
+    OCLog(DEBUG, WIFI_ETHERNET_ADAPTER_TAG, "OUT");
+    return;
+}
diff --git a/resource/csdk/connectivity/src/wifi_adapter/linux/cawifiadapter.c b/resource/csdk/connectivity/src/wifi_adapter/linux/cawifiadapter.c
new file mode 100644 (file)
index 0000000..298f50f
--- /dev/null
@@ -0,0 +1,190 @@
+/******************************************************************
+ *
+ * Copyright 2014 Samsung Electronics All Rights Reserved.
+ *
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "cawifiadapter.h"
+
+#include "config.h"
+#include "coap.h"
+
+#include "cawificore.h"
+
+#include "logger.h"
+
+#define TAG PCF("CA")
+
+// received packet callback
+static CANetworkPacketReceivedCallback gWifiReceivedCallback = NULL;
+
+static void CAWiFiPacketReceiveCallback(const char* address, const char* data)
+{
+    OIC_LOG_V(DEBUG, TAG,
+            "CAWiFiPacketReceiveCallback, from: %s, data: %s", address, data);
+
+    // call the callback
+    if (gWifiReceivedCallback != NULL)
+    {
+        CARemoteEndpoint_t* endpoint = NULL;
+        endpoint = (CARemoteEndpoint_t*) OICMalloc(sizeof(CARemoteEndpoint_t));
+
+        // set address
+        memset((void*) endpoint->addressInfo.IP.ipAddress, 0, CA_IPADDR_SIZE);
+        if (CA_IPADDR_SIZE > strlen(address))
+            strcpy((char*) endpoint->addressInfo.IP.ipAddress, address);
+
+        // set connectivity type
+        endpoint->connectivityType = CA_WIFI;
+
+        gWifiReceivedCallback(endpoint, data, strlen(data));
+    }
+}
+
+CAResult_t CAInitializeWifi(CARegisterConnectivityCallback registerCallback,
+        CANetworkPacketReceivedCallback reqRespCallback, CANetworkChangeCallback netCallback)
+{
+    OIC_LOG(DEBUG, TAG, "IntializeWifi");
+
+    gWifiReceivedCallback = reqRespCallback;
+
+    // register handlers
+    CAConnectivityHandler_t handler;
+    memset(&handler, 0, sizeof(CAConnectivityHandler_t));
+
+    handler.startAdapter = CAStartWIFI;
+    handler.startListenServer = CAStartWIFIListeningServer;
+    handler.startDiscoverServer = CAStartWIFIDiscoveryServer;
+    handler.sendData = CASendWIFIUnicastData;
+    handler.sendDataToAll = CASendWIFIMulticastData;
+    handler.startNotifyServer = CAStartWIFINotifyRecvServers;
+    handler.sendNotification = CASendWIFINotification;
+    handler.GetnetInfo = CAGetWIFIInterfaceInformation;
+    handler.readData = CAReadWIFIData;
+    handler.stopAdapter = CAStopWIFI;
+    handler.terminate = CATerminateWIfI;
+
+    registerCallback(handler, CA_WIFI);
+
+    CAWiFiSetCallback(CAWiFiPacketReceiveCallback);
+
+    return 0;
+}
+
+void CATerminateWIfI()
+{
+    OIC_LOG(DEBUG, TAG, "TerminateWifi");
+
+    CAWiFiTerminate();
+}
+
+CAResult_t CAStartWIFI()
+{
+    OIC_LOG(DEBUG, TAG, "CAStartWIFI");
+    CAWiFiInitialize();
+
+    OIC_LOG(DEBUG, TAG, "CAWiFiStartUnicastServer");
+    CAWiFiStartUnicastServer("0.0.0.0", atoi("5283"));
+
+    return 0;
+}
+
+CAResult_t CAStopWIFI()
+{
+    OIC_LOG(DEBUG, TAG, "CAStopWIFI");
+
+    // ToDo:
+
+    return 0;
+}
+
+CAResult_t CAStartWIFIListeningServer()
+{
+    OIC_LOG(DEBUG, TAG, "StartWIFIListeningServer");
+
+    CAWiFiStartMulticastServer("0.0.0.0", atoi("5283"));
+
+    return 0;
+}
+
+CAResult_t CAStartWIFIDiscoveryServer()
+{
+    OIC_LOG(DEBUG, TAG, "StartWIFIDiscoveryServer");
+
+    CAWiFiStartMulticastServer("0.0.0.0", atoi("5283"));
+
+    return 0;
+}
+
+uint32_t CASendWIFIUnicastData(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen)
+{
+    OIC_LOG(DEBUG, TAG, "SendWIFIUnicastData");
+
+    CAWiFiSendUnicastMessage(endpoint->addressInfo.IP.ipAddress, data, dataLen);
+
+    return 0;
+}
+
+uint32_t CASendWIFIMulticastData(void* data, uint32_t dataLen)
+{
+    OIC_LOG(DEBUG, TAG, "CASendWIFIMulticastData");
+
+    CAWiFiSendMulticastMessage("0.0.0.0", (char*) data);
+
+    return 0;
+}
+
+CAResult_t CAStartWIFINotifyRecvServers()
+{
+    OIC_LOG(DEBUG, TAG, "StartWIFINotifyRecvServers");
+
+    // ToDo:
+
+    return 0;
+}
+
+uint32_t CASendWIFINotification(const CARemoteEndpoint_t* endpoint, void* data, uint32_t dataLen)
+{
+    OIC_LOG(DEBUG, TAG, "SendWIFINotification");
+
+    // ToDo:
+
+    return 0;
+}
+
+CAResult_t CAGetWIFIInterfaceInformation(CALocalConnectivityt_t** info, uint32_t* size)
+{
+    OIC_LOG(DEBUG, TAG, "GetWIFIInterfaceInformation");
+
+    // ToDo:
+
+    return 0;
+}
+
+CAResult_t CAReadWIFIData()
+{
+    OIC_LOG(DEBUG, TAG, "Read WIFI Data");
+
+    // ToDo:
+
+    return 0;
+}
+
diff --git a/resource/csdk/connectivity/src/wifi_adapter/linux/cawificore.c b/resource/csdk/connectivity/src/wifi_adapter/linux/cawificore.c
new file mode 100644 (file)
index 0000000..f3d4f5f
--- /dev/null
@@ -0,0 +1,500 @@
+#include <stdio.h>
+#include <sys/socket.h>
+#include <arpa/inet.h>
+#include <string.h>
+#include <pthread.h>
+#include <unistd.h>
+#include "cawificore.h"
+#include <errno.h>
+#include <sys/types.h>
+#include <ifaddrs.h>
+#include <netinet/in.h>
+#include <string.h>
+#include <arpa/inet.h>
+#include "logger.h"
+
+#define TAG PCF("CA")
+
+#define CA_MAX_BUFFER_SIZE 512  // Max length of buffer
+#define CA_UNICAST_PORT 5283 // The port on which to listen for incoming data
+int32_t unicast_socket;
+pthread_t pthread_unicast_server;
+pthread_t pthread_unicast_client;
+pthread_mutex_t mutex_unicast;
+pthread_cond_t sync_cond_unicast;
+int32_t unicast_send_thread_flag = 0; // 0: run, 1: stop
+
+char* target = NULL;
+void* list = NULL;
+
+#define CA_MULTICAST_ADDR "224.0.1.187"
+#define CA_MULTICAST_PORT 5683
+
+int32_t multicast_send_socket;
+struct sockaddr_in multicast_send_interface_addr;
+
+pthread_t pthread_multicast_server;
+pthread_t pthread_multicast_client;
+
+int32_t multicast_receive_socket;
+struct sockaddr_in multicast_receive_interface_addr;
+
+void* data_list = NULL;
+
+pthread_mutex_t mutex_multicast;
+pthread_cond_t sync_cond_multicast;
+int32_t multicast_send_thread_flag = 0; // 0: run, 1: stop
+
+CAPacketReceiveCallback gPacketReceiveCallback = NULL;
+
+void CAWiFiInitialize()
+{
+    OIC_LOG(DEBUG, TAG, "CAWiFiInitialize");
+
+    pthread_mutex_init(&mutex_unicast, NULL);
+
+    pthread_mutex_init(&mutex_multicast, NULL);
+
+    // [UDP Server]
+    struct sockaddr_in si_me;
+
+    // create a UDP socket
+    if ((unicast_socket = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == -1)
+    {
+        OIC_LOG_V(DEBUG, TAG, "CAWiFiInit, creating socket failed");
+
+        return;
+    }
+
+    OIC_LOG_V(DEBUG, TAG, "CAWiFiInit, socket created");
+
+    // zero out the structure
+    memset((char *) &si_me, 0, sizeof(si_me));
+
+    si_me.sin_family = AF_INET;
+    si_me.sin_port = htons(CA_UNICAST_PORT);
+    si_me.sin_addr.s_addr = htonl(INADDR_ANY);
+
+    // bind socket to port
+    if (bind(unicast_socket, (struct sockaddr*) &si_me, sizeof(si_me)) == -1)
+    {
+        OIC_LOG(DEBUG, TAG, "CAWiFiInit, binding socket failed");
+
+        return;
+    }
+
+    OIC_LOG(DEBUG, TAG, "CAWiFiInit, socket binded");
+
+    // [multicast sender]
+    uint32_t multiTTL = 1;
+
+    // 1. Set up a typical UDP socket
+    multicast_send_socket = socket(AF_INET, SOCK_DGRAM, 0);
+    if (multicast_send_socket < 0)
+    {
+        OIC_LOG(DEBUG, TAG, "CAWiFiInit, Socket error");
+
+        return;
+    }
+
+    memset(&multicast_send_interface_addr, 0, sizeof(multicast_send_interface_addr));
+    multicast_send_interface_addr.sin_family = AF_INET;
+    multicast_send_interface_addr.sin_addr.s_addr = inet_addr(CA_MULTICAST_ADDR);
+    multicast_send_interface_addr.sin_port = htons(CA_MULTICAST_PORT);
+
+    // [multicast receiver]
+    // 1. Create a typical UDP socket and set Non-blocking for reading
+    multicast_receive_socket = socket(AF_INET, SOCK_DGRAM, 0);
+    if (multicast_receive_socket < 0)
+    {
+        OIC_LOG(DEBUG, TAG, "CAWiFiInit, Socket error");
+
+        return;
+    }
+
+    // 2. Allow multiple sockets to use the same port number
+    int32_t ret_val = setsockopt(multicast_receive_socket, SOL_SOCKET, SO_REUSEADDR, &multiTTL,
+            sizeof(multiTTL));
+    if (ret_val < 0)
+    {
+        OIC_LOG(DEBUG, TAG, "CAWiFiInit, Failed to set REUSEADDR");
+    }
+
+    // 3. Set up the interface
+    memset(&multicast_receive_interface_addr, 0, sizeof(multicast_receive_interface_addr));
+    multicast_receive_interface_addr.sin_family = AF_INET;
+    multicast_receive_interface_addr.sin_addr.s_addr = htonl(INADDR_ANY);
+    multicast_receive_interface_addr.sin_port = htons(CA_MULTICAST_PORT);
+
+    // 4. Bind to the interface
+    ret_val = bind(multicast_receive_socket, (struct sockaddr *) &multicast_receive_interface_addr,
+            sizeof(multicast_receive_interface_addr));
+    if (ret_val < 0)
+    {
+        OIC_LOG(DEBUG, TAG, "CAWiFiInit, Failed to bind socket");
+
+        return;
+    }
+
+    // 5. Join the multicast group
+    struct ip_mreq mreq;
+    memset(&mreq, 0, sizeof(mreq));
+    mreq.imr_multiaddr.s_addr = inet_addr(CA_MULTICAST_ADDR);
+    mreq.imr_interface.s_addr = htonl(INADDR_ANY);
+    ret_val = setsockopt(multicast_receive_socket, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq,
+            sizeof(mreq));
+    if (ret_val < 0)
+    {
+        OIC_LOG(DEBUG, TAG, "CAWiFiInit, Failed to join multicast group");
+
+        return;
+    }
+}
+
+void CAWiFiTerminate()
+{
+    OIC_LOG(DEBUG, TAG, "CAWiFiTerminate");
+
+    pthread_mutex_destroy(&mutex_unicast);
+
+    pthread_mutex_destroy(&mutex_multicast);
+
+    close(unicast_socket);
+
+    close(multicast_send_socket);
+
+    close(multicast_receive_socket);
+}
+
+int32_t CAWiFiSendUnicastMessage(const char* address, const char* data, int lengh)
+{
+    CASendUnicastMessage(address, data);
+
+    return 0;
+}
+
+int32_t CAWiFiSendMulticastMessage(const char* m_address, const char* data)
+{
+    CASendMulticastMessage(data);
+
+    return 0;
+}
+
+int32_t CAWiFiStartUnicastServer(const char* address, int port)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAWiFiStartUnicastServer(%s, %d)", address, port);
+
+    int32_t result = pthread_create(&pthread_unicast_server, NULL, (void *) &CAUnicastReceiveThread,
+            (void *) NULL);
+    if (result < 0)
+    {
+        OIC_LOG(DEBUG, TAG, "CAWiFiStartUnicastServer, creating unicast_receive_thread failed");
+
+        return -1;
+    }
+
+    result = pthread_create(&pthread_unicast_client, NULL, (void *) &CAUnicastSendThread,
+            (void *) NULL);
+    if (result < 0)
+    {
+        OIC_LOG(DEBUG, TAG, "CAWiFiStartUnicastServer, creating unicast_send_thread failed");
+
+        return -1;
+    }
+
+    OIC_LOG(DEBUG, TAG, "CAWiFiStartUnicastServer, receive & send thread created");
+
+    return 0;
+}
+
+int32_t CAWiFiStartMulticastServer(const char* m_address, int port)
+{
+    OIC_LOG_V(DEBUG, TAG, "CAWiFiStartMulticastServer(%s, %d)", m_address, port);
+
+    int32_t result = pthread_create(&pthread_multicast_server, NULL,
+            (void *) &CAMulticastReceiveThread, (void *) NULL);
+    if (result < 0)
+    {
+
+        return -1;
+    }
+
+    result = pthread_create(&pthread_multicast_client, NULL, (void *) &CAMulticastSendThread,
+            (void *) NULL);
+    if (result < 0)
+    {
+        OIC_LOG(DEBUG, TAG, "creating receive_thread failed");
+
+        return -1;
+    }
+
+    return 0;
+}
+
+int32_t CAWiFiStopUnicastServer(int32_t server_id)
+{
+
+    CAStopUnicastSendThread();
+
+    return 0;
+}
+
+int32_t CAWiFiStopMulticastServer(int32_t server_id)
+{
+
+    CAStopMulticastSendThread();
+
+    return 0;
+}
+
+void CAWiFiSetCallback(CAPacketReceiveCallback callback)
+{
+    gPacketReceiveCallback = callback;
+}
+
+void* CAUnicastReceiveThread(void* data)
+{
+    OIC_LOG(DEBUG, TAG, "CAUnicastReceiveThread");
+
+    char buf[CA_MAX_BUFFER_SIZE];
+    int32_t recv_len;
+
+    struct sockaddr_in si_other;
+    int32_t slen = sizeof(si_other);
+
+    // keep listening for data
+    while (1)
+    {
+        OIC_LOG(DEBUG, TAG, "CAUnicastReceiveThread, Waiting for data...");
+        fflush(stdout);
+
+        memset(buf, 0, sizeof(char) * CA_MAX_BUFFER_SIZE);
+
+        // try to receive some data, this is a blocking call
+        if ((recv_len = recvfrom(unicast_socket, buf, CA_MAX_BUFFER_SIZE, 0,
+                (struct sockaddr *) &si_other, &slen)) == -1)
+        {
+            OIC_LOG(DEBUG, TAG, "CAUnicastReceiveThread, recv_len() error");
+            continue;
+        }
+
+        // print details of the client/peer and the data received
+        OIC_LOG_V(DEBUG, TAG, "CAUnicastReceiveThread, Received packet from %s:%d",
+                inet_ntoa(si_other.sin_addr), ntohs(si_other.sin_port));
+               OIC_LOG_V(DEBUG, TAG, "CAUnicastReceiveThread, Data: %s", buf);
+
+        if (gPacketReceiveCallback != NULL)
+        {
+            gPacketReceiveCallback(inet_ntoa(si_other.sin_addr), buf);
+        }
+    }
+
+    return (void*) 0;
+}
+
+void* CAUnicastSendThread(void* data)
+{
+    OIC_LOG(DEBUG, TAG, "CAUnicastSendThread");
+
+    while (!unicast_send_thread_flag)
+    {
+        pthread_mutex_lock(&mutex_unicast);
+
+        pthread_cond_wait(&sync_cond_unicast, &mutex_unicast);
+
+        pthread_mutex_unlock(&mutex_unicast);
+
+        if (unicast_send_thread_flag)
+            return (void*) 0;
+
+        CASendUnicastMessageImpl(target, list, strlen(list));
+    }
+
+    return (void*) 0;
+}
+
+void CASendUnicastMessage(char* address, void* data)
+{
+    target = address;
+    list = data;
+    unicast_send_thread_flag = 0;
+
+    pthread_cond_signal(&sync_cond_unicast);
+}
+
+int32_t CASendUnicastMessageImpl(const char* address, const char* data, int32_t lengh)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendUnicastMessageImpl, address: %s, data: %s", address, data);
+
+    // [UDP Client]
+    struct sockaddr_in si_other;
+    int32_t slen = sizeof(si_other);
+
+    memset((char *) &si_other, 0, sizeof(si_other));
+
+    si_other.sin_family = AF_INET;
+    si_other.sin_port = htons(CA_UNICAST_PORT);
+    if (inet_aton(address, &si_other.sin_addr) == 0)
+    {
+        OIC_LOG(DEBUG, TAG, "CASendUnicastMessageImpl, inet_aton, error...");
+        return 0;
+    }
+
+    OIC_LOG_V(DEBUG, TAG, "CASendUnicastMessageImpl, sendto, to: %s, data: %s", address, data);
+    if (sendto(unicast_socket, data, strlen(data), 0, (struct sockaddr *) &si_other, slen) == -1)
+    {
+        OIC_LOG(DEBUG, TAG, "CASendUnicastMessageImpl, sendto, error...");
+
+        return 0;
+    }
+
+    return 0;
+}
+
+void CAStopUnicastSendThread()
+{
+    unicast_send_thread_flag = 1;
+
+    pthread_cond_signal(&sync_cond_unicast);
+}
+
+void* CAMulticastReceiveThread(void* data)
+{
+    OIC_LOG(DEBUG, TAG, "CAMulticastReceiveThread");
+
+    // 6. Read from the socket and print out a message when one is received
+    char msgbuf[CA_MAX_BUFFER_SIZE];
+
+    struct sockaddr_in client;
+    int32_t addrlen = sizeof(client);
+
+    OIC_LOG(DEBUG, TAG, "CAMulticastReceiveThread, waiting for input...");
+
+    while (1)
+    {
+        int32_t recv_bytes = recvfrom(multicast_receive_socket, msgbuf, CA_MAX_BUFFER_SIZE, 0,
+                (struct sockaddr *) &client, (socklen_t *) &addrlen);
+        if (recv_bytes < 0)
+        {
+            if (errno != EAGAIN)
+            {
+                OIC_LOG(DEBUG, TAG, "CAMulticastReceiveThread, error recvfrom");
+
+                return (void*) 0;
+            }
+
+            continue;
+        }
+
+        msgbuf[recv_bytes] = 0;
+
+        OIC_LOG_V(DEBUG, TAG, "Received msg: %s, size: %d", msgbuf, recv_bytes);
+
+        char* sender = inet_ntoa(client.sin_addr);
+        char local[INET_ADDRSTRLEN];
+        CAGetLocalAddress(local);
+        if (strcmp(sender, local) == 0)
+        {
+            OIC_LOG_V(DEBUG, TAG, "skip the local request (via multicast)");
+        }
+        else
+        {
+            if (gPacketReceiveCallback != NULL)
+            {
+                gPacketReceiveCallback(inet_ntoa(client.sin_addr), msgbuf);
+            }
+        }
+
+    }
+
+    return (void*) 0;
+}
+
+void* CAMulticastSendThread(void* data)
+{
+    OIC_LOG(DEBUG, TAG, "CAMulticastSendThread");
+
+    while (!multicast_send_thread_flag)
+    {
+        pthread_mutex_lock(&mutex_multicast);
+
+        pthread_cond_wait(&sync_cond_multicast, &mutex_multicast);
+
+        pthread_mutex_unlock(&mutex_multicast);
+
+        if (multicast_send_thread_flag)
+            return (void*) 0;
+
+        CASendMulticastMessageImpl(data_list);
+    }
+
+    return (void*) 0;
+}
+
+void CASendMulticastMessage(void* data)
+{
+    data_list = data;
+    multicast_send_thread_flag = 0;
+
+    pthread_cond_signal(&sync_cond_multicast);
+}
+
+int32_t CASendMulticastMessageImpl(const char* msg)
+{
+    OIC_LOG_V(DEBUG, TAG, "CASendMulticastMessageImpl, sendto, data: %s", msg);
+
+    int32_t result = sendto(multicast_send_socket, msg, strlen(msg), 0,
+            (struct sockaddr *) &multicast_send_interface_addr,
+            sizeof(multicast_send_interface_addr));
+    if (result < 0)
+    {
+        OIC_LOG(DEBUG, TAG, "CASendMulticastMessageImpl, sending message error...");
+
+        return -1;
+    }
+
+    return 0;
+}
+
+void CAStopMulticastSendThread()
+{
+    multicast_send_thread_flag = 1;
+
+    pthread_cond_signal(&sync_cond_multicast);
+}
+
+void CAGetLocalAddress(char* addressBuffer)
+{
+    //char addressBuffer[INET_ADDRSTRLEN];
+    memset(addressBuffer, 0, INET_ADDRSTRLEN);
+
+    struct ifaddrs* ifAddrStruct = NULL;
+    struct ifaddrs* ifa = NULL;
+    void* tmpAddrPtr = NULL;
+
+    getifaddrs(&ifAddrStruct);
+
+    for (ifa = ifAddrStruct; ifa != NULL; ifa = ifa->ifa_next)
+    {
+        if (!ifa->ifa_addr)
+        {
+            continue;
+        }
+
+        if (ifa->ifa_addr->sa_family == AF_INET)
+        { // check it is IP4
+            // is a valid IP4 Address
+            tmpAddrPtr = &((struct sockaddr_in *) ifa->ifa_addr)->sin_addr;
+
+            memset(addressBuffer, 0, INET_ADDRSTRLEN);
+            inet_ntop(AF_INET, tmpAddrPtr, addressBuffer, INET_ADDRSTRLEN);
+
+            if (strcmp(addressBuffer, "127.0.0.1") == 0)
+                continue;
+        }
+    }
+
+    if (ifAddrStruct != NULL)
+        freeifaddrs(ifAddrStruct);
+}
+
diff --git a/resource/csdk/connectivity/unittests/linux/sample1_unittest.cc b/resource/csdk/connectivity/unittests/linux/sample1_unittest.cc
new file mode 100644 (file)
index 0000000..6d8be53
--- /dev/null
@@ -0,0 +1,366 @@
+#include "gtest/gtest.h"
+#include "cainterface.h"
+#include "cacommon.h"
+#include <string.h>
+
+using namespace std;
+
+void request_handler(CARemoteEndpoint* object, CARequestInfo* requestInfo);
+void response_handler(CARemoteEndpoint* object, CAResponseInfo* responseInfo);
+
+void request_handler(CARemoteEndpoint* object, CARequestInfo* requestInfo)
+{
+    cout << "request_handler, uri : " << (object != NULL) ? object->resourceUri : "";
+    cout << ", data : " << (requestInfo != NULL) ? requestInfo->info.payload : "";
+    cout << endl;
+}
+
+void response_handler(CARemoteEndpoint* object, CAResponseInfo* responseInfo)
+{
+    cout << "response_handler, uri : " << (object != NULL) ? object->resourceUri : "";
+    cout << ", data : " << (responseInfo != NULL) ? responseInfo->info.payload : "";
+    cout << endl;
+}
+
+char* uri;
+CARemoteEndpoint* tempRep = NULL;
+CARequestInfo requestInfo;
+CAInfo responseData;
+CAResponseInfo responseInfo;
+CAToken tempToken;
+
+int main(int argc, char **argv)
+{
+    testing::InitGoogleTest(&argc, argv);
+    return RUN_ALL_TESTS();
+}
+
+// CAInitialize TC
+// check return value
+TEST(InitializeTest, TC_01_Positive_01)
+{
+    EXPECT_EQ(CA_STATUS_OK, CAInitialize());
+}
+
+//CATerminate TC
+TEST(TerminateTest, TC_02_Positive_01)
+{
+    CATerminate();
+
+    char* check = (char *) "terminate success";
+    EXPECT_STREQ(check, "terminate success");
+
+    CAInitialize();
+}
+// CAStartListeningServer TC
+// check return value
+TEST(StartListeningServerTest, TC_03_Positive_01)
+{
+    CASelectNetwork(CA_WIFI);
+    EXPECT_EQ(CA_STATUS_OK, CAStartListeningServer());
+}
+
+// CAStartDiscoveryServer TC
+// check return value
+TEST(StartDiscoveryServerTest, TC_04_Positive_01)
+{
+    EXPECT_EQ(CA_STATUS_OK, CAStartDiscoveryServer());
+}
+
+// CARegisterHandlerTest TC
+// check return value
+TEST(RegisterHandlerTest, TC_05_Positive_01)
+{
+    EXPECT_EQ(CA_STATUS_OK, CARegisterHandler(request_handler, response_handler));
+}
+
+// CACreateRemoteEndpoint TC
+// check return value
+TEST(CreateRemoteEndpointTest, TC_06_Positive_01)
+{
+    uri = (char *) "referenceUri";
+
+    EXPECT_EQ(CA_STATUS_OK, CACreateRemoteEndpoint(uri, &tempRep));
+
+    CADestroyRemoteEndpoint(tempRep);
+}
+
+// check remoteEndpoint and values of remoteEndpoint
+TEST(CreateRemoteEndpointTest, TC_07_Positive_02)
+{
+    uri = (char *) "referenceUri";
+    CACreateRemoteEndpoint(uri, &tempRep);
+
+    EXPECT_TRUE(tempRep != NULL);
+
+    if (tempRep != NULL)
+    {
+        EXPECT_STRNE(NULL, tempRep->resourceUri);
+    }
+
+    CADestroyRemoteEndpoint(tempRep);
+}
+
+// check return value if uri is NULL
+TEST(CreateRemoteEndpointTest, TC_08_Nagative_01)
+{
+    uri = NULL;
+
+    EXPECT_EQ(CA_STATUS_FAILED, CACreateRemoteEndpoint(uri, &tempRep));
+
+    CADestroyRemoteEndpoint(tempRep);
+}
+
+// check values of remoteEndpoint if uri is NULL
+TEST(CreateRemoteEndpointTest, TC_09_Nagative_02)
+{
+    uri = NULL;
+    CACreateRemoteEndpoint(uri, &tempRep);
+
+    if (tempRep != NULL)
+    {
+        EXPECT_STREQ(NULL, tempRep->resourceUri);
+    }
+
+    CADestroyRemoteEndpoint(tempRep);
+}
+
+// CADestroyRemoteEndpoint TC
+// check destroyed remoteEndpoint
+TEST(DestroyRemoteEndpointTest, TC_10_Positive_01)
+{
+    uri = (char *) "referenceUri";
+    CACreateRemoteEndpoint(uri, &tempRep);
+
+    CADestroyRemoteEndpoint(tempRep);
+
+    char * check = (char *) "destroy success";
+    EXPECT_STREQ(check, "destroy success");
+}
+
+// CAGerateToken TC
+// check return value
+TEST(GenerateTokenTest, TC_11_Positive_01)
+{
+    EXPECT_EQ(CA_STATUS_OK, CAGenerateToken(&tempToken));
+
+    CADestroyToken(tempToken);
+}
+
+// CADestroyToken TC
+// check destroyed token
+TEST(DestroyTokenTest, TC_12_Positive_01)
+{
+    CAGenerateToken(&tempToken);
+    CADestroyToken(tempToken);
+
+    char * check = (char *) "destroy success";
+    EXPECT_STREQ(check, "destroy success");
+}
+
+// CAFindResource TC
+// check return value
+TEST(FindResourceTest, TC_13_Positive_01)
+{
+    CARegisterHandler(request_handler, response_handler);
+    uri = (char *) "referenceUri";
+    EXPECT_EQ(CA_STATUS_OK, CAFindResource(uri));
+}
+
+// check return value if uri is NULL
+TEST(FindResourceTest, TC_14_Nagative_01)
+{
+    CARegisterHandler(request_handler, response_handler);
+    uri = NULL;
+    EXPECT_EQ(CA_SEND_FAILED, CAFindResource(uri));
+}
+
+// CASendRequest TC
+// check return value
+TEST(SendRequestTest, TC_15_Positive_01)
+{
+    uri = (char *) "referenceUri";
+    memset(&requestInfo, 0, sizeof(CARequestInfo));
+    CACreateRemoteEndpoint(uri, &tempRep);
+    CAGenerateToken(&tempToken);
+    requestInfo.method = CA_GET;
+    requestInfo.info.token = tempToken;
+    requestInfo.info.payload = (char *) "request payload";
+
+    EXPECT_EQ(CA_STATUS_OK, CASendRequest(tempRep, &requestInfo));
+
+    CADestroyToken(tempToken);
+    CADestroyRemoteEndpoint(tempRep);
+}
+
+// check return value if uri is NULL
+TEST(SendRequestTest, TC_16_Nagative_01)
+{
+    uri = NULL;
+    memset(&requestInfo, 0, sizeof(CARequestInfo));
+    CACreateRemoteEndpoint(uri, &tempRep);
+    CAGenerateToken(&tempToken);
+    requestInfo.method = CA_GET;
+    requestInfo.info.token = tempToken;
+    requestInfo.info.payload = (char *) "request payload";
+
+    EXPECT_EQ(CA_SEND_FAILED, CASendRequest(tempRep, &requestInfo));
+
+    CADestroyToken(tempToken);
+    CADestroyRemoteEndpoint(tempRep);
+}
+
+// CASendResponse TC
+// check return value
+TEST(SendResponseTest, TC_17_Positive_01)
+{
+    uri = (char *) "referenceUri";
+    CACreateRemoteEndpoint(uri, &tempRep);
+
+    memset(&responseData, 0, sizeof(CAInfo));
+    CAGenerateToken(&tempToken);
+    responseData.token = tempToken;
+    responseData.payload = (char *) "response payload";
+
+    memset(&responseInfo, 0, sizeof(CAResponseInfo));
+    responseInfo.result = CA_SUCCESS;
+    responseInfo.info = responseData;
+
+    EXPECT_EQ(CA_STATUS_OK, CASendResponse(tempRep, &responseInfo));
+
+    CADestroyToken(tempToken);
+    CADestroyRemoteEndpoint(tempRep);
+}
+
+// check return value if uri is NULL
+TEST(SendResponseTest, TC_18_Nagative_01)
+{
+    uri = NULL;
+    CACreateRemoteEndpoint(uri, &tempRep);
+
+    memset(&responseData, 0, sizeof(CAInfo));
+    CAGenerateToken(&tempToken);
+    responseData.token = tempToken;
+    responseData.payload = (char *) "response payload";
+
+    memset(&responseInfo, 0, sizeof(CAResponseInfo));
+    responseInfo.result = CA_SUCCESS;
+    responseInfo.info = responseData;
+
+    EXPECT_EQ(CA_SEND_FAILED, CASendResponse(tempRep, &responseInfo));
+
+    CADestroyToken(tempToken);
+    CADestroyRemoteEndpoint(tempRep);
+}
+
+// CASendNotification TC
+// check return value
+TEST(SendNotificationTest, TC_19_Positive_01)
+{
+    uri = (char *) "referenceUri";
+    CACreateRemoteEndpoint(uri, &tempRep);
+
+    memset(&responseData, 0, sizeof(CAInfo));
+    CAGenerateToken(&tempToken);
+    responseData.token = tempToken;
+    responseData.payload = (char *) "response payload";
+
+    memset(&responseInfo, 0, sizeof(CAResponseInfo));
+    responseInfo.result = CA_SUCCESS;
+    responseInfo.info = responseData;
+
+    EXPECT_EQ(CA_NOT_SUPPORTED, CASendNotification(tempRep, &responseInfo));
+
+    CADestroyToken(tempToken);
+    CADestroyRemoteEndpoint(tempRep);
+}
+
+// check return value if uri is NULL
+TEST(SendNotificationTest, TC_20_Nagative_01)
+{
+    uri = NULL;
+    CACreateRemoteEndpoint(uri, &tempRep);
+
+    memset(&responseData, 0, sizeof(CAInfo));
+    CAGenerateToken(&tempToken);
+    responseData.token = tempToken;
+    responseData.payload = (char *) "response payload";
+
+    memset(&responseInfo, 0, sizeof(CAResponseInfo));
+    responseInfo.result = CA_SUCCESS;
+    responseInfo.info = responseData;
+
+    EXPECT_EQ(CA_NOT_SUPPORTED, CASendNotification(tempRep, &responseInfo));
+
+    CADestroyToken(tempToken);
+    CADestroyRemoteEndpoint(tempRep);
+}
+
+// CAAdvertiseResource TC
+// check return value
+TEST(AdvertiseResourceTest, TC_21_Positive_01)
+{
+    CAURI uri = (char *) "resourceUri";
+    CAHeaderOption* options = NULL;
+    uint8_t numOptions = 0;
+
+    EXPECT_EQ(CA_NOT_SUPPORTED, CAAdvertiseResource(uri, options, numOptions));
+}
+
+// check return value if token is NULL
+TEST(AdvertiseResourceTest, TC_22_Nagative_01)
+{
+    CAURI uri = NULL;
+    CAHeaderOption* options = NULL;
+    uint8_t numOptions = 0;
+
+    EXPECT_EQ(CA_NOT_SUPPORTED, CAAdvertiseResource(uri, options, numOptions));
+}
+
+// CASelectNewwork TC
+// check return value
+TEST(SelectNetworkTest, TC_23_Positive_01)
+{
+    //Select wifi network
+    EXPECT_EQ(CA_STATUS_OK, CASelectNetwork(CA_WIFI));
+}
+
+// check return value if selected network is disable
+TEST(SelectNetworkTest, TC_24_Nagative_01)
+{
+    //Select disable network
+    EXPECT_EQ(CA_NOT_SUPPORTED, CASelectNetwork(20));
+}
+
+// CAUnSelectNewwork TC
+// check return value
+TEST(UnSelectNetworkTest, TC_25_Positive_01)
+{
+    //Unselect wifi network
+    EXPECT_EQ(CA_STATUS_OK, CAUnSelectNetwork(CA_WIFI));
+}
+
+// check return value if selected network is disable
+TEST(UnSelectNetworkTest, TC_26_Nagative_01)
+{
+    //UnSelect disable network
+    EXPECT_EQ(CA_NOT_SUPPORTED, CAUnSelectNetwork(20));
+}
+
+// CAGetNetworkInfomation TC
+// check return value
+TEST (GetNetworkInfomation, TC_27_Positive_01)
+{
+    CALocalConnectivity* info = NULL;
+    uint32_t* size = NULL;
+
+    EXPECT_EQ(CA_NOT_SUPPORTED, CAGetNetworkInformation(&info, size));
+}
+
+// CAHandlerRequestResponse TC
+// check return value
+TEST (HandlerRequestResponseTest, TC_28_Positive_01)
+{
+    EXPECT_EQ(CA_STATUS_OK, CAHandleRequestResponse());
+}
+