- 25 Jul, 2019 2 commits
-
-
Iurii Metelytsia authored
Signed-off-by:
Iurii Metelytsia <i.metelytsia@samsung.com> Change-Id: Ibaad81eebbad1b151fce710a0fbafefdbe999646
-
Oleksandr Dmytrenko authored
ca ssl unittests and fix in ca adapter Change-Id: I76208f7f55d8ef06f66ede67a521c5317657182a Signed-off-by:
Oleksandr Dmytrenko <o.dmytrenko@samsung.com>
-
- 18 Jul, 2019 1 commit
-
-
Iurii Metelytsia authored
1. Reference counter has been added to ssl adapter. 2. Waiting for ReceiveThread when the caipserver is stopped added. Signed-off-by:
Iurii Metelytsia <i.metelytsia@samsung.com> Change-Id: I3ccf95ff1c851fe0d3e70f75ed00fdb1fce7bf82
-
- 26 Feb, 2019 1 commit
-
-
Oleksii Beketov authored
Added callback to return peer's UUID on SSL connection closure Change-Id: Ib31250c639b9c2633e1459f0d555424ca429fb26 Signed-off-by:
Oleksii Beketov <ol.beketov@samsung.com>
-
- 16 Jan, 2019 1 commit
-
-
Jeremy Rover authored
Change-Id: Ib032c9b2b35b2ef3c23bb9a9cedba46e5aacd4da Signed-off-by:
Jeremy Rover <jeremy.rover@intel.com> Bug: https://jira.iotivity.org/browse/IOT-3245
-
- 06 Nov, 2018 1 commit
-
-
Oleksii Beketov authored
PEM/DER casting removed, allowing mbedtls to manage certificate conversion by itself. Credresource loads certificates that could be either PEM or DER encoded to a linked list instead of pushing them to a buffer. Change-Id: I200f9ef8798b20bf894b8ef2cf85e42e13749f38 Signed-off-by:
Oleksii Beketov <ol.beketov@samsung.com>
-
- 31 Oct, 2018 1 commit
-
-
Steven Saunders authored
Change-Id: I11ee97610c01f464dba896e600c71831629650bc Signed-off-by:
Steven Saunders <s.saunders-contractor@cablelabs.com>
-
- 06 Sep, 2018 1 commit
-
-
Jozef Kralik authored
- u_arraylist_swap provides swap of elements in a array list Bug: https://jira.iotivity.org/browse/IOT-3075 Bug: https://jira.iotivity.org/browse/IOT-3059 Change-Id: Iead0efa96b95f026b6a5b20731c8069f688c9483 Signed-off-by:
Jozef Kralik <jozef.kralik@kistler.com>
-
- 24 Apr, 2018 2 commits
-
-
George Nash authored
This fixes memory leaks reported by valgrind Change-Id: I99fe0b69e2c466e495f19bffd2226ebcd019cc85 Signed-off-by:
George Nash <george.nash@intel.com>
-
George Nash authored
Valgrind reported that the buffer was not initilized before being used for a conditional jump. This change zero ('/0') intilizes the buffer. Change-Id: I51d1716167f3da628783bef6bd733ab06e24de1e Signed-off-by:
George Nash <george.nash@intel.com>
-
- 06 Apr, 2018 1 commit
-
-
Philippe Coval authored
Bug: https://jira.iotivity.org/browse/IOT-524 Change-Id: Ie1e99e3c06d1723730d81621e78a941df1b031f9 Origin: https://gerrit.iotivity.org/gerrit/#/c/24481/Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
- 24 Mar, 2018 1 commit
-
-
Mats Wichmann authored
A couple of instances in this file do not initialize a struct, while the majority do so using memset. Aligned so this source file does things consistently. Two of these (lines 709 and 748 in the original source) are causing Coverity static checker complaints ("uninitialized scalar variable") because the struct is assigned - even though the member in question is never actually accessed. Note according to my understanding, for c++ code, it is considered better to use object initialization, although if the data is only POD (Plain Old Data), the result does come out the same. Thus, instead of: CAInfo_t responseData; memset(&responseData, 0, sizeof(CAInfo_t)); it is suggested to use: CAInfo_t responseData {}; we could adjust that in a separate change if people agree. It should not actually be necessary to pre-fill the whole struct with zeroes since the fields that matter get values in the tests before use anyway. However the problem with CAInfo_t is that someone thought it was a sensible idea to have a conditional field in an important (public API) struct in cacommon.h: typedef struct { CAMessageType_t type; /**< Qos for the request */ .#ifdef ROUTING_GATEWAY bool skipRetransmission; /**< Will not attempt retransmission even if type is CONFIRM. Required for packet forwarding */ .#endif uint16_t messageId; ... } CAInfo_t; which means every valid use of CAInfo_t has to have the same #ifdef ROUTING_GATEWAY bracketing to deal with this optional member. This is absolutely horrid in a public API and should never happen - it means the API is different if you use different compile flags. Change-Id: If178c7d245142e166fa33447cd00946cff4a56fc Signed-off-by:
Mats Wichmann <mats@linux.com>
-
- 07 Mar, 2018 1 commit
-
-
Steven Saunders authored
Change-Id: I0b55256c48fac998018a4a9089630d8b03e03482 Signed-off-by:
Steven Saunders <s.saunders-contractor@cablelabs.com>
-
- 02 Mar, 2018 1 commit
-
-
Steven Saunders authored
Change-Id: I3ee0fb005c6c9ce91a0e4c16454b6856c508616f Signed-off-by:
Steven Saunders <s.saunders-contractor@cablelabs.com>
-
- 24 Jan, 2018 1 commit
-
-
Philippe Coval authored
Functions in payload_logging.h can be used in examples, so it's installed in "experimental" sub namespace along dependencies. Bug: https://jira.iotivity.org/browse/IOT-1745 Change-Id: If3a9e4309601c356ab9a2faaa9fbe26283408633 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/21195Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
George Nash <george.nash@intel.com> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com>
-
- 14 Dec, 2017 1 commit
-
-
Mats Wichmann authored
Arduino is now supported only in iotivity-constrained, but all the support in the iotivity build remains. Remove in three phases (just to make shorter commits to review). Part 2 removes arduino from all the other build scripts which referenced it, and from auto_build.py and the vagrant setup. Change also removes the remaining arduino directories, as follows: extlibs/arduino resource/c_common/ocatomic/src/arduino resource/c_common/ocrandom/test/arduino resource/csdk/connectivity/build/arduino resource/csdk/connectivity/lib/arduino resource/csdk/connectivity/src/bt_le_adapter/arduino resource/csdk/connectivity/src/ip_adapter/arduino resource/csdk/connectivity/src/tcp_adapter/arduino resource/csdk/logger/test/arduino resource/csdk/stack/samples/arduino resource/csdk/stack/test/arduino service/easy-setup/sampleapp/enrollee/arduino tools/arduino which means some code files are removed as well. Bug: https://jira.iotivity.org/browse/IOT-2927 Change-Id: Idd5001a810ff4f67022f60bcb9d3252f7de7ccc2 Signed-off-by:
Mats Wichmann <mats@linux.com>
-
- 15 Nov, 2017 1 commit
-
-
Nathan Heldt-Sheller authored
This reverts commit 7f9d8c71. 22967 caused a regression in the CTT; we'll fix and re-submit after regression testing. Change-Id: Ie06cf59b6463072c54b23c61d322bdb7f09cc22f Signed-off-by:
Nathan Heldt-Sheller <nathan.heldt-sheller@intel.com>
-
- 14 Nov, 2017 1 commit
-
-
Oleksii Beketov authored
Allow to parse all CA certificates when SVR DB contains more than one root CA. Change-Id: Ie82632b459a9a064a90ff14e100e4db9ab60492d Signed-off-by:
Oleksii Beketov <ol.beketov@samsung.com>
-
- 13 Oct, 2017 1 commit
-
-
Oleksii Beketov authored
Added callback to check peer's certificate Common Name field. Change-Id: Idb316438a76d70fcc7a91a2e119aadd0c771bde6 Signed-off-by:
akk0rd <v.riznyk@samsung.com> Signed-off-by:
Oleksii Beketov <ol.beketov@samsung.com>
-
- 05 Oct, 2017 1 commit
-
-
Mats Wichmann authored
In various places in the build scripts, steps are taken which defeat the intent of using a variant dir: a distinct tree where building takes place. Mostly this works as expected, but in places where the scripts call Python facilities directly to figure paths out, scons does not have the ability to "know" the paths and do the internal substitutions if VariantDir is in effect. There is a bug report (IOT-645) which claims this "build in the source dir" behavior inhibits multiple builds of different targets at the same time on one machine/instance, although that bug is focused on extlibs which is its own story, builds there are only initiated by scons passing control to some other builder (make, etc.) so harder to solve. Part one of this patch series is fixing resource/csdk/connectivity. The main type of thing which causes the issue is: src_dir = os.path.abspath(os.curdir) This absolute path (which scons has no ability to adjust to use the variant dir) is typically joined with source file names in subdirectories when the builder will not be invoked in that directory. Replacing that model, source files are now added as File objects (instead of simple path strings), which leaves scons in full knowlege of the file and how to find it. It's possible a plain filename string would be good enough; scons is aware of the location it's in when running a given script. A challenge was in the resource/csdk/connectivity/src/*adapter build scripts: these invoke a target-specific subsidiary script to add source files particular to the target (tizen, android, etc.) - but not all possible build tergets have a script for each adapter. So the scripts checked for the script using os.path.exists() using an absolute path as noted above, as it must since the Python module does not know scons path tools, but then when calling it using the same path, the context is wrong and the added sources and thus their derived object dependencies were relative to the source tree, not the the variant dir. Again using a File object, it is possible to extract both a regular (variant-adjustable) path and a srcdir-relative path, the latter used for the check by os.path.exists. With this change, of the original 81 non-extlibs and non-libcoap builds not happening in variant dir, there are only four remaining (though note counts are build-dependent and this only refers to Linux x86_64 with the options I used). Those four will be the subject of part 2/3. (Part 3/3 is already merged to master and fixed the ones coming from bridging/): Preparing target resource/c_common/oic_malloc/src/oic_malloc.o... Preparing target resource/csdk/logger/src/logger.o... Preparing target resource/c_common/oic_string/src/oic_string.o... Preparing target resource/src/OCRepresentation.o... While working on this, a few missed list-assignment reformattings were snuck in, these should clearly be seen to be zero-impact. Additionally, in a few places when a comparison is done against a list which will be used as if it were immutable, like: if foo in ['linux', 'tizen']: it was actually changed to be immutable, i.e. [] changed to tuple (). Some old debugging prints announcing when a script is being scanned were also dropped. This change is independent of the others in the series. Bug: https://jira.iotivity.org/browse/IOT-645 Change-Id: I54ba8c6613bcfefb6dba64687e9f1a0e72327a41 Signed-off-by:
Mats Wichmann <mats@linux.com>
-
- 19 Sep, 2017 1 commit
-
-
Philippe Coval authored
Bug: https://jira.iotivity.org/browse/IOT-1583 Change-Id: I141f8c9a1a661be19645c1c4f0f6e31bc70a3ff9 Origin: https://gerrit.iotivity.org/gerrit/#/c/22055/Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com>
-
- 14 Sep, 2017 1 commit
-
-
saurabh.s9 authored
Purpose: Errors happens during OCDoResource calls should be returned to app layer Previously, session errors (handshake failed) didn't returned properly to app layer and this cause side effects (CA retransmission works in cases when it should not) Current state: 1. Source code builds ok 2. Secure stack samples (UDP/TCP) works well (both positive/negative cases) 3. Provisioning (OTM, 20th menu item) works well for following: a. justworks positive UDP/TCP, negative UDP case b. mfg positive UDP/TCP, negative UDP case c. mv_justworks positive UDP/TCP, negative UDP case d. randompin positive UDP/TCP, negative UDP case 4. OTM in provisioning via TCP - negative case - should work properly after fix IOT-2454 How to test: 1. Positive case - just test samples (f.e secure stack samples) & provisioning with all servers 2. Negative case - add following code which artificially breaks handshake (to ca_adapter_net_ssl.c) if (peer->ssl.state == MBEDTLS_SSL_CERTIFICATE_REQUEST) { ret = MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR; } And again test all samples and provisioning with all servers. As result - you should see an error returned to app immidiately (without timeouts, etc) and there should be no CA retransmission attempts (UDP case) Change-Id: Ia1fe1c7c58f9e40040a0be5e7e83abbc66f80bfe Signed-off-by:
Andrii Shtompel <a.shtompel@samsung.com> Signed-off-by:
saurabh.s9 <saurabh.s9@samsung.com>
-
- 29 Aug, 2017 1 commit
-
-
George Nash authored
It is common to do a compair with a const value in unit tests. For example EXPECT_EQ(3, value). If `value` is an unsigned type this will produce the sign-compare compiler warning. The compiler defaults to treating constant numbers as a signed data type. Adding a sufix u (i.e. 3u) will tell the compiler to treat the constant as an unsigned data type. In other cases the type is cast to an unsigned or signed value before the comparison. In aclresourcetest.cpp the return type for GetNumberOfResource function was updated to return size_t since in all the test conditions it is compared with variable of size_t or a constant number. Bug: https://jira.iotivity.org/browse/IOT-2539 Change-Id: I7e47bfb9f027304abd975eb0d8e577cbd484545a Signed-off-by:
George Nash <george.nash@intel.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/21689Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com> (cherry picked from commit 65cc1e5d)
-
- 14 Aug, 2017 1 commit
-
-
Philippe Coval authored
Functions in payload_logging.h can be used in examples, so it's installed in "experimental" sub namespace along dependencies. Bug: https://jira.iotivity.org/browse/IOT-1745 Change-Id: If3a9e4309601c356ab9a2faaa9fbe26283408633 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/21195Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
George Nash <george.nash@intel.com> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com>
-
- 12 Aug, 2017 1 commit
-
-
George Nash authored
It is common to do a compair with a const value in unit tests. For example EXPECT_EQ(3, value). If `value` is an unsigned type this will produce the sign-compare compiler warning. The compiler defaults to treating constant numbers as a signed data type. Adding a sufix u (i.e. 3u) will tell the compiler to treat the constant as an unsigned data type. In other cases the type is cast to an unsigned or signed value before the comparison. In aclresourcetest.cpp the return type for GetNumberOfResource function was updated to return size_t since in all the test conditions it is compared with variable of size_t or a constant number. Bug: https://jira.iotivity.org/browse/IOT-2539 Change-Id: I7e47bfb9f027304abd975eb0d8e577cbd484545a Signed-off-by:
George Nash <george.nash@intel.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/21689Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com>
-
- 27 Jun, 2017 1 commit
-
-
Oleksandr Dmytrenko authored
Fix memory leak: cert/key/CRL information returned by cred resource https://jira.iotivity.org/browse/IOT-1917 Change-Id: Ic563b5e5b79ccac8855ebb5b215e475d1b4e57be Signed-off-by:
Oleksandr Dmytrenko <o.dmytrenko@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/18057Reviewed-by:
Andrii Shtompel <a.shtompel@samsung.com> Reviewed-by:
Kevin Kane <kkane@microsoft.com> Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Greg Zaverucha <gregz@microsoft.com> (cherry picked from commit dba44fd8) Reviewed-on: https://gerrit.iotivity.org/gerrit/20933Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com>
-
- 20 Jun, 2017 1 commit
-
-
Mats Wichmann authored
These are the resource/csdk/connectivity subset. There are not intended to be any functional changes. In a couple of places, for general consistency, changed SConscript('#foo') to SConscript('#/foo') - these are equivalent "help vars" assignments formatted so messages can be improved later without changing formatting all EnumVariable usage now calls out allowed_values= to be more clear Change-Id: Ic062a8e3a81586a6eddbc0ca414f5e51d5d97b86 Signed-off-by:
Mats Wichmann <mats@linux.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/20807Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
George Nash <george.nash@intel.com> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com>
-
- 18 Jun, 2017 1 commit
-
-
Philippe Coval authored
Change-Id: If22cffaa199d1057497019fd45c502b8ae69b8de Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/20341Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com> (cherry picked from commit 4ec6ab95) Reviewed-on: https://gerrit.iotivity.org/gerrit/19833
-
- 17 Jun, 2017 1 commit
-
-
Pawel Winogrodzki authored
Removing remaining /W4 warnings and enabling /W4 along with /WX globally. Change-Id: I521f17e36038e0cc74c14afbb7e6a7a2cee6c45e Signed-off-by:
Pawel Winogrodzki <pawelwi@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/19691Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com>
-
- 16 Jun, 2017 1 commit
-
-
Philippe Coval authored
Change-Id: If22cffaa199d1057497019fd45c502b8ae69b8de Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/20341Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com>
-
- 15 Jun, 2017 1 commit
-
-
Philippe Coval authored
Change-Id: Ibc63061b15d67481370214fc322c7db302537018 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/20657Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
George Nash <george.nash@intel.com> (cherry picked from commit 98f5dc53) Reviewed-on: https://gerrit.iotivity.org/gerrit/20675
-
- 14 Jun, 2017 1 commit
-
-
Philippe Coval authored
Change-Id: Ibc63061b15d67481370214fc322c7db302537018 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/20657Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
George Nash <george.nash@intel.com>
-
- 12 Jun, 2017 1 commit
-
-
hyuna0213.jo authored
Change-Id: I2279dc5ce94ae7262d7f425d857d929791c18796 Signed-off-by:
hyuna0213.jo <hyuna0213.jo@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/20293Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com> Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com> Reviewed-by:
Jaehong Jo <jaehong.jo@samsung.com> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Reviewed-by:
Ashok Babu Channa <ashok.channa@samsung.com>
-
- 08 Jun, 2017 1 commit
-
-
Pawel Winogrodzki authored
This change suppresses some of the remaining /W3 VS compiler warnings, fixes for which are too intrusive to meet the 1.3-rel bar. In addition to that we're enabling the /WX compiler option to prevent any new /W3 warnings from being checked in. Change-Id: I061bc1c83615e052d77f8eb6b96fd488d1f49e4b Signed-off-by:
Pawel Winogrodzki <pawelwi@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/20487Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com>
-
- 24 May, 2017 1 commit
-
-
ol.beketov authored
Change-Id: I4cf4a6a01c64e8e455e51a3fca88e512b516e60c Signed-off-by:
Andrii Shtompel <a.shtompel@samsung.com> Signed-off-by:
ol.beketov <ol.beketov@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/20325Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Uze Choi <uzchoi@samsung.com>
-
- 23 May, 2017 1 commit
-
-
hyuna0213.jo authored
https://gerrit.iotivity.org/gerrit/#/c/19355/ was modified to make changes for all platforms. Change-Id: Ib653daaad453556354b108c673b34c06a197c5f9 Signed-off-by:
hyuna0213.jo <hyuna0213.jo@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/19821Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Jaehong Jo <jaehong.jo@samsung.com> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Tested-by:
Uze Choi <uzchoi@samsung.com>
-
- 22 May, 2017 1 commit
-
-
Philippe Coval authored
Change-Id: I5177f05d782fc22507e2032b2924d7d900000003 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> Origin: https://gerrit.iotivity.org/gerrit/#/c/20079/ Reviewed-on: https://gerrit.iotivity.org/gerrit/20079
-
- 19 May, 2017 1 commit
-
-
George Nash authored
The commit for [IOT-1583] had several unseen concequnces and should not be on the 1.3-rel branch. This change reverts that commit as well as two commits that were made in responce to that commit. Revert "resource: Avoid to expose internal headers" This reverts commit 6303c498. Revert "[IOT-2251] Resolve getValue() & setValue() APIs for argument string, Attribute Value" This reverts commit 05671f38. Revert "IOT-1583: Fixing /W3 warnings in /resource directory - part 5." This reverts commit 924a7f26. See also the following bugs Bug: https://jira.iotivity.org/browse/IOT-2233 Bug: https://jira.iotivity.org/browse/IOT-2251 Bug: https://jira.iotivity.org/browse/IOT-2277 Bug: https://jira.iotivity.org/browse/IOT-1583 Bug: https://jira.iotivity.org/browse/IOT-2254 Change-Id: I6ca8fad887ff7a17a0bceacfe0ba2147d64c9394 Signed-off-by:
George Nash <george.nash@intel.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/20007Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com> Tested-by:
Dan Mihai <Daniel.Mihai@microsoft.com>
-
- 15 May, 2017 2 commits
-
-
Dan Mihai authored
Fixing: D:\GitRoot\1.3-rel\extlibs\gtest\googletest-release-1.7.0\include\ gtest/gtest.h(1577): error C2220: warning treated as error - no 'object' file generated resource\csdk\connectivity\test\ssladapter_test.cpp(3194): note: see reference to function template instantiation 'testing::AssertionResult testing::internal::CmpHelperNE<int,bool>( const char *,const char *,const T1 &,const T2 &)' being compiled with [ T1=int, T2=bool ] D:\GitRoot\1.3-rel\extlibs\gtest\googletest-release-1.7.0\include\ gtest/gtest.h(1577): warning C4805: '!=': unsafe mix of type 'const int' and type 'const bool' in operation Change-Id: I055105a058c16242ef17ee01a1e9267178a48751 Signed-off-by:
Dan Mihai <Daniel.Mihai@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/19929Reviewed-by:
Ibrahim Esmat <iesmat@microsoft.com> Reviewed-by:
Way Vadhanasin <wayvad@microsoft.com> Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Kevin Kane <kkane@microsoft.com> Reviewed-by:
Nathan Heldt-Sheller <nathan.heldt-sheller@intel.com>
-
Oleksandr Dmytrenko authored
Change-Id: I4d6379193291d01d50ecbca2df25a51dc20b75c8 Signed-off-by:
Oleksandr Dmytrenko <o.dmytrenko@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/19255Tested-by:
jenkins-iotivity <jenkins@iotivity.org> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Tested-by:
Uze Choi <uzchoi@samsung.com>
-