Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/reference/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ All follow the pattern: persist to syscfg → check DeviceFingerPrint active →
| `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` |

## 6. Syscfg Utility APIs

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/feature-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This catalog documents all security feature modules, their RFC toggle dependenci
### Identity

- **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)
- **syscfg**: `Advsecurity_DeviceFingerPrint`
- **Init/DeInit**: `CosaAdvSecInit()` / `CosaAdvSecDeInit()`
- **Script**: `start_adv_security.sh -enable` / `-disable`
Expand Down
1 change: 1 addition & 0 deletions docs/reference/tr181-matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ This matrix maps all `Device.DeviceInfo.X_RDKCENTRAL-COM_*` ownership areas to i
| `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) | — |

### AdvancedSecurity.SafeBrowsing Parameters

Expand Down
Loading