Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
5cb526e
Remove accountId validation gates from idm_client.c
veeraputhiran-thangavel Mar 25, 2026
6d07c43
Apply suggestion from @Copilot
veeraputhiran-thangavel Mar 26, 2026
8d346a1
Make device association unconditional; treat GetAccountId as optional
veeraputhiran-thangavel Mar 26, 2026
52dc00b
Add Consolelog and T2 telemetry markers for IDM pairing events
veeraputhiran-thangavel Mar 27, 2026
f4755b1
idm: redirect IDM logs to Consolelog.txt.0
veeraputhiran-thangavel Apr 13, 2026
45c2ccf
Update src/idm_log.c
veeraputhiran-thangavel Apr 13, 2026
2bdb3a3
idm_log: append newline automatically in idm_consolelog; update call …
Copilot Apr 13, 2026
b94fc4a
idm: add IDM_LOG_ERR dual-logging for all error paths in idm_client.c
veeraputhiran-thangavel Apr 13, 2026
5a31a2b
idm: remove flooding-risk IDM_LOG_ERR calls from verify_devices loop
veeraputhiran-thangavel Apr 13, 2026
3971804
idm: fix fopen fallback, strip trailing \n from log call sites
veeraputhiran-thangavel Apr 14, 2026
13ff1a7
idm: remove IDM_LOG_INFO calls already covered by CcspTraceInfo
veeraputhiran-thangavel Apr 14, 2026
aa90f70
Merge branch 'develop' into remove_xle_accountid_check_v3
snayak002c May 8, 2026
407ce53
xupnp: route IDM logs to InterDeviceManager.txt.0; redact cert paths
veeraputhiran-thangavel May 12, 2026
818254d
idm: add IDM_LOG_INFO for all info-level events in idm_client.c
veeraputhiran-thangavel May 12, 2026
31a6f85
idm: complete IDM_LOG coverage for all meaningful g_message calls
veeraputhiran-thangavel May 12, 2026
4c12ca9
idm: add IDM_LOG coverage to idm_server.c
veeraputhiran-thangavel May 12, 2026
f5c5a71
idm: replace custom log writer with rdklogger API
veeraputhiran-thangavel May 13, 2026
6fb1e50
idm: use CcspTraceInfo/CcspTraceError — same API as interdevicemanager
veeraputhiran-thangavel May 13, 2026
b4b2810
idm: call CcspTraceInfo/CcspTraceError directly in idm_client/server
veeraputhiran-thangavel May 13, 2026
a7ed0cd
idm: remove redundant g_message/g_critical calls paired with CcspTrace
veeraputhiran-thangavel May 13, 2026
022d7a6
idm: replace all remaining GLib/stdio logging with CcspTraceInfo/Error
veeraputhiran-thangavel May 13, 2026
2ce53ad
idm: replace last 2 TELEMETRY_ g_message calls with CcspTrace
veeraputhiran-thangavel May 13, 2026
8107ea1
idm: demote high-frequency traces to CcspTraceDebug to avoid log floo…
veeraputhiran-thangavel May 13, 2026
df54b96
idm: strip trailing \n from CcspTrace format strings
veeraputhiran-thangavel May 13, 2026
7d70785
idm: restore original log message text in idm_server.c
veeraputhiran-thangavel May 13, 2026
c6e86b9
idm: restore all original g_message/g_critical log calls
veeraputhiran-thangavel May 13, 2026
726d44a
idm: redo logging conversion cleanly — no duplicates
veeraputhiran-thangavel May 13, 2026
92cd7d0
idm: remove redundant IDM_LOG_-derived CcspTrace calls
veeraputhiran-thangavel May 13, 2026
9a230ff
idm: promote error-content log calls to CcspTraceError
veeraputhiran-thangavel May 13, 2026
8050f3e
idm: fix build errors introduced by ccsp_trace.h migration
veeraputhiran-thangavel May 13, 2026
f8fd488
idm: add FEATURE_SUPPORT_RDKLOG to libupnpidm to route CcspTrace to R…
veeraputhiran-thangavel May 14, 2026
13f6963
idm: migrate idm_library.c logging from g_message to CcspTrace
veeraputhiran-thangavel May 14, 2026
b09fd52
idm: add missing \n to all CcspTrace format strings
veeraputhiran-thangavel May 14, 2026
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
2 changes: 2 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ xcal_device_LDADD = $(top_builddir)/broadband/lib/libxdevice.la
if RDKB_INTER_DEVICE_MANAGER_SUPPORT
lib_LTLIBRARIES = libupnpidm.la
libupnpidm_la_SOURCES = idm_server.c idm_client.c idm_library.c
libupnpidm_la_CFLAGS = $(AM_CFLAGS) -DFEATURE_SUPPORT_RDKLOG
libupnpidm_la_LIBADD = -lrdkloggers -lccsp_common
endif
endif
if VIDEO_SUPPORT
Expand Down
Loading
Loading