Skip to content

Commit

Permalink
Ensure examples work again:
Browse files Browse the repository at this point in the history
* me_service <-> ue_client
* ue_service <-> me_client
* ue_publisher -> me_subscriber
* me_publisher -> ue_subscriber
  • Loading branch information
PLeVasseur committed Nov 10, 2024
1 parent 092f3ab commit a2b6886
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 9 deletions.
61 changes: 56 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion example-streamer-uses/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,6 @@ serde = { workspace = true }
tokio = { workspace = true }
up-rust = { workspace = true }
up-transport-zenoh = { version = "0.3.0" }
up-transport-vsomeip = { git = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust.git", tag = "v0.2.0", default-features = false }
up-transport-vsomeip = { git = "https://github.com/PLeVasseur/up-client-vsomeip-rust", branch = "debug/client-id" }
# up-transport-vsomeip = { git = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust.git", tag = "v0.2.0", default-features = false }
zenoh = { version = "1.0.0", features = ["unstable", "internal"] }
4 changes: 2 additions & 2 deletions up-linux-streamer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ tokio = { workspace = true }
up-rust = { workspace = true }
up-streamer = { path = "../up-streamer" }
up-transport-zenoh = { version = "0.3.0" }
# up-transport-vsomeip = { git = "https://github.com/PLeVasseur/up-client-vsomeip-rust", branch = "feature/debug-unable-to-send-back-result", default-features = false }
up-transport-vsomeip = { git = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust.git", tag = "v0.2.0", default-features = false }
up-transport-vsomeip = { git = "https://github.com/PLeVasseur/up-client-vsomeip-rust", branch = "debug/client-id" }
# up-transport-vsomeip = { git = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust.git", tag = "v0.2.0", default-features = false }
zenoh = { version = "1.0.0", features = ["unstable", "internal"] }
usubscription-static-file = {path = "../utils/usubscription-static-file"}

Expand Down
2 changes: 1 addition & 1 deletion up-streamer/src/ustreamer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ lazy_static! {
fn uauthority_to_uuri(authority_name: &str) -> UUri {
UUri {
authority_name: authority_name.to_string(),
ue_id: 0xFFFF_FFFF, // any instance, any service
ue_id: 0x0000_FFFF, // any instance, any service
ue_version_major: 0xFF, // any
resource_id: 0xFFFF, // any
..Default::default()
Expand Down

0 comments on commit a2b6886

Please sign in to comment.