-
Notifications
You must be signed in to change notification settings - Fork 24
RDKB-60436 : Develop Code. #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
298ff2e
b1ccaf7
cbbcef4
e582ab1
906ad02
23c8040
a3cf0c9
119fd03
0d1b73f
ccfda70
75426ee
4a3b457
8243d19
e8c0951
3203d41
020b68b
f25f184
5ca5c74
75c4142
2721d06
7e58dd9
39ee224
c1477c9
c0064a8
caff056
0c6fddf
9abfeef
63899c2
9a395e6
0ceda09
5d83120
26b0839
0827a76
bcd607b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -28,6 +28,7 @@ | |||||
| #include "safec_lib_common.h" | ||||||
| #include "cosa_dhcpv6_apis.h" | ||||||
| #include "syscfg/syscfg.h" | ||||||
| #include "secure_wrapper.h" | ||||||
|
|
||||||
| #if defined (RBUS_WAN_IP) | ||||||
| #include "cosa_deviceinfo_dml.h" | ||||||
|
|
@@ -1343,6 +1344,81 @@ rbusError_t eventWANIPSubHandler(rbusHandle_t handle, rbusEventSubAction_t actio | |||||
|
|
||||||
| #endif /*RBUS_WAN_IP*/ | ||||||
|
|
||||||
| #if defined(RBUS_BUILD_FLAG_ENABLE) && !defined(_HUB4_PRODUCT_REQ_) && !defined(RDKB_EXTENDER_ENABLED) | ||||||
LakshminarayananShenbagaraj marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| static void Cosa_Rbus_Handler_WanStatus_EventHandler(rbusHandle_t handle, rbusEvent_t const* event, rbusEventSubscription_t* subscription) | ||||||
| { | ||||||
| (void)handle; | ||||||
| (void)subscription; | ||||||
|
|
||||||
| const char* eventName = event->name; | ||||||
|
|
||||||
| if (eventName == NULL) | ||||||
| { | ||||||
| CcspTraceError(("%s %d : FAILED , value is NULL\n",__FUNCTION__, __LINE__)); | ||||||
|
||||||
| CcspTraceError(("%s %d : FAILED , value is NULL\n",__FUNCTION__, __LINE__)); | |
| CcspTraceError(("%s %d : FAILED , event name is NULL\n",__FUNCTION__, __LINE__)); |
LakshminarayananShenbagaraj marked this conversation as resolved.
Show resolved
Hide resolved
LakshminarayananShenbagaraj marked this conversation as resolved.
Show resolved
Hide resolved
LakshminarayananShenbagaraj marked this conversation as resolved.
Show resolved
Hide resolved
LakshminarayananShenbagaraj marked this conversation as resolved.
Show resolved
Hide resolved
LakshminarayananShenbagaraj marked this conversation as resolved.
Show resolved
Hide resolved
LakshminarayananShenbagaraj marked this conversation as resolved.
Show resolved
Hide resolved
Copilot
AI
Nov 18, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent indentation: This line uses spaces for indentation while the rest of the function uses tabs. For consistency with the surrounding code, this should use tabs instead of spaces.
| //Subscribe WAN Status Event | |
| //Subscribe WAN Status Event |
Uh oh!
There was an error while loading. Please reload this page.