Fix XEP-0124 BOSH compliance: overactivity exception, ack handling, sentElements cleanup#3192
Open
Fix XEP-0124 BOSH compliance: overactivity exception, ack handling, sentElements cleanup#3192
Conversation
…ing, sentElements cleanup Co-authored-by: akrherz <210858+akrherz@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] [OF-1109] Review and fix HTTP-Bind/BoSH support for XEP-0124
Fix XEP-0124 BOSH compliance: overactivity exception, ack handling, sentElements cleanup
Mar 13, 2026
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
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.
Openfire's BOSH implementation had several deviations from XEP-0124 around request acknowledgements, overactivity enforcement, and retransmission buffer management.
Changes
Overactivity check allows pause/terminate exception (§11)
Per spec, clients MAY send one additional simultaneous request if it is a pause or terminate. Previously the check fired at
pendingConnections >= maxRequestsunconditionally, rejecting valid pause/terminate requests from clients already at the limit.Parse client
ackattribute from request bodies (§9.2)Added
HttpBindBody.getAck()to expose the client's acknowledged RID. When present, acknowledged entries are now pruned from thesentElementsretransmission buffer rather than relying solely on a size cap ofmaxRequests.Omit redundant
ackin responses (§9.1)asBodyText()andcreateEmptyBody()now accept the responding-to RID and suppress theackattribute when it would be identical—the common steady-state case.Tests
Added
HttpBindBodyTestcoveringgetAck()(present/absent/invalid/initial-value),getRid(), andisPoll()variants.💬 Send tasks to Copilot coding agent from Slack and Teams to turn conversations into code. Copilot posts an update in your thread when it's finished.