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)
commit3e4087ca6843ea40863488458eed22b31df08983
tree6833c33efce1ecf12ff227cefb7b70573974fcf4
parenta4392b75650fc5599d48486b9571b2e2540acd19
Implementation of connectivity abstraction feature-Ubutu v0.1

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]