[cahandler] Skip CLIENT_INFO on reconnects for legacy softcams#3700
Merged
atvcaptain merged 1 commit intoopenatv:masterfrom Feb 9, 2026
Merged
[cahandler] Skip CLIENT_INFO on reconnects for legacy softcams#3700atvcaptain merged 1 commit intoopenatv:masterfrom
atvcaptain merged 1 commit intoopenatv:masterfrom
Conversation
CLIENT_INFO was sent on every new connection to .listen.camd.socket, causing repeated "error in capmt length field read 4" in legacy softcam logs and risking disconnect loops with softcams that cannot parse Protocol-3 data. Track handshake state at eDVBCAHandler level: - First connection: send CLIENT_INFO to probe for Protocol-3 - If SERVER_INFO received: mark Protocol-3 established, always send CLIENT_INFO on reconnects - If no SERVER_INFO: legacy client detected, skip CLIENT_INFO on subsequent connections
atvcaptain
pushed a commit
that referenced
this pull request
Feb 9, 2026
CLIENT_INFO was sent on every new connection to .listen.camd.socket, causing repeated "error in capmt length field read 4" in legacy softcam logs and risking disconnect loops with softcams that cannot parse Protocol-3 data. Track handshake state at eDVBCAHandler level: - First connection: send CLIENT_INFO to probe for Protocol-3 - If SERVER_INFO received: mark Protocol-3 established, always send CLIENT_INFO on reconnects - If no SERVER_INFO: legacy client detected, skip CLIENT_INFO on subsequent connections
jbleyel
added a commit
that referenced
this pull request
Feb 12, 2026
* master: Use windowTitle parameter instead of setTitle after init of MessageBox [CAHandler] Send CMD_NOT_SELECTED when last service is unregistered [SoftCSA] Suppress activation when CI module handles decryption Revert "[SoftCSA] Deactivate software descrambling when CI module handles decryption" pot update translation update [servicedvb] * re-enable precise recovery feature to fix time shift issues * add extra setting for hardware latency correction for DM9x0 [ChannelSelection] Fix new crash https://www.opena.tv/viewtopic.php?p=597368&sid=6f7566164c0518ad0230b534dfb5889e#p597368 translation update [SoftCSA] Add double-buffered keys to eliminate data race in descrambling (#3702) [cahandler] Skip CLIENT_INFO on reconnects for legacy softcams (#3700)
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.
CLIENT_INFO was sent on every new connection to .listen.camd.socket, causing repeated "error in capmt length field read 4" in legacy softcam logs and risking disconnect loops with softcams that cannot parse Protocol-3 data.
Track handshake state at eDVBCAHandler level: