From ab6095f645495d96a94183e134d8afea7ee7bbcf Mon Sep 17 00:00:00 2001 From: Avia Avraham <145359432+AviaAv@users.noreply.github.com> Date: Tue, 17 Dec 2024 11:05:28 +0200 Subject: [PATCH 1/3] add note about windows DDS popup message --- third-party/realdds/readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/third-party/realdds/readme.md b/third-party/realdds/readme.md index 7aa2186514..2ef822dbd1 100644 --- a/third-party/realdds/readme.md +++ b/third-party/realdds/readme.md @@ -61,6 +61,8 @@ Alternatively, one can use RealDDS to bypass librealsense. This will avoid some Or you can directly interact with the DDS subsystem, using any implementation. This bypasses librealsense and RealDDS completely. While the protocol used by RealDDS (the topic structure, message formats, etc.) will likely not change much, it is not guaranteed to stay static in the face of new features or bugs. +**Note**: In Windows systems where firewall is enabled, you may see the message "Do you want to allow networks to access this app", make sure to allow this in your network to ensure proper communication with the DDS device. This message shows up since we open and bind a socket when using DDS, and we need to allow our it through the network security settings (a rule to allow our app is added to the firewall rules). + # Next Start with [Discovery](doc/discovery.md), then continue on to [Device](doc/device.md). From 8c45659dc86c7c1e857fe24321ab402bb6724d6e Mon Sep 17 00:00:00 2001 From: Avia Avraham <145359432+AviaAv@users.noreply.github.com> Date: Tue, 17 Dec 2024 11:56:41 +0200 Subject: [PATCH 2/3] fix readme --- third-party/realdds/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/realdds/readme.md b/third-party/realdds/readme.md index 2ef822dbd1..b6a1d58534 100644 --- a/third-party/realdds/readme.md +++ b/third-party/realdds/readme.md @@ -61,7 +61,7 @@ Alternatively, one can use RealDDS to bypass librealsense. This will avoid some Or you can directly interact with the DDS subsystem, using any implementation. This bypasses librealsense and RealDDS completely. While the protocol used by RealDDS (the topic structure, message formats, etc.) will likely not change much, it is not guaranteed to stay static in the face of new features or bugs. -**Note**: In Windows systems where firewall is enabled, you may see the message "Do you want to allow networks to access this app", make sure to allow this in your network to ensure proper communication with the DDS device. This message shows up since we open and bind a socket when using DDS, and we need to allow our it through the network security settings (a rule to allow our app is added to the firewall rules). +**Note**: In some systems where firewall is enabled, you may see the message "Do you want to allow networks to access this app", make sure to allow this in your network to ensure proper communication with the DDS device. This message shows up since we open and bind a socket when using DDS, and we need to allow it through the network security settings (a rule to allow our app is added to the firewall rules). # Next From 343555a49c80c6482d5d9e361cabf9fa19ad0bcb Mon Sep 17 00:00:00 2001 From: Avia Avraham <145359432+AviaAv@users.noreply.github.com> Date: Mon, 23 Dec 2024 09:29:48 +0200 Subject: [PATCH 3/3] clarify readme --- third-party/realdds/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/realdds/readme.md b/third-party/realdds/readme.md index b6a1d58534..30c90c9f7a 100644 --- a/third-party/realdds/readme.md +++ b/third-party/realdds/readme.md @@ -61,7 +61,7 @@ Alternatively, one can use RealDDS to bypass librealsense. This will avoid some Or you can directly interact with the DDS subsystem, using any implementation. This bypasses librealsense and RealDDS completely. While the protocol used by RealDDS (the topic structure, message formats, etc.) will likely not change much, it is not guaranteed to stay static in the face of new features or bugs. -**Note**: In some systems where firewall is enabled, you may see the message "Do you want to allow networks to access this app", make sure to allow this in your network to ensure proper communication with the DDS device. This message shows up since we open and bind a socket when using DDS, and we need to allow it through the network security settings (a rule to allow our app is added to the firewall rules). +**Note**: In some systems where firewall is enabled, you may see the message "Do you want to allow networks to access this app", make sure to allow this in your network to ensure proper communication with the DDS device. This message shows up since we open and bind a socket when using DDS, so it should be allowed in the network security settings. # Next