Skip to content

Commit

Permalink
zenoh-pico: update to correct dev/1.0.0 branch
Browse files Browse the repository at this point in the history
which is up to date containing "Use SO_REUSEPORT only if it exists"
and is advertised by GitHub because the commit is on a branch
  • Loading branch information
MaEtUgR committed Aug 6, 2024
1 parent 326e2a9 commit a8ac322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/zenoh/zenoh-pico
Submodule zenoh-pico updated 94 files
+5 −0 .github/workflows/release.yml
+6 −0 CMakeLists.txt
+15 −5 docs/api.rst
+1 −1 examples/arduino/z_get.ino
+1 −1 examples/arduino/z_queryable.ino
+1 −1 examples/arduino/z_scout.ino
+1 −1 examples/espidf/z_get.c
+4 −4 examples/espidf/z_queryable.c
+1 −1 examples/espidf/z_scout.c
+1 −1 examples/freertos_plus_tcp/z_get.c
+1 −1 examples/freertos_plus_tcp/z_put.c
+4 −4 examples/freertos_plus_tcp/z_queryable.c
+1 −1 examples/freertos_plus_tcp/z_scout.c
+1 −1 examples/mbed/z_get.cpp
+7 −5 examples/mbed/z_queryable.cpp
+1 −1 examples/mbed/z_scout.cpp
+1 −1 examples/unix/c11/z_get.c
+3 −3 examples/unix/c11/z_get_attachment.c
+1 −1 examples/unix/c11/z_get_channel.c
+2 −2 examples/unix/c11/z_ping.c
+1 −4 examples/unix/c11/z_pong.c
+2 −2 examples/unix/c11/z_pub_attachment.c
+13 −6 examples/unix/c11/z_pub_thr.c
+1 −1 examples/unix/c11/z_put.c
+5 −5 examples/unix/c11/z_queryable.c
+6 −6 examples/unix/c11/z_queryable_attachment.c
+3 −3 examples/unix/c11/z_queryable_channel.c
+1 −1 examples/unix/c11/z_scout.c
+1 −1 examples/unix/c99/z_get.c
+2 −2 examples/unix/c99/z_ping.c
+2 −7 examples/unix/c99/z_pong.c
+1 −1 examples/unix/c99/z_put.c
+4 −3 examples/unix/c99/z_queryable.c
+1 −1 examples/unix/c99/z_scout.c
+1 −1 examples/windows/z_get.c
+2 −2 examples/windows/z_ping.c
+1 −7 examples/windows/z_pong.c
+1 −1 examples/windows/z_pub.c
+1 −1 examples/windows/z_put.c
+4 −4 examples/windows/z_queryable.c
+1 −1 examples/windows/z_scout.c
+1 −1 examples/zephyr/z_get.c
+4 −4 examples/zephyr/z_queryable.c
+1 −1 examples/zephyr/z_scout.c
+7 −0 include/zenoh-pico/api/handlers.h
+173 −34 include/zenoh-pico/api/primitives.h
+3 −4 include/zenoh-pico/api/types.h
+1 −1 include/zenoh-pico/collections/bytes.h
+17 −4 include/zenoh-pico/collections/slice.h
+7 −9 include/zenoh-pico/collections/string.h
+3 −2 include/zenoh-pico/net/primitives.h
+1 −0 include/zenoh-pico/net/publish.h
+1 −1 include/zenoh-pico/protocol/definitions/network.h
+6 −4 include/zenoh-pico/protocol/definitions/transport.h
+2 −1 include/zenoh-pico/session/subscription.h
+148 −81 src/api/api.c
+4 −4 src/collections/bytes.c
+40 −11 src/collections/slice.c
+40 −77 src/collections/string.c
+7 −10 src/link/endpoint.c
+3 −2 src/net/encoding.c
+5 −4 src/net/primitives.c
+6 −2 src/net/sample.c
+5 −3 src/net/session.c
+10 −13 src/protocol/codec.c
+7 −6 src/protocol/codec/message.c
+1 −1 src/protocol/codec/transport.c
+10 −8 src/protocol/definitions/transport.c
+5 −5 src/session/subscription.c
+4 −12 src/system/windows/network.c
+6 −1 src/system/zephyr/system.c
+2 −2 src/transport/multicast.c
+3 −2 src/transport/multicast/lease.c
+4 −3 src/transport/multicast/read.c
+3 −2 src/transport/raweth/read.c
+2 −2 src/transport/unicast.c
+3 −2 src/transport/unicast/read.c
+1 −1 tests/fragment.py
+20 −3 tests/z_api_alignment_test.c
+49 −19 tests/z_api_bytes_test.c
+20 −0 tests/z_api_encoding_test.c
+10 −10 tests/z_bytes_test.c
+16 −10 tests/z_client_test.c
+33 −2 tests/z_data_struct_test.c
+13 −16 tests/z_msgcodec_test.c
+14 −7 tests/z_peer_multicast_test.c
+7 −2 tests/z_perf_tx.c
+5 −0 tests/z_session_test.c
+3 −2 tests/z_test_fragment_rx.c
+8 −2 tests/z_test_fragment_tx.c
+1 −1 zenohpico.pc
+45 −0 zephyr/CMakeLists.txt
+69 −0 zephyr/Kconfig.zenoh
+2 −2 zephyr/module.yml

0 comments on commit a8ac322

Please sign in to comment.