Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 79 files
+6 −2 src/core/coap/coap_message.cpp
+19 −6 src/core/coap/coap_message.hpp
+1 −1 src/core/common/heap_data.cpp
+44 −24 src/core/common/message.cpp
+58 −8 src/core/common/message.hpp
+1 −1 src/core/meshcop/border_agent.cpp
+1 −1 src/core/meshcop/meshcop.cpp
+2 −2 src/core/net/checksum.cpp
+1 −2 src/core/net/dhcp6_client.cpp
+1 −2 src/core/net/dhcp6_server.cpp
+2 −2 src/core/net/dns_client.cpp
+1 −1 src/core/net/dns_dso.cpp
+3 −5 src/core/net/ip6.cpp
+2 −2 src/core/net/nat64_translator.cpp
+1 −1 src/core/net/tcp6.cpp
+3 −18 src/core/net/udp6.cpp
+1 −0 src/core/net/udp6.hpp
+4 −9 src/core/thread/lowpan.cpp
+1 −1 src/core/thread/mesh_forwarder.cpp
+2 −2 src/core/thread/message_framer.cpp
+4 −8 src/core/thread/mle.cpp
+2 −0 src/lib/spinel/spinel.c
+34 −0 src/lib/spinel/spinel.h
+87 −0 src/lib/spinel/spinel_prop_codec.cpp
+38 −0 src/lib/spinel/spinel_prop_codec.hpp
+19 −0 src/ncp/ncp_base.hpp
+1 −0 src/ncp/ncp_base_dispatcher.cpp
+26 −0 src/ncp/ncp_base_ftd.cpp
+2 −2 src/ncp/platform/dnssd.cpp
+15 −0 tests/nexus/CMakeLists.txt
+1 −0 tests/nexus/platform/nexus_core.cpp
+16 −1 tests/nexus/run_nexus_tests.sh
+289 −0 tests/nexus/test_5_6_3.cpp
+332 −0 tests/nexus/test_5_6_4.cpp
+324 −0 tests/nexus/test_5_6_5.cpp
+467 −0 tests/nexus/test_5_6_6.cpp
+333 −0 tests/nexus/test_5_6_7.cpp
+427 −0 tests/nexus/test_5_6_9.cpp
+288 −0 tests/nexus/test_6_5_2.cpp
+251 −0 tests/nexus/test_6_5_3.cpp
+243 −0 tests/nexus/test_7_1_3.cpp
+248 −0 tests/nexus/test_7_1_4.cpp
+274 −0 tests/nexus/test_7_1_5.cpp
+471 −0 tests/nexus/test_7_1_6.cpp
+253 −0 tests/nexus/test_7_1_8.cpp
+330 −0 tests/nexus/test_9_2_1.cpp
+386 −0 tests/nexus/test_9_2_2.cpp
+216 −0 tests/nexus/verify_5_6_3.py
+216 −0 tests/nexus/verify_5_6_4.py
+224 −0 tests/nexus/verify_5_6_5.py
+390 −0 tests/nexus/verify_5_6_6.py
+164 −0 tests/nexus/verify_5_6_7.py
+310 −0 tests/nexus/verify_5_6_9.py
+2 −2 tests/nexus/verify_6_4_1.py
+1 −1 tests/nexus/verify_6_4_2.py
+7 −0 tests/nexus/verify_6_5_1.py
+177 −0 tests/nexus/verify_6_5_2.py
+137 −0 tests/nexus/verify_6_5_3.py
+195 −0 tests/nexus/verify_7_1_3.py
+208 −0 tests/nexus/verify_7_1_4.py
+251 −0 tests/nexus/verify_7_1_5.py
+346 −0 tests/nexus/verify_7_1_6.py
+151 −0 tests/nexus/verify_7_1_8.py
+269 −0 tests/nexus/verify_9_2_1.py
+265 −0 tests/nexus/verify_9_2_2.py
+41 −11 tests/nexus/verify_utils.py
+1 −1 tests/scripts/thread-cert/Cert_5_7_01_CoapDiagCommands.py
+3 −3 tests/scripts/thread-cert/Cert_5_7_02_CoapDiagCommands.py
+4 −4 tests/scripts/thread-cert/Cert_5_7_03_CoapDiagCommands.py
+3 −3 tests/scripts/thread-cert/Cert_6_4_01_LinkLocal.py
+2 −2 tests/scripts/thread-cert/Cert_6_4_02_RealmLocal.py
+2 −2 tests/scripts/thread-cert/Cert_9_2_14_PanIdQuery.py
+2 −2 tests/scripts/thread-cert/config.py
+15 −5 tests/scripts/thread-cert/pktverify/coap.py
+2 −2 tests/scripts/thread-cert/pktverify/consts.py
+2 −2 tests/scripts/thread-cert/pktverify/packet_filter.py
+110 −19 tests/unit/test_message.cpp
+73 −0 tests/unit/test_ncp_dnssd.cpp
+152 −12 tests/unit/test_spinel_prop_codec.cpp
Loading