iotivity 0.9.0 51/36651/1 upstream/0.9.0
authorYoungman Jung <yman.jung@samsung.com>
Wed, 11 Mar 2015 09:56:00 +0000 (18:56 +0900)
committerYoungman Jung <yman.jung@samsung.com>
Wed, 11 Mar 2015 10:05:30 +0000 (19:05 +0900)
commit00b3660e45c56cb3db35dc2596a054f801b5591a
tree627be23ee7e576d0d65b36db4dfe98dfff13d652
parent6fe7f1aeb6d61997b7ba88ca0bcacc804e285ed6
iotivity 0.9.0

Change-Id: I8bfbed02fe5836bfae624e8c3ae10ec360ac827d
Signed-off-by: Youngman Jung <yman.jung@samsung.com>
1282 files changed:
.gitignore [new file with mode: 0644]
Readme.scons.txt [new file with mode: 0644]
SConstruct [new file with mode: 0644]
android/Base/app/build.gradle [new file with mode: 0644]
android/Base/app/jni/Android.mk [new file with mode: 0644]
android/Base/app/jni/Application.mk [new file with mode: 0644]
android/Base/app/jni/ocheaderoption-jni.cpp [new file with mode: 0644]
android/Base/app/jni/ocplatform-jni.cpp [new file with mode: 0644]
android/Base/app/jni/ocrepresentation-jni.cpp [new file with mode: 0644]
android/Base/app/jni/ocresource-jni.cpp [new file with mode: 0644]
android/Base/app/jni/ocstack-jni.cpp [new file with mode: 0644]
android/Base/app/jni/ocstack-jni.h [new file with mode: 0644]
android/Base/app/jni/platformcfg-jni.cpp [new file with mode: 0644]
android/Base/app/proguard-rules.pro [new file with mode: 0644]
android/Base/app/src/androidTest/java/org/iotivity/base/ApplicationTest.java [new file with mode: 0644]
android/Base/app/src/main/AndroidManifest.xml [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/AbstractDeleteCallback.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/AbstractFindCallback.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/AbstractGetCallback.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/AbstractObserveCallback.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/AbstractPostCallback.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/AbstractPutCallback.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/AbstractSubscriberCallback.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/EntityHandler.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/NativeInstance.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/OCHeaderOption.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/OCPlatform.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/OCRepresentation.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/OCResource.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/OCResourceRequest.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/OCResourceResponse.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/OCStackResult.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/ObserveType.java [new file with mode: 0644]
android/Base/app/src/main/java/org/iotivity/base/PlatformConfig.java [new file with mode: 0755]
android/Base/app/src/main/res/drawable-hdpi/ic_launcher.png [new file with mode: 0644]
android/Base/app/src/main/res/drawable-mdpi/ic_launcher.png [new file with mode: 0644]
android/Base/app/src/main/res/drawable-xhdpi/ic_launcher.png [new file with mode: 0644]
android/Base/app/src/main/res/drawable-xxhdpi/ic_launcher.png [new file with mode: 0644]
android/Base/app/src/main/res/values/strings.xml [new file with mode: 0644]
android/Base/app/src/main/res/values/styles.xml [new file with mode: 0644]
android/Base/build.gradle [new file with mode: 0644]
android/Base/gradle.properties [new file with mode: 0644]
android/Base/gradlew [new file with mode: 0755]
android/Base/gradlew.bat [new file with mode: 0644]
android/Base/settings.gradle [new file with mode: 0644]
android/SimpleClient/app/build.gradle [new file with mode: 0644]
android/SimpleClient/app/proguard-rules.pro [new file with mode: 0644]
android/SimpleClient/app/src/androidTest/java/org/iotivity/simpleclient/ApplicationTest.java [new file with mode: 0644]
android/SimpleClient/app/src/main/AndroidManifest.xml [new file with mode: 0644]
android/SimpleClient/app/src/main/java/org/iotivity/simpleclient/FoundResource.java [new file with mode: 0644]
android/SimpleClient/app/src/main/java/org/iotivity/simpleclient/OnGet.java [new file with mode: 0644]
android/SimpleClient/app/src/main/java/org/iotivity/simpleclient/OnObserve.java [new file with mode: 0644]
android/SimpleClient/app/src/main/java/org/iotivity/simpleclient/OnPost.java [new file with mode: 0644]
android/SimpleClient/app/src/main/java/org/iotivity/simpleclient/OnPost2.java [new file with mode: 0644]
android/SimpleClient/app/src/main/java/org/iotivity/simpleclient/OnPut.java [new file with mode: 0644]
android/SimpleClient/app/src/main/java/org/iotivity/simpleclient/SimpleClient.java [new file with mode: 0644]
android/SimpleClient/app/src/main/java/org/iotivity/simpleclient/SimpleToast.java [new file with mode: 0644]
android/SimpleClient/app/src/main/res/drawable-hdpi/ic_launcher.png [new file with mode: 0644]
android/SimpleClient/app/src/main/res/drawable-mdpi/ic_launcher.png [new file with mode: 0644]
android/SimpleClient/app/src/main/res/drawable-xhdpi/ic_launcher.png [new file with mode: 0644]
android/SimpleClient/app/src/main/res/drawable-xxhdpi/ic_launcher.png [new file with mode: 0644]
android/SimpleClient/app/src/main/res/layout/activity_simple_client.xml [new file with mode: 0644]
android/SimpleClient/app/src/main/res/menu/simple_client.xml [new file with mode: 0644]
android/SimpleClient/app/src/main/res/values-w820dp/dimens.xml [new file with mode: 0644]
android/SimpleClient/app/src/main/res/values/dimens.xml [new file with mode: 0644]
android/SimpleClient/app/src/main/res/values/strings.xml [new file with mode: 0644]
android/SimpleClient/app/src/main/res/values/styles.xml [new file with mode: 0644]
android/SimpleClient/build.gradle [new file with mode: 0644]
android/SimpleClient/gradle.properties [new file with mode: 0644]
android/SimpleClient/gradlew [new file with mode: 0755]
android/SimpleClient/gradlew.bat [new file with mode: 0644]
android/SimpleClient/settings.gradle [new file with mode: 0644]
arduino.scons [new file with mode: 0644]
auto_build.sh [new file with mode: 0755]
build_common/SConscript [new file with mode: 0644]
build_common/android/SConscript [new file with mode: 0644]
build_common/android/compatibility/android_cpp11_compat.cpp [new file with mode: 0644]
build_common/android/compatibility/android_cpp11_compat.h [new file with mode: 0644]
build_common/android/compatibility/c_compat.c [new file with mode: 0644]
build_common/android/compatibility/c_compat.scons [new file with mode: 0644]
build_common/android/compatibility/cpp11_compat.scons [new file with mode: 0644]
build_common/android/jni/Android.mk [new file with mode: 0644]
build_common/arduino/SConscript [new file with mode: 0644]
build_common/darwin/SConscript [new file with mode: 0644]
build_common/ios/SConscript [new file with mode: 0644]
build_common/linux/SConscript [new file with mode: 0644]
build_common/windows/SConscript [new file with mode: 0644]
examples/OICMiddle/Client.cpp [new file with mode: 0644]
examples/OICMiddle/Client.h [new file with mode: 0644]
examples/OICMiddle/LineInput.cpp [new file with mode: 0644]
examples/OICMiddle/LineInput.h [new file with mode: 0644]
examples/OICMiddle/OICMiddle.cpp [new file with mode: 0644]
examples/OICMiddle/OICMiddle.h [new file with mode: 0644]
examples/OICMiddle/README [new file with mode: 0644]
examples/OICMiddle/RestInput.cpp [new file with mode: 0644]
examples/OICMiddle/RestInput.h [new file with mode: 0644]
examples/OICMiddle/SConstruct [new file with mode: 0644]
examples/OICMiddle/Server.cpp [new file with mode: 0644]
examples/OICMiddle/Server.h [new file with mode: 0644]
examples/OICMiddle/WrapResource.cpp [new file with mode: 0644]
examples/OICMiddle/WrapResource.h [new file with mode: 0644]
examples/OICMiddle/makefile [new file with mode: 0644]
examples/OICSensorBoard/OICSensorBoardREADME.pdf [new file with mode: 0644]
examples/OICSensorBoard/SConstruct [new file with mode: 0644]
examples/OICSensorBoard/client.cpp [new file with mode: 0644]
examples/OICSensorBoard/client.h [new file with mode: 0644]
examples/OICSensorBoard/namedefs.h [new file with mode: 0644]
examples/OICSensorBoard/observer.cpp [new file with mode: 0644]
examples/OICSensorBoard/observer.h [new file with mode: 0644]
examples/OICSensorBoard/sensors.h [new file with mode: 0644]
examples/OICSensorBoard/server.cpp [new file with mode: 0644]
examples/OICSensorBoard/server.h [new file with mode: 0644]
extlibs/buildDependencies.sh [new file with mode: 0755]
extlibs/cjson/cJSON.c [new file with mode: 0644]
extlibs/cjson/cJSON.h [new file with mode: 0644]
extra_options.scons [new file with mode: 0644]
resource/README.setup.txt [new file with mode: 0644]
resource/SConscript [new file with mode: 0644]
resource/android/OCAndroid.cpp [new file with mode: 0644]
resource/android/SConscript [new file with mode: 0644]
resource/artifact_output_locations.txt [new file with mode: 0644]
resource/buildScript.mk [new file with mode: 0644]
resource/csdk/README [new file with mode: 0644]
resource/csdk/SConscript [new file with mode: 0644]
resource/csdk/arduinodue.properties [new file with mode: 0644]
resource/csdk/arduinomega.properties [new file with mode: 0644]
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.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]
resource/csdk/doc/CCF Lite GIT Repo Layout.docx [new file with mode: 0644]
resource/csdk/libcoap [new symlink]
resource/csdk/libcoap-4.1.1/ChangeLog [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/LICENSE.BSD [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/LICENSE.GPL [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/Makefile.in [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/README [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/SConscript [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/address.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/async.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/async.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/bits.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/block.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/block.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/coap.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/coap_list.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/coap_list.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/coap_time.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/config.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/config.h.in [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/configure [new file with mode: 0755]
resource/csdk/libcoap-4.1.1/configure.in [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/debug.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/debug.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/doc/Doxyfile [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/doc/Doxyfile.in [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/doc/Makefile.in [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/doc/makefile [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/encode.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/encode.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/examples/client.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/examples/makefile [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/examples/rd.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/examples/server.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/examples/tiny.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/hashkey.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/hashkey.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/makefile [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/mem.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/net.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/net.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/option.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/option.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/pdu.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/pdu.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/prng.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/resource.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/resource.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/sec/netdtls.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/sec/netdtls.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/str.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/str.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/subscribe.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/subscribe.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/t_list.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/uri.c [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/uri.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/uthash.h [new file with mode: 0644]
resource/csdk/libcoap-4.1.1/utlist.h [new file with mode: 0644]
resource/csdk/logger/README [new file with mode: 0644]
resource/csdk/logger/include/logger.h [new file with mode: 0644]
resource/csdk/logger/makefile [new file with mode: 0644]
resource/csdk/logger/src/logger.c [new file with mode: 0644]
resource/csdk/logger/test/android/README [new file with mode: 0644]
resource/csdk/logger/test/android/androidloggertestoutput.txt [new file with mode: 0644]
resource/csdk/logger/test/android/loggertests.cpp [new file with mode: 0644]
resource/csdk/logger/test/arduino/ArduinoLoggerTest.cpp [new file with mode: 0644]
resource/csdk/logger/test/arduino/ArduinoLoggerTest.h [new file with mode: 0644]
resource/csdk/logger/test/arduino/README [new file with mode: 0644]
resource/csdk/logger/test/arduino/arduinologgertestoutput.txt [new file with mode: 0644]
resource/csdk/logger/test/loggertests.cpp [new file with mode: 0644]
resource/csdk/logger/test/std_logbuffer.txt [new file with mode: 0644]
resource/csdk/logger/test/std_stringarg.txt [new file with mode: 0644]
resource/csdk/logger/test/std_stringarglevels.txt [new file with mode: 0644]
resource/csdk/logger/test/std_stringargmultiline.txt [new file with mode: 0644]
resource/csdk/logger/test/std_stringargnologstr.txt [new file with mode: 0644]
resource/csdk/logger/test/std_stringargnotag.txt [new file with mode: 0644]
resource/csdk/logger/test/std_stringargnotagnologstr.txt [new file with mode: 0644]
resource/csdk/logger/test/std_variablearg.txt [new file with mode: 0644]
resource/csdk/makefile [new file with mode: 0644]
resource/csdk/occoap/README.txt [new file with mode: 0644]
resource/csdk/occoap/include/occoap.h [new file with mode: 0644]
resource/csdk/occoap/include/occoaphelper.h [new file with mode: 0644]
resource/csdk/occoap/include/occoaptoken.h [new file with mode: 0644]
resource/csdk/occoap/makefile [new file with mode: 0644]
resource/csdk/occoap/src/occoap.c [new file with mode: 0644]
resource/csdk/occoap/src/occoaphelper.c [new file with mode: 0644]
resource/csdk/occoap/test/occoaptests.cpp [new file with mode: 0644]
resource/csdk/ocmalloc/include/ocmalloc.h [new file with mode: 0644]
resource/csdk/ocmalloc/src/ocmalloc.c [new file with mode: 0644]
resource/csdk/ocmalloc/test/linux/README [new file with mode: 0644]
resource/csdk/ocmalloc/test/linux/makefile [new file with mode: 0644]
resource/csdk/ocmalloc/test/linux/unittest.cpp [new file with mode: 0644]
resource/csdk/ocrandom/include/ocrandom.h [new file with mode: 0644]
resource/csdk/ocrandom/src/ocrandom.c [new file with mode: 0644]
resource/csdk/ocrandom/test/android/makefile [new file with mode: 0644]
resource/csdk/ocrandom/test/android/randomtest.cpp [new file with mode: 0644]
resource/csdk/ocrandom/test/arduino/makefile [new file with mode: 0644]
resource/csdk/ocrandom/test/arduino/randomtest.cpp [new file with mode: 0644]
resource/csdk/ocrandom/test/linux/makefile [new file with mode: 0644]
resource/csdk/ocrandom/test/linux/randomtest.cpp [new file with mode: 0644]
resource/csdk/ocsocket/README.txt [new file with mode: 0644]
resource/csdk/ocsocket/include/ocsocket.h [new file with mode: 0644]
resource/csdk/ocsocket/src/ocsocket.c [new file with mode: 0644]
resource/csdk/ocsocket/src/ocsocket_arduino.cpp [new file with mode: 0644]
resource/csdk/ocsocket/src/ocsocket_arduino_wifi.cpp [new file with mode: 0644]
resource/csdk/ocsocket/test/android/makefile [new file with mode: 0644]
resource/csdk/ocsocket/test/android/ocsocket_gtest.cpp [new file with mode: 0644]
resource/csdk/ocsocket/test/arduino/makefile [new file with mode: 0644]
resource/csdk/ocsocket/test/arduino/ocsocket_test.cpp [new file with mode: 0644]
resource/csdk/ocsocket/test/arduino/ocsocket_wifi_test.cpp [new file with mode: 0644]
resource/csdk/ocsocket/test/linux/makefile [new file with mode: 0644]
resource/csdk/ocsocket/test/linux/ocsocket_gtest.cpp [new file with mode: 0644]
resource/csdk/ocsocket/test/makefile [new file with mode: 0644]
resource/csdk/ocsocket/test/sendrecv.cpp [new file with mode: 0644]
resource/csdk/ocsocket/test/sendrecv_README.txt [new file with mode: 0644]
resource/csdk/stack/README [new file with mode: 0644]
resource/csdk/stack/include/internal/occlientcb.h [new file with mode: 0644]
resource/csdk/stack/include/internal/occollection.h [new file with mode: 0644]
resource/csdk/stack/include/internal/ocobserve.h [new file with mode: 0644]
resource/csdk/stack/include/internal/ocresource.h [new file with mode: 0644]
resource/csdk/stack/include/internal/ocresourcehandler.h [new file with mode: 0644]
resource/csdk/stack/include/internal/ocserverrequest.h [new file with mode: 0644]
resource/csdk/stack/include/internal/ocstackinternal.h [new file with mode: 0644]
resource/csdk/stack/include/internal/oicgroup.h [new file with mode: 0644]
resource/csdk/stack/include/ocsecurity.h [new file with mode: 0644]
resource/csdk/stack/include/ocsecurityconfig.h [new file with mode: 0644]
resource/csdk/stack/include/ocstack.h [new file with mode: 0644]
resource/csdk/stack/include/ocstackconfig.h [new file with mode: 0644]
resource/csdk/stack/samples/arduino/SimpleClientServer/README [new file with mode: 0644]
resource/csdk/stack/samples/arduino/SimpleClientServer/makefile [new file with mode: 0644]
resource/csdk/stack/samples/arduino/SimpleClientServer/ocserver/README [new file with mode: 0644]
resource/csdk/stack/samples/arduino/SimpleClientServer/ocserver/SConscript [new file with mode: 0644]
resource/csdk/stack/samples/arduino/SimpleClientServer/ocserver/makefile [new file with mode: 0644]
resource/csdk/stack/samples/arduino/SimpleClientServer/ocserver/ocserver.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/common.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/makefile [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/occlient.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/occlient.h [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/occlientbasicops.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/occlientbasicops.h [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/occlientcoll.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/occlientslow.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/occlientslow.h [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/ocserver.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/ocserver.h [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/ocserverbasicops.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/ocserverbasicops.h [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/ocservercoll.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/ocserverslow.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/SimpleClientServer/ocserverslow.h [new file with mode: 0644]
resource/csdk/stack/samples/linux/secure/common.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/secure/common.h [new file with mode: 0644]
resource/csdk/stack/samples/linux/secure/gen_sec_bin.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/secure/makefile [new file with mode: 0644]
resource/csdk/stack/samples/linux/secure/occlientbasicops.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/secure/occlientbasicops.h [new file with mode: 0644]
resource/csdk/stack/samples/linux/secure/ocserverbasicops.cpp [new file with mode: 0644]
resource/csdk/stack/samples/linux/secure/ocserverbasicops.h [new file with mode: 0644]
resource/csdk/stack/src/occlientcb.c [new file with mode: 0644]
resource/csdk/stack/src/occollection.c [new file with mode: 0644]
resource/csdk/stack/src/ocobserve.c [new file with mode: 0644]
resource/csdk/stack/src/ocresource.c [new file with mode: 0644]
resource/csdk/stack/src/ocsecurity.c [new file with mode: 0644]
resource/csdk/stack/src/ocserverrequest.c [new file with mode: 0644]
resource/csdk/stack/src/ocstack.c [new file with mode: 0644]
resource/csdk/stack/src/oicgroup.c [new file with mode: 0644]
resource/csdk/stack/test/README [new file with mode: 0644]
resource/csdk/stack/test/android/README [new file with mode: 0644]
resource/csdk/stack/test/android/stacktests.cpp [new file with mode: 0644]
resource/csdk/stack/test/arduino/ArduinoStackTest.cpp [new file with mode: 0644]
resource/csdk/stack/test/arduino/ArduinoStackTest.h [new file with mode: 0644]
resource/csdk/stack/test/arduino/README [new file with mode: 0644]
resource/csdk/stack/test/arduino/makefile [new file with mode: 0644]
resource/csdk/stack/test/arduino/ocserver.cpp [new file with mode: 0644]
resource/csdk/stack/test/linux/makefile [new file with mode: 0644]
resource/csdk/stack/test/linux/occlient.c [new file with mode: 0644]
resource/csdk/stack/test/linux/ocserver.c [new file with mode: 0644]
resource/csdk/stack/test/makefile [new file with mode: 0644]
resource/csdk/stack/test/stacktests.cpp [new file with mode: 0644]
resource/docs/Doxyfile [new file with mode: 0644]
resource/docs/doxygenLayout.xml [new file with mode: 0644]
resource/docs/guides/AboutOIC.txt [new file with mode: 0644]
resource/docs/guides/Home.txt [new file with mode: 0644]
resource/docs/guides/HowToGuidesIndex.txt [new file with mode: 0644]
resource/docs/guides/ProgrammersGuide.txt [new file with mode: 0644]
resource/docs/html/footer.html [new file with mode: 0644]
resource/docs/img/seq_find_resource.png [new file with mode: 0644]
resource/docs/img/seq_find_resource_2.png [new file with mode: 0644]
resource/docs/img/seq_find_resource_3.png [new file with mode: 0644]
resource/docs/img/seq_find_resource_4.png [new file with mode: 0644]
resource/docs/img/seq_get.png [new file with mode: 0644]
resource/docs/img/seq_observe.png [new file with mode: 0644]
resource/docs/img/seq_put.png [new file with mode: 0644]
resource/docs/img/seq_register_resource.png [new file with mode: 0644]
resource/docs/img/seq_register_resource_2.png [new file with mode: 0644]
resource/docs/img/seq_stack_init.png [new file with mode: 0644]
resource/docs/img/stack_diagram.png [new file with mode: 0644]
resource/examples/SConscript [new file with mode: 0644]
resource/examples/devicediscoveryclient.cpp [new file with mode: 0644]
resource/examples/devicediscoveryserver.cpp [new file with mode: 0644]
resource/examples/fridgeclient.cpp [new file with mode: 0644]
resource/examples/fridgeserver.cpp [new file with mode: 0644]
resource/examples/garageclient.cpp [new file with mode: 0644]
resource/examples/garageserver.cpp [new file with mode: 0644]
resource/examples/groupclient.cpp [new file with mode: 0755]
resource/examples/groupserver.cpp [new file with mode: 0755]
resource/examples/lightserver.cpp [new file with mode: 0755]
resource/examples/makefile [new file with mode: 0755]
resource/examples/ocicuc/.gitignore [new file with mode: 0644]
resource/examples/ocicuc/Makefile [new file with mode: 0644]
resource/examples/ocicuc/README [new file with mode: 0644]
resource/examples/ocicuc/SConscript [new file with mode: 0644]
resource/examples/ocicuc/client.cpp [new file with mode: 0644]
resource/examples/ocicuc/demo_client.hpp [new file with mode: 0644]
resource/examples/ocicuc/driver.cpp [new file with mode: 0644]
resource/examples/ocicuc/exec.hpp [new file with mode: 0644]
resource/examples/ocicuc/light_resource.cpp [new file with mode: 0644]
resource/examples/ocicuc/light_resource.hpp [new file with mode: 0644]
resource/examples/ocicuc/monoprocess.cpp [new file with mode: 0644]
resource/examples/ocicuc/server.cpp [new file with mode: 0644]
resource/examples/ocicuc/small_example.cpp [new file with mode: 0644]
resource/examples/ocicuc/utility.cpp [new file with mode: 0644]
resource/examples/ocicuc/utility.hpp [new file with mode: 0644]
resource/examples/old_tests/MyMultiResourceHandler.cpp [new file with mode: 0644]
resource/examples/old_tests/MyMultiResourceHandler.h [new file with mode: 0644]
resource/examples/old_tests/MyObserverHandler.cpp [new file with mode: 0644]
resource/examples/old_tests/MyObserverHandler.h [new file with mode: 0644]
resource/examples/old_tests/MyResourceHandler.cpp [new file with mode: 0644]
resource/examples/old_tests/MyResourceHandler.h [new file with mode: 0644]
resource/examples/old_tests/OCWrapper/makefile [new file with mode: 0644]
resource/examples/old_tests/OCWrapper/parsetest.cpp [new file with mode: 0644]
resource/examples/old_tests/OCWrapper/testClient.cpp [new file with mode: 0644]
resource/examples/old_tests/OCWrapper/testServer.cpp [new file with mode: 0644]
resource/examples/old_tests/OCWrapper/testServerApp.cpp [new file with mode: 0644]
resource/examples/old_tests/multiple_resources.cpp [new file with mode: 0644]
resource/examples/presenceclient.cpp [new file with mode: 0644]
resource/examples/presenceserver.cpp [new file with mode: 0644]
resource/examples/roomclient.cpp [new file with mode: 0644]
resource/examples/roomserver.cpp [new file with mode: 0644]
resource/examples/simpleclient.cpp [new file with mode: 0644]
resource/examples/simpleclientHQ.cpp [new file with mode: 0644]
resource/examples/simpleclientserver.cpp [new file with mode: 0644]
resource/examples/simpleserver.cpp [new file with mode: 0644]
resource/examples/simpleserverHQ.cpp [new file with mode: 0644]
resource/examples/threadingsample.cpp [new file with mode: 0644]
resource/include/AttributeValue.h [new file with mode: 0644]
resource/include/IClientWrapper.h [new file with mode: 0644]
resource/include/IServerWrapper.h [new file with mode: 0644]
resource/include/InProcClientWrapper.h [new file with mode: 0644]
resource/include/InProcServerWrapper.h [new file with mode: 0644]
resource/include/InitializeException.h [new file with mode: 0644]
resource/include/OCAndroid.h [new file with mode: 0644]
resource/include/OCApi.h [new file with mode: 0644]
resource/include/OCException.h [new file with mode: 0644]
resource/include/OCHeaderOption.h [new file with mode: 0644]
resource/include/OCPlatform.h [new file with mode: 0644]
resource/include/OCPlatform_impl.h [new file with mode: 0644]
resource/include/OCRepresentation.h [new file with mode: 0644]
resource/include/OCResource.h [new file with mode: 0644]
resource/include/OCResourceRequest.h [new file with mode: 0644]
resource/include/OCResourceResponse.h [new file with mode: 0644]
resource/include/OCSecurityModel.h [new file with mode: 0644]
resource/include/OCSerialization.h [new file with mode: 0644]
resource/include/OCUtilities.h [new file with mode: 0644]
resource/include/OicJsonSerializer.hpp [new file with mode: 0644]
resource/include/OutOfProcClientWrapper.h [new file with mode: 0644]
resource/include/OutOfProcServerWrapper.h [new file with mode: 0644]
resource/include/ResourceInitException.h [new file with mode: 0644]
resource/include/StringConstants.h [new file with mode: 0644]
resource/include/WrapperFactory.h [new file with mode: 0644]
resource/makefile [new file with mode: 0644]
resource/oc_logger/Makefile [new file with mode: 0644]
resource/oc_logger/SConscript [new file with mode: 0644]
resource/oc_logger/c/Makefile [new file with mode: 0644]
resource/oc_logger/c/oc_console_logger.c [new file with mode: 0644]
resource/oc_logger/c/oc_logger.c [new file with mode: 0644]
resource/oc_logger/cpp/Makefile [new file with mode: 0644]
resource/oc_logger/cpp/oc_ostream_logger.cpp [new file with mode: 0644]
resource/oc_logger/examples/Makefile [new file with mode: 0644]
resource/oc_logger/examples/SConscript [new file with mode: 0644]
resource/oc_logger/examples/test_logging.c [new file with mode: 0644]
resource/oc_logger/examples/test_logging.cpp [new file with mode: 0644]
resource/oc_logger/include/oc_console_logger.h [new file with mode: 0644]
resource/oc_logger/include/oc_log.hpp [new file with mode: 0644]
resource/oc_logger/include/oc_log_stream.hpp [new file with mode: 0644]
resource/oc_logger/include/oc_logger.h [new file with mode: 0644]
resource/oc_logger/include/oc_logger.hpp [new file with mode: 0644]
resource/oc_logger/include/oc_logger_types.h [new file with mode: 0644]
resource/oc_logger/include/targets/oc_console_logger.h [new file with mode: 0644]
resource/oc_logger/include/targets/oc_ostream_logger.h [new file with mode: 0644]
resource/oc_logger/samples/linux/README [new file with mode: 0644]
resource/oc_logger/samples/linux/makefile [new file with mode: 0644]
resource/oc_logger/samples/linux/test_logging.c [new file with mode: 0644]
resource/oc_logger/test/test_logging.cpp [new file with mode: 0644]
resource/patches/boost/arm-linux-androideabi/user-config.jam [new file with mode: 0644]
resource/patches/boost/x86/user-config.jam [new file with mode: 0644]
resource/patches/cereal_gcc46.patch [new file with mode: 0644]
resource/releaseNotes/Aug5th2014.txt [new file with mode: 0644]
resource/releaseNotes/Dec20th2014.txt [new file with mode: 0644]
resource/releaseNotes/Dec6th2014.txt [new file with mode: 0644]
resource/releaseNotes/Nov15th2014.txt [new file with mode: 0644]
resource/releaseNotes/Oct14th2014.txt [new file with mode: 0644]
resource/releaseNotes/Oct31st2014.txt [new file with mode: 0644]
resource/releaseNotes/Sept17th2014.txt [new file with mode: 0644]
resource/releaseNotes/Sept2nd2014.txt [new file with mode: 0644]
resource/releaseNotes/Sept30th2014.txt [new file with mode: 0644]
resource/src/InProcClientWrapper.cpp [new file with mode: 0644]
resource/src/InProcServerWrapper.cpp [new file with mode: 0644]
resource/src/OCApi.cpp [new file with mode: 0644]
resource/src/OCException.cpp [new file with mode: 0644]
resource/src/OCPlatform.cpp [new file with mode: 0644]
resource/src/OCPlatform_impl.cpp [new file with mode: 0644]
resource/src/OCRepresentation.cpp [new file with mode: 0644]
resource/src/OCResource.cpp [new file with mode: 0644]
resource/src/OCSecurityModel.cpp [new file with mode: 0644]
resource/src/OCUtilities.cpp [new file with mode: 0644]
resource/src/SConscript [new file with mode: 0644]
resource/third_party_libs.scons [new file with mode: 0644]
resource/unittests/README [new file with mode: 0644]
resource/unittests/makefile [new file with mode: 0644]
resource/unittests/tests.cpp [new file with mode: 0644]
scons_script_how_to.txt [new file with mode: 0644]
service/SConscript [new file with mode: 0644]
service/docs/Control Manager-Programmer's guide_v0.9.0.pdf [new file with mode: 0644]
service/docs/PPM - Programmer's Guide_v0.9.0.pdf [new file with mode: 0644]
service/docs/SSM - Programmer's guide_v0.9.0.pdf [new file with mode: 0644]
service/docs/Things Manager - Programmer's guide_v0.9.0.pdf [new file with mode: 0644]
service/notification-manager/.gitignore [new file with mode: 0644]
service/notification-manager/NotificationManager/build/linux/.gitignore [new file with mode: 0644]
service/notification-manager/NotificationManager/build/linux/Makefile [new file with mode: 0644]
service/notification-manager/NotificationManager/include/HostingConfig.h [new file with mode: 0644]
service/notification-manager/NotificationManager/include/HostingHandler.h [new file with mode: 0644]
service/notification-manager/NotificationManager/include/HostingInterface.h [new file with mode: 0644]
service/notification-manager/NotificationManager/include/NotificationManager.h [new file with mode: 0644]
service/notification-manager/NotificationManager/include/OICPlatformConfig.h [new file with mode: 0644]
service/notification-manager/NotificationManager/include/RegistrationManager.h [new file with mode: 0644]
service/notification-manager/NotificationManager/include/ResourceManager.h [new file with mode: 0644]
service/notification-manager/NotificationManager/include/VirtualRepresentation.h [new file with mode: 0644]
service/notification-manager/NotificationManager/src/HostingHandler.cpp [new file with mode: 0644]
service/notification-manager/NotificationManager/src/HostingInterface.cpp [new file with mode: 0644]
service/notification-manager/NotificationManager/src/NotificationManager.cpp [new file with mode: 0644]
service/notification-manager/NotificationManager/src/OICPlatformConfig.cpp [new file with mode: 0644]
service/notification-manager/NotificationManager/src/RegistrationManager.cpp [new file with mode: 0644]
service/notification-manager/NotificationManager/src/ResourceManager.cpp [new file with mode: 0644]
service/notification-manager/NotificationManager/src/VirtualRepresentation.cpp [new file with mode: 0644]
service/notification-manager/NotificationManager/src/linux/main.cpp [new file with mode: 0644]
service/notification-manager/SConscript [new file with mode: 0644]
service/notification-manager/SampleApp/SConscript [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/SConscript [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/DateStrings.cpp [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/Readme.txt [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/Time.cpp [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/Time.h [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/Processing/SyncArduinoClock/SyncArduinoClock.pde [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/Processing/SyncArduinoClock/readme.txt [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/TimeArduinoDue/TimeArduinoDue.ino [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/TimeGPS/TimeGPS.ino [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/TimeNTP/TimeNTP.ino [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/TimeRTC/TimeRTC.pde [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/TimeRTCLog/TimeRTCLog.pde [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/TimeRTCSet/TimeRTCSet.ino [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/TimeSerial/TimeSerial.ino [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/TimeSerialDateStrings/TimeSerialDateStrings.ino [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/examples/TimeTeensy3/TimeTeensy3.ino [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/Time/keywords.txt [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/local.properties [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/makefile [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/readme.txt [new file with mode: 0644]
service/notification-manager/SampleApp/arduino/thserver.cpp [new file with mode: 0644]
service/notification-manager/SampleApp/linux/SConscript [new file with mode: 0644]
service/notification-manager/SampleApp/linux/sampleConsumer/SampleConsumer.cpp [new file with mode: 0644]
service/notification-manager/SampleApp/linux/sampleProvider/SampleProvider.cpp [new file with mode: 0644]
service/notification-manager/SampleApp/tizen/sampleConsumer/src/oicapp-client.cpp [new file with mode: 0644]
service/notification-manager/SampleApp/tizen/sampleConsumer/src/oicapp-log.h [new file with mode: 0644]
service/notification-manager/SampleApp/tizen/sampleConsumer/src/oicapp-sampleConsumer.c [new file with mode: 0644]
service/notification-manager/SampleApp/tizen/sampleConsumer/src/oicapp-sampleConsumer.h [new file with mode: 0644]
service/notification-manager/SampleApp/tizen/sampleConsumer/src/oicapp-utils.c [new file with mode: 0644]
service/notification-manager/SampleApp/tizen/sampleConsumer/src/oicapp-utils.h [new file with mode: 0644]
service/notification-manager/build/linux/makefile/Makefile [new file with mode: 0644]
service/notification-manager/build/linux/release/.gitignore [new file with mode: 0644]
service/notification-manager/build/tizen/CMakeLists.txt [new file with mode: 0644]
service/protocol-plugin/.gitignore [new file with mode: 0644]
service/protocol-plugin/SConscript [new file with mode: 0644]
service/protocol-plugin/build/linux/Makefile [new file with mode: 0644]
service/protocol-plugin/build/tizen/CMakeLists.txt [new file with mode: 0644]
service/protocol-plugin/config.mk [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/COPYRIGHT.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/ChangeLog.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/INSTALL.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/Issues.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/Roadmap.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/SConscript [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/auxliary/config.guess [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/auxliary/config.rpath [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/auxliary/config.sub [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/auxliary/depcomp [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/auxliary/install-sh [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/auxliary/ltmain.sh [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/auxliary/missing [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/configure.ac [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/console/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/console/cmdinput_basic.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/console/cmdinput_readline.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/console/console.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/console/console.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/common_style.css [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/copyright.en.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/cpluff_style.css [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/img/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/img/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/img/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/img/architecture.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/img/architecture.svg [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/img/pageborder.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/index.en.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/annotated.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/architecture.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/architecture.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cMainProgram.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cpluff_8h-source.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cpluff_8h.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cpluff_8h__incl.map [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cpluff_8h__incl.md5 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cpluff_8h__incl.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cpluffdef_8h-source.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cpluffdef_8h.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cpluffdef_8h__dep__incl.map [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cpluffdef_8h__dep__incl.md5 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/cpluffdef_8h__dep__incl.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/doxygen.css [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/doxygen.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/files.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/functions.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/functions_vars.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/globals.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/globals_eval.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/globals_func.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/globals_type.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/graph_legend.dot [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/graph_legend.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/graph_legend.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cDefines.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cDefinesGCCAttributes.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cEnums.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cFuncs.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cFuncsContext.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cFuncsFrameworkInfo.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cFuncsInit.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cFuncsLogging.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cFuncsPlugin.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cFuncsPluginExec.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cFuncsPluginInfo.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cFuncsSymbols.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cScanFlags.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cStructs.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cTypedefs.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cTypedefsFuncs.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cTypedefsOpaque.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__cTypedefsShorthand.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__symbolVisibility.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/group__versionInfo.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/index.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/inline_dotgraph_1.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/modules.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/pages.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/plugin.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__cfg__element__t.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__cfg__element__t__coll__graph.map [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__cfg__element__t__coll__graph.md5 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__cfg__element__t__coll__graph.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__ext__point__t.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__ext__point__t__coll__graph.map [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__ext__point__t__coll__graph.md5 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__ext__point__t__coll__graph.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__extension__t.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__extension__t__coll__graph.map [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__extension__t__coll__graph.md5 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__extension__t__coll__graph.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__plugin__import__t.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__plugin__info__t.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__plugin__info__t__coll__graph.map [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__plugin__info__t__coll__graph.md5 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__plugin__info__t__coll__graph.png [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/structcp__plugin__runtime__t.html [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/tab_b.gif [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/tab_l.gif [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/tab_r.gif [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/doc/reference/c-api/tabs.css [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/docsrc/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/docsrc/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/docsrc/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/docsrc/doxygen.css [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/docsrc/doxygen.footer [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/COPYRIGHT.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/INSTALL.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/Makefile.nmake [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/autogen.sh [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/common.nmake [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/configure.ac [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/Makefile.nmake [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/README.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/cpfile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/cpfile.bat [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/cpfile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/Makefile.nmake [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/cext/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/cext/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/cext/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/cext/Makefile.nmake [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/cext/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/core/.deps/core.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/core/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/core/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/core/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/core/Makefile.nmake [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/core/classifiers.xsd [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/core/core.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/core/core.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/core/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/extension/.deps/extension.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/extension/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/extension/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/extension/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/extension/Makefile.nmake [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/extension/extension.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/extension/file_types.xsd [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/extension/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/special/.deps/special.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/special/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/special/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/special/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/special/Makefile.nmake [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/special/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/cpfile/plugins/special/special.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/examples/nmakedir.bat [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/kazlib/hash.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/kazlib/hash.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/kazlib/list.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/kazlib/list.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/context.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/cpluff.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/hash.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/list.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/logging.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/pcontrol.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/pinfo.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/ploader.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/pscan.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/psymbol.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/serial.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/thread_posix.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/thread_windows.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/.deps/util.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/context.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/cpluff.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/cpluff.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/cpluffdef.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/cpluffdef.h.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/defines.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/Doxyfile-impl [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/Doxyfile-impl.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/Doxyfile-ref [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/Doxyfile-ref.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/architecture.dox [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/mainpage.dox [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/mainprog.dox [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/docsrc/plugin.dox [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/internal.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/internal.h.gch [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/logging.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/pcontrol.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/pinfo.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/ploader.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/pscan.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/psymbol.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/serial.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/thread.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/thread_posix.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/thread_windows.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/util.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/libcpluff/util.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/loader/.deps/loader.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/loader/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/loader/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/loader/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/loader/loader.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/m4/gettext.m4 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/m4/iconv.m4 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/m4/lib-ld.m4 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/m4/lib-link.m4 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/m4/lib-prefix.m4 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/m4/nls.m4 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/m4/po.m4 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/m4/progtest.m4 [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/plugin.xsd [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/LINGUAS [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/Makefile.in.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/Makevars [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/POTFILES [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/POTFILES.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/Rules-quot [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/boldquot.sed [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/cpluff.pot [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/en@boldquot.gmo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/en@boldquot.header [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/en@quot.gmo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/en@quot.header [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/fi.gmo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/insert-header.sin [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/quot.sed [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/remove-potcdate.sin [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/po/stamp-po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/collections.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/cpinfo.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/extcfg.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/fatalerror.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/initdestroy.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/loggers.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/pcallbacks.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/pdependencies.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/pinstallation.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/ploading.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/pscanning.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/psymbolusage.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/.deps/testmain.Po [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/collections.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/cpinfo.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/expected/output-extensions.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/expected/output-extpoints.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/expected/output-loadmaximal.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/expected/output-loadminimal.txt [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/extcfg.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/fatalerror.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/initdestroy.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/loggers.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcallbacks.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/collection1/plugin1/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/collection1v2/plugin1/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/collection1v3/plugin1/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/collection2/plugin2a/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/collection2/plugin2b/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/chain1/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/chain2/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/chain3/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/chainmissingdep/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/loop1/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/loop2/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/loop3/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/loop4/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/loop5/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/missingdep/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/sloop1/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pcollections/dependencies/sloop2/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pdependencies.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pinstallation.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/ploading.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/callbackcounter/.deps/callbackcounter.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/callbackcounter/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/callbackcounter/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/callbackcounter/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/callbackcounter/callbackcounter.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/callbackcounter/callbackcounter.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/callbackcounter/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symprovider/.deps/symprovider.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symprovider/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symprovider/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symprovider/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symprovider/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symprovider/symprovider.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symuser/.deps/symuser.Plo [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symuser/Makefile [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symuser/Makefile.am [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symuser/Makefile.in [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symuser/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins-source/symuser/symuser.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins/maximal/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/plugins/minimal/plugin.xml [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/pscanning.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/psymbolusage.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/test-extensions [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/test-extpoints [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/test-fatalerrordefault [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/test-fatalerrorreset [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/test-loadmaximal [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/test-loadminimal [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/test.h [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/testmain.c [new file with mode: 0644]
service/protocol-plugin/lib/cpluff/test/tests.txt [new file with mode: 0644]
service/protocol-plugin/lib/rapidxml/rapidxml.hpp [new file with mode: 0644]
service/protocol-plugin/lib/rapidxml/rapidxml_iterators.hpp [new file with mode: 0644]
service/protocol-plugin/lib/rapidxml/rapidxml_print.hpp [new file with mode: 0644]
service/protocol-plugin/lib/rapidxml/rapidxml_utils.hpp [new file with mode: 0644]
service/protocol-plugin/plugin-manager/.gitignore [new file with mode: 0644]
service/protocol-plugin/plugin-manager/SConscript [new file with mode: 0644]
service/protocol-plugin/plugin-manager/build/linux/Makefile [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/Config.cpp [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/Config.h [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/CpluffAdapter.cpp [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/CpluffAdapter.h [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/FelixAdapter.cpp [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/FelixAdapter.h [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/Plugin.cpp [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/Plugin.h [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/PluginManager.cpp [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/PluginManager.h [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/PluginManagerImpl.cpp [new file with mode: 0644]
service/protocol-plugin/plugin-manager/src/PluginManagerImpl.h [new file with mode: 0644]
service/protocol-plugin/plugins/SConscript [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/build/linux/Makefile [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/build/linux/plugin.xml [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/CMakeLists.txt [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/Makefile [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/SConscript [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/config.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/config.mk [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/cpp/CMakeLists.txt [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/cpp/Makefile [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/cpp/SConscript [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/cpp/mosquittopp.cpp [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/cpp/mosquittopp.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/cpp/test.txt [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/dummypthread.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/jsws/mosquitto.js [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/linker.version [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/logging_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/logging_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/memory_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/memory_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/messages_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/messages_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/mosquitto.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/mosquitto.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/mosquitto_internal.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/mqtt3_protocol.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/net_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/net_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/python/Makefile [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/python/mosquitto.py [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/python/setup.py [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/python/sub.py [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/read_handle.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/read_handle.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/read_handle_client.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/read_handle_shared.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/send_client_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/send_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/send_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/srv_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/thread_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/time_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/time_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/tls_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/tls_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/util_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/util_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/will_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/lib/will_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/src/fanserver.cpp [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/src/fanserver.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/src/fanserver_mqtt_plugin.cpp [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-fan/src/fanserver_mqtt_plugin.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/build/linux/Makefile [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/build/linux/plugin.xml [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/CMakeLists.txt [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/Makefile [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/config.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/config.mk [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/cpp/CMakeLists.txt [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/cpp/Makefile [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/cpp/mosquittopp.cpp [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/cpp/mosquittopp.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/cpp/test.txt [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/dummypthread.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/jsws/mosquitto.js [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/linker.version [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/logging_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/logging_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/memory_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/memory_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/messages_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/messages_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/mosquitto.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/mosquitto.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/mosquitto_internal.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/mqtt3_protocol.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/net_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/net_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/python/Makefile [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/python/mosquitto.py [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/python/setup.py [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/python/sub.py [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/read_handle.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/read_handle.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/read_handle_client.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/read_handle_shared.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/send_client_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/send_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/send_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/srv_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/thread_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/time_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/time_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/tls_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/tls_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/util_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/util_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/will_mosq.c [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/lib/will_mosq.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/src/lightserver.cpp [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/src/lightserver.h [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/src/lightserver_mqtt_plugin.cpp [new file with mode: 0644]
service/protocol-plugin/plugins/mqtt-light/src/lightserver_mqtt_plugin.h [new file with mode: 0644]
service/protocol-plugin/readme [new file with mode: 0644]
service/protocol-plugin/sample-app/SConscript [new file with mode: 0644]
service/protocol-plugin/sample-app/linux/SConscript [new file with mode: 0644]
service/protocol-plugin/sample-app/linux/mqtt/Makefile [new file with mode: 0644]
service/protocol-plugin/sample-app/linux/mqtt/mqttclient.cpp [new file with mode: 0644]
service/protocol-plugin/sample-app/linux/mqtt/pluginmanager.xml [new file with mode: 0644]
service/soft-sensor-manager/Readme.txt [new file with mode: 0644]
service/soft-sensor-manager/SConscript [new file with mode: 0644]
service/soft-sensor-manager/SDK/cpp/build/linux/Makefile [new file with mode: 0644]
service/soft-sensor-manager/SDK/cpp/include/SSMInterface.h [new file with mode: 0644]
service/soft-sensor-manager/SDK/cpp/src/InprocSSMCore.cpp [new file with mode: 0644]
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/CoreController.java [new file with mode: 0644]
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/DataReader.java [new file with mode: 0644]
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/IQueryEngineEvent.java [new file with mode: 0644]
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/IReportReceiver.java [new file with mode: 0644]
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/ModelData.java [new file with mode: 0644]
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/QueryEngine.java [new file with mode: 0644]
service/soft-sensor-manager/SDK/java/org/iotivity/service/ssm/SSMInterface.java [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/build/linux/Makefile [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/include/SSMInterface.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/InternalInterface.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/ObjectManager.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/PlatformLayer.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/ThreadManager.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/ThreadManager.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/rapidxml.hpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/rapidxml_iterators.hpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/rapidxml_print.hpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/rapidxml_utils.hpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/sqlite3.c [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/Common/sqlite3.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/CQLParser.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/CQLParser.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ConditionedModel.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ConditionedModel.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ConditionedQuery.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ConditionedQuery.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ConditionedQueryResult.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ConditionedQueryResult.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ContextModel.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ContextModel.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ContextQuery.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ContextQuery.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/DataReader.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/DataReader.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/EvaluationEngine.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/EvaluationEngine.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ModelData.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/ModelData.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/PropagationEngine.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/PropagationEngine.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/QueryEngine.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/QueryProcessor/QueryEngine.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMCore.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMCore.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMCore_JNI.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMCore_JNI.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMModelDefinition.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMResourceServer.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMResourceServer.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SSMInterface/SoftSensorManager.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SSMInterface/SoftSensorManager.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SensorProcessor/ContextDataReader.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SensorProcessor/ContextDataReader.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SensorProcessor/ContextExecutor.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SensorProcessor/ContextExecutor.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SensorProcessor/ContextRepository.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SensorProcessor/ContextRepository.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SensorProcessor/ResourceFinder.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SensorProcessor/ResourceFinder.h [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SensorProcessor/SensingEngine.cpp [new file with mode: 0644]
service/soft-sensor-manager/SSMCore/src/SensorProcessor/SensingEngine.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/SConscript [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Makefile [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Reference_Thing/build/makefile [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Reference_Thing/include/bleLib.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Reference_Thing/include/oic_lanLib.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Reference_Thing/src/bleLib.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Reference_Thing/src/oic_lanLib.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Reference_Thing/src/readme.txt [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Reference_Thing/src/reference.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/THSensorApp/build/makefile [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/THSensorApp/src/readme.txt [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/THSensorApp/src/thserver.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Trackee_Thing/build/makefile [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Trackee_Thing/include/bleLib.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Trackee_Thing/include/oic_lanLib.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Trackee_Thing/include/proximity.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Trackee_Thing/include/trackee.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Trackee_Thing/src/bleLib.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Trackee_Thing/src/oic_lanLib.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Trackee_Thing/src/proximity.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Trackee_Thing/src/readme.txt [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/Trackee_Thing/src/trackee.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/environment.mk [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/local.properties [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/arduino/readme.txt [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/Makefile [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/SSMTesterApp/SConscript [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/SSMTesterApp/build/Makefile [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/SSMTesterApp/include/SSMTestApp.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/SSMTesterApp/src/SSMTestApp.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/THSensorApp/SConscript [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/THSensorApp/build/Makefile [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/THSensorApp/include/ThingResourceServer.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/THSensorApp/src/ThingResourceServer.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/THSensorApp1/SConscript [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/THSensorApp1/build/Makefile [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/THSensorApp1/include/ThingResourceServer1.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/linux/THSensorApp1/src/ThingResourceServer1.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/CMakeLists.txt [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/README [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/RELEASE.txt [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/makefile_org [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/oic-sample/CMakeLists.txt [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/oic-sample/com.samsung.ssmtester.rule [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/oic-sample/com.samsung.ssmtester.xml [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/oic-sample/src/oicapp-log.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/oic-sample/src/oicapp-test.cpp [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/oic-sample/src/oicapp-test.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/oic-sample/src/oicapp-utils.c [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/oic-sample/src/oicapp-utils.h [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/packaging/ssm.manifest [new file with mode: 0644]
service/soft-sensor-manager/SampleApp/tizen/SSMTesterApp/packaging/ssm.spec [new file with mode: 0644]
service/soft-sensor-manager/SoftSensorPlugin/DiscomfortIndexSensor/build/linux/Makefile [new file with mode: 0644]
service/soft-sensor-manager/SoftSensorPlugin/DiscomfortIndexSensor/include/DiscomfortIndexSensor.h [new file with mode: 0644]
service/soft-sensor-manager/SoftSensorPlugin/DiscomfortIndexSensor/include/SysTimer.h [new file with mode: 0644]
service/soft-sensor-manager/SoftSensorPlugin/DiscomfortIndexSensor/src/DiscomfortIndexSensor.cpp [new file with mode: 0644]
service/soft-sensor-manager/SoftSensorPlugin/DiscomfortIndexSensor/src/SysTimer.cpp [new file with mode: 0644]
service/soft-sensor-manager/SoftSensorPlugin/SoftSensorDescription.xml [new file with mode: 0644]
service/soft-sensor-manager/build/arduino/Makefile [new file with mode: 0644]
service/soft-sensor-manager/build/arduino/environment.mk [new file with mode: 0644]
service/soft-sensor-manager/build/arduino/local.properties [new file with mode: 0644]
service/soft-sensor-manager/build/arduino/readme.txt [new file with mode: 0644]
service/soft-sensor-manager/build/linux/Makefile [new file with mode: 0644]
service/soft-sensor-manager/build/linux/environment.mk [new file with mode: 0644]
service/soft-sensor-manager/build/tizen/CMakeLists.txt [new file with mode: 0644]
service/soft-sensor-manager/build/tizen/Makefile [new file with mode: 0644]
service/soft-sensor-manager/build/tizen/SampleApp/CMakeLists.txt [new file with mode: 0644]
service/soft-sensor-manager/build/tizen/SampleApp/ClientApp/CMakeLists.txt [new file with mode: 0644]
service/soft-sensor-manager/build/tizen/SampleApp/THSensorApp/CMakeLists.txt [new file with mode: 0644]
service/soft-sensor-manager/build/tizen/SampleApp/THSensorApp1/CMakeLists.txt [new file with mode: 0644]
service/things-manager/.gitignore [new file with mode: 0644]
service/things-manager/Readme.txt [new file with mode: 0755]
service/things-manager/SConscript [new file with mode: 0644]
service/things-manager/build/linux/makefile [new file with mode: 0644]
service/things-manager/sampleapp/SConscript [new file with mode: 0644]
service/things-manager/sampleapp/linux/configuration/ConfigurationCollection.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/configuration/ConfigurationCollection.h [new file with mode: 0644]
service/things-manager/sampleapp/linux/configuration/DiagnosticsCollection.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/configuration/DiagnosticsCollection.h [new file with mode: 0644]
service/things-manager/sampleapp/linux/configuration/FactorySetCollection.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/configuration/FactorySetCollection.h [new file with mode: 0644]
service/things-manager/sampleapp/linux/configuration/SConscript [new file with mode: 0644]
service/things-manager/sampleapp/linux/configuration/bootstrapserver.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/configuration/con-client.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/configuration/con-server.cpp [new file with mode: 0755]
service/things-manager/sampleapp/linux/configuration/makefile [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupaction/SConscript [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupaction/bookmark.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupaction/groupserver.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupaction/lightserver.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupaction/makefile [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupsyncaction/SConscript [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupsyncaction/group.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupsyncaction/makefile [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupsyncaction/musicplayer.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupsyncaction/phone.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/groupsyncaction/speaker.cpp [new file with mode: 0644]
service/things-manager/sampleapp/linux/makefile [new file with mode: 0644]
service/things-manager/sdk/build/linux/Makefile [new file with mode: 0644]
service/things-manager/sdk/inc/ThingsManager.h [new file with mode: 0644]
service/things-manager/sdk/src/GroupManager.cpp [new file with mode: 0644]
service/things-manager/sdk/src/GroupManager.h [new file with mode: 0644]
service/things-manager/sdk/src/GroupSynchronization.cpp [new file with mode: 0644]
service/things-manager/sdk/src/GroupSynchronization.h [new file with mode: 0644]
service/things-manager/sdk/src/ThingsConfiguration.cpp [new file with mode: 0755]
service/things-manager/sdk/src/ThingsConfiguration.h [new file with mode: 0644]
service/things-manager/sdk/src/ThingsDiagnostics.cpp [new file with mode: 0644]
service/things-manager/sdk/src/ThingsDiagnostics.h [new file with mode: 0644]
service/things-manager/sdk/src/ThingsManager.cpp [new file with mode: 0644]
service/third_party_libs.scons [new file with mode: 0644]
tools/Readme.scons.txt [new file with mode: 0644]
tools/SConstruct [new file with mode: 0644]
tools/arduino.scons [new file with mode: 0644]
tools/arduino/patches/arduino-1.0.5_linux.patch [new file with mode: 0644]
tools/arduino/patches/arduino-1.5.7_linux.patch [new file with mode: 0644]
tools/auto_build.sh [new file with mode: 0755]
tools/extra_options.scons [new file with mode: 0644]
tools/scons_script_how_to.txt [new file with mode: 0644]
tools/tizen/iotivity.spec [new file with mode: 0644]