-
Notifications
You must be signed in to change notification settings - Fork 151
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 ClientIP Connection property #374
Conversation
Signed-off-by: Colin Sullivan <[email protected]>
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.
LGTM
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.
One comment and two suggestions, but otherwise looks good!
src/NATS.Client/Conn.cs
Outdated
@@ -26,6 +26,7 @@ | |||
using System.Diagnostics; | |||
using NATS.Client.Extensions; | |||
using NATS.Client.Internals; | |||
using System.Net; |
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.
using
s got out of order.
Co-Authored-By: Christopher Watford <[email protected]>
Co-Authored-By: Christopher Watford <[email protected]>
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.
LGTM
Signed-off-by: Colin Sullivan <[email protected]>
Thanks for the reviews! Once tests are green, I'll merge. |
Add the ClientIP connection property to retrieve the server info client IP field.
Signed-off-by: Colin Sullivan [email protected]