-
Notifications
You must be signed in to change notification settings - Fork 116
PVA: Version 3, replySrcPort, several fixes #3434
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Client emits searches with new `replySrcPort` flag. Forwarded search messages have updated client address and `replySrcPort` option is thus cleared because client address can be used without further adjustments. Both server and client default to 224.0.0.128 for local multicast. Both client and server forward to local multicast but only server needs to listen to MC. Log more SearchRequest detail.
When forwarding UDP unicast search requests, prefix them with origin tag. When server receives search request, check for optional preceding origin tag to identify forwarded message. On forward, 'reply_to_src_port' flag is copied, but server ignores it in forwarded messages.
…us.git into pva_search_reply_port
.. used to require explicit unsubscribe or closedown of TCP connection
… into pva_search_reply_port
… into pva_search_reply_port
... to indicate that this server now has the PV. Useful for poxies to indicate ASAP that a PV was just created, not waiting until the next client search tick
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Several accumulated PVA updates.
PVA version 3 introduces a new
replySrcPortflag.epics-docs/epics-docs#134
epics-base/pvxs#116
Adds CMD_ORIGIN_TAG handling to java implementation, used to be ignored.
Client emits searches with new
replySrcPortflag.Forwarded UDP search messages have updated client address and get prefixed with CMD_ORIGIN_TAG.
replySrcPortremains set because servers can detect a forwarded message via the CMD_ORIGIN_TAG.Log more SearchRequest detail.
Default to 224.0.0.128 for local multicast in server, client, MulticastDemo.
Add PV name prefix to BoolDemo.
With TLS, provide access to both the client and the server’s X509 name.
PVA server clears subscription when client destroys a channel without beforehand clearing the subs.
Allow setting index or label of a PVAEnum and serve it with correct “NTEnum” type name.
Fix subscription update race in PVAServer.
Allow use of PVAServer’s ‘reply_sender’ by a gateway to reply ASAP when it connects on the client side without having to wait for a new search on the sender side.