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
5 changes: 5 additions & 0 deletions source/ccsp/include/ccsp_base_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -1275,6 +1275,11 @@ int CcspBaseIf_SendSignal(
char *event
);

int CcspBaseIf_SendSignal_WithData_rbus(
void * bus_handle,
char *eventName,
char* eventData
);

int CcspBaseIf_SendSignal_WithData(
void * bus_handle,
Expand Down
9 changes: 4 additions & 5 deletions source/util_api/ccsp_msg_bus/ccsp_base_api.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* If not stated otherwise in this file or this component's Licenses.txt file the

Check failure on line 2 in source/util_api/ccsp_msg_bus/ccsp_base_api.c

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'IETF' license found in local file 'source/util_api/ccsp_msg_bus/ccsp_base_api.c' (Match: rdkb/components/opensource/ccsp/CcspCommonLibrary/rdkb/components/opensource/ccsp/CcspCommonLibrary/1, 3617 lines, url: https://code.rdkcentral.com/r/plugins/gitiles/rdkb/components/opensource/ccsp/CcspCommonLibrary/+archive/RDKB-TEST-RELEASE-1.tar.gz, file: source/util_api/ccsp_msg_bus/ccsp_base_api.c)

Check failure on line 2 in source/util_api/ccsp_msg_bus/ccsp_base_api.c

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'IETF' license found in local file 'source/util_api/ccsp_msg_bus/ccsp_base_api.c' (Match: rdkb/components/opensource/ccsp/CcspCommonLibrary/rdkb/components/opensource/ccsp/CcspCommonLibrary/2101, 3613 lines, url: https://code.rdkcentral.com/r/plugins/gitiles/rdkb/components/opensource/ccsp/CcspCommonLibrary/+archive/rdk-dev-2101.tar.gz, file: source/util_api/ccsp_msg_bus/ccsp_base_api.c)
* following copyright and licenses apply:
*
* Copyright 2015 RDK Management
Expand Down Expand Up @@ -2746,7 +2746,6 @@
return CcspBaseIf_SendSignal_rbus(bus_handle, event);
}

#if 0
int CcspBaseIf_SendSignal_WithData_rbus(
void * bus_handle,
char *eventName,
Expand All @@ -2768,15 +2767,15 @@
event.type = RBUS_EVENT_GENERAL;
ret = rbusEvent_Publish(bus_handle, &event);
if(ret != RBUS_ERROR_SUCCESS) {
CcspTraceInfo(("provider: rbusEvent_Publish Event failed: %d\n", ret));
CcspTraceError(("provider: rbusEvent_Publish Event failed: %d\n", ret));
}
else{
CcspTraceInfo(("provider: rbusEvent_Publish Event success: %d\n", ret));
}

rbusValue_Release(value);
return Rbus2_to_CCSP_error_mapper(ret);
}

#endif

int CcspBaseIf_SendSignal_WithData(
void * bus_handle,
char *event,
Expand Down
Loading