RDKBWIFI-410: Add ACS subdoc handler#1058
Draft
dkyncu wants to merge 1 commit intordkcentral:developfrom
Draft
Conversation
Add initial support for ACS subdoc received from Agent.
The handler parses the incoming ACS subdoc containing
per-opclass excluded channel lists. At this stage, no channel selection
logic is implemented.
Current behavior is limited to validating and logging the received ACS
subdoc content. This serves as a placeholder for future implementation
where channel selection will be performed based on the provided
exclude lists.
Example ACS subdoc received from Agent:
{
"Version": "1.0",
"SubDocName": "Acs",
"AcsList": [
{
"opclass": 81,
"exclude_channels_length": 3,
"exclude_channels": [1, 2, 3]
},
{
"opclass": 83,
"exclude_channels_length": 2,
"exclude_channels": [36, 40]
}
]
}
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.
Add initial support for ACS subdoc received from Agent.
The handler parses the incoming ACS subdoc containing per-opclass excluded channel lists. At this stage, no channel selection logic is implemented.
Current behavior is limited to validating and logging the received ACS subdoc content. This serves as a placeholder for future implementation where channel selection will be performed based on the provided exclude lists.
Example ACS subdoc received from Agent: