-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
add note about windows DDS popup message #13609
add note about windows DDS popup message #13609
Conversation
third-party/realdds/readme.md
Outdated
@@ -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). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure this is Windows only problem. Better to make it more general.
Also a redundant "our" - "need to allow our it through"
third-party/realdds/readme.md
Outdated
@@ -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 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). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would remove the parenthesized sentence (a rule to allow our app is added to the firewall rules)
. It might be understood that we are adding the rule, which is not the case. Lets just mention that it should be allowed in the network security settings, let the user handle how according to his specific system.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks
Tracked on: [RSDEV-2915]