docs: Add FlushConntrackTable parameter to reference documentation#77
Open
jayasrikadiyal wants to merge 1 commit into
Open
docs: Add FlushConntrackTable parameter to reference documentation#77jayasrikadiyal wants to merge 1 commit into
jayasrikadiyal wants to merge 1 commit into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Advanced Security reference documentation to include the FlushConntrackTable TR-181 trigger parameter under X_RDKCENTRAL-COM_DeviceFingerPrint, and to document the corresponding internal API entry.
Changes:
- Added
X_RDKCENTRAL-COM_DeviceFingerPrint.FlushConntrackTableto the TR-181 ownership matrix as a non-persistent trigger parameter. - Added
FlushConntrackTableto the DeviceFingerPrint parameter list in the feature catalog. - Added
CosaAdvSecFlushConntrackTable()to the internal API reference table.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| docs/reference/tr181-matrix.md | Documents the new TR-181 trigger parameter in the ownership matrix. |
| docs/reference/feature-catalog.md | Adds the trigger parameter to the DeviceFingerPrint feature’s parameter list. |
| docs/reference/api-reference.md | Adds the new internal API entry for flushing conntrack. |
| | `X_RDKCENTRAL-COM_DeviceFingerPrint.LoggingPeriod` | Telemetry logging interval (seconds) | `DeviceFingerPrint_SetParamUlongValue` | `CosaAdvSecSetLoggingPeriod()` | `Advsecurity_LoggingPeriod` | — | | ||
| | `X_RDKCENTRAL-COM_DeviceFingerPrint.EndpointURL` | Cloud endpoint URL (HTTPS only) | `DeviceFingerPrint_SetParamStringValue` | URL validated by `isValidUrl()` | `Advsecurity_CustomEndpointURL` | — | | ||
| | `X_RDKCENTRAL-COM_DeviceFingerPrint.LogLevel` | Agent log level | `DeviceFingerPrint_SetParamUlongValue` | `CosaAdvSecSetLogLevel()` | `Advsecurity_LogLevel` | — | | ||
| | `X_RDKCENTRAL-COM_DeviceFingerPrint.FlushConntrackTable` | Trigger to flush connection tracking table (always reads FALSE) | `DeviceFingerPrint_SetParamBoolValue` | `CosaAdvSecFlushConntrackTable()` | — (trigger, no persistence) | — | |
|
|
||
| - **TR-181**: `Device.DeviceInfo.X_RDKCENTRAL-COM_DeviceFingerPrint` | ||
| - **Parameters**: `Enable` (bool), `LoggingPeriod` (uint), `EndpointURL` (string), `LogLevel` (uint) | ||
| - **Parameters**: `Enable` (bool), `LoggingPeriod` (uint), `EndpointURL` (string), `LogLevel` (uint), `FlushConntrackTable` (bool, trigger) |
| | `CosaRabidSetMacCacheSize(value)` | Set Rabid MAC cache (max: 32768) | | ||
| | `CosaRabidSetDNSCacheSize(value)` | Set Rabid DNS cache (max: 32768) | | ||
| | `CosaAdvSecFetchSbConfig(param, ...)` | Fetch SafeBrowsing config from `/tmp/safebro.json` | | ||
| | `CosaAdvSecFlushConntrackTable()` | Flush connection tracking table via `conntrack -F` | |
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.
Updates reference documentation to include the new
FlushConntrackTableTR-181 parameter added in PR #76.Files Updated
Relates to #75