-
Notifications
You must be signed in to change notification settings - Fork 793
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
[7138] Bugfix/discovery server localhost #971
Conversation
* if possible | ||
* @param nf NetworkFactory used to make the translation | ||
*/ | ||
void transform_server_remote_locators(NetworkFactory & nf); |
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.
void transform_server_remote_locators(NetworkFactory & nf); | |
void transform_server_remote_locators( | |
const NetworkFactory & nf); |
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
@@ -143,6 +145,21 @@ bool BuiltinProtocols::updateMetatrafficLocators(LocatorList_t& loclist) | |||
return true; | |||
} | |||
|
|||
void BuiltinProtocols::transform_server_remote_locators(NetworkFactory & nf) |
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.
void BuiltinProtocols::transform_server_remote_locators(NetworkFactory & nf) | |
void BuiltinProtocols::transform_server_remote_locators( | |
const NetworkFactory & nf) |
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.
Just some minor styling
Co-Authored-By: Miguel Company <miguelcompany@eprosima.com>
Co-Authored-By: Miguel Company <miguelcompany@eprosima.com>
Co-Authored-By: Miguel Company <miguelcompany@eprosima.com>
3ad9b8a
to
5d1d200
Compare
Applies the same treatment given to the locators received via DATA, to the locators pass into the RemoteServerAttributes.
Basically the locators become localhost if possible to speed things up.