-
Notifications
You must be signed in to change notification settings - Fork 263
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
Update ServerPolicy.java #3092
Update ServerPolicy.java #3092
Conversation
Add server name, port#, WebRTC & Use Password File to getInfo("Server").
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.
Reviewed 1 of 1 files at r1, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @Phergus)
Did you update the protobuf for handshake? May not be necessary but maybe you just forgot. |
@thelsing the values don't actually live in the server policy, and none of these needs to be sent to clients really. It's just unfortunate that whomever added the code to extract the json for MT Macros put it in this class, some day this should really be cleaned up :) |
@cwisniew that is a mess. |
The usePasswordFile field should be added to the protobuf Dto even if this property is not needed on the client side. We should try to keep the mappings and protobuf definitions and the objects in sync. Is this property used somewhere? If not why was it added in this PR? ;) |
Because I screwed up. I had put that in earlier thinking it wasn't being tracked anywhere and then later forgot to take it back out before the commit. I'll put in a fix for it. |
Identify the Bug or Feature request
Completes #3073
Description of the Change
Added server name, port#, WebRTC & Use Password File to result of getInfo("Server").
Possible Drawbacks
none anticipated
Documentation Notes
Release Notes
getInfo("Server")
now includes server name, port#, WebRTC & Use Password FileThis change is