-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Zenoh-Pico matching support and rename Zenoh-C methods (#389)
* Add Zenoh-Pico matching support and rename Zenoh-C methods * Update precompiler definitions check * Update zenoh-c
- Loading branch information
Showing
8 changed files
with
43 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule zenoh-c
updated
13 files
+1 −1 | build-resources/opaque-types/src/lib.rs | |
+15 −15 | docs/api.rst | |
+3 −3 | examples/z_pub.c | |
+3 −3 | examples/z_pub_shm.c | |
+3 −3 | examples/z_querier.c | |
+222 −222 | include/zenoh_commons.h | |
+47 −47 | include/zenoh_macros.h | |
+2 −2 | splitguide.yaml | |
+12 −12 | src/advanced_publisher.rs | |
+36 −38 | src/closures/matching_status_closure.rs | |
+9 −11 | src/matching.rs | |
+15 −15 | src/publisher.rs | |
+15 −15 | src/querier.rs |
Submodule zenoh-pico
updated
17 files
+12 −0 | .github/release.yml | |
+3 −0 | docs/api.rst | |
+27 −1 | examples/unix/c11/z_querier.c | |
+49 −0 | include/zenoh-pico/api/primitives.h | |
+4 −5 | include/zenoh-pico/net/filtering.h | |
+3 −3 | include/zenoh-pico/net/matching.h | |
+4 −0 | include/zenoh-pico/net/query.h | |
+3 −0 | include/zenoh-pico/session/matching.h | |
+56 −12 | src/api/api.c | |
+2 −0 | src/link/unicast/serial.c | |
+31 −33 | src/net/filtering.c | |
+14 −10 | src/net/matching.c | |
+5 −1 | src/net/primitives.c | |
+2 −4 | src/net/session.c | |
+1 −1 | src/session/matching.c | |
+8 −5 | tests/routed.sh | |
+187 −31 | tests/z_api_matching_test.c |