Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move z_*_source_info_t, z_entity_global_id_t out from commons #433

Merged
merged 1 commit into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
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
18 changes: 0 additions & 18 deletions include/zenoh_commons.h
Original file line number Diff line number Diff line change
Expand Up @@ -481,24 +481,12 @@ typedef struct z_delete_options_t {
*/
enum zcu_locality_t allowed_destination;
} z_delete_options_t;
/**
* An entity gloabal id.
*/
typedef struct ALIGN(4) z_entity_global_id_t {
uint8_t _0[20];
} z_entity_global_id_t;
/**
* The replies consolidation strategy to apply on replies to a `z_get()`.
*/
typedef struct z_query_consolidation_t {
enum z_consolidation_mode_t mode;
} z_query_consolidation_t;
/**
* An owned Zenoh-allocated source info`.
*/
typedef struct ALIGN(8) z_owned_source_info_t {
uint8_t _0[40];
} z_owned_source_info_t;
/**
* Options passed to the `z_get()` function.
*/
Expand Down Expand Up @@ -644,12 +632,6 @@ typedef struct z_query_reply_err_options_t {
*/
struct z_owned_encoding_t *encoding;
} z_query_reply_err_options_t;
/**
* A loaned source info.
*/
typedef struct ALIGN(8) z_loaned_source_info_t {
uint8_t _0[40];
} z_loaned_source_info_t;
/**
* Options to pass to `z_scout()`.
*/
Expand Down
3 changes: 3 additions & 0 deletions splitguide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ zenoh_opaque.h:
- z_loaned_session_t!
- z_owned_config_t!
- z_loaned_config_t!
- z_owned_source_info_t!
- z_loaned_source_info_t!
- z_entity_global_id_t!
- z_id_t!
- z_timestamp_t!
- z_owned_publisher_t!
Expand Down
Loading