[VOL5378]-support to set offload onu config
Change-Id: I7be0d038fcb1ba9a0a858469198c25b819b48eac
Signed-off-by: Akash Soni <akash.soni@radisys.com>
diff --git a/internal/pkg/core/device_handler.go b/internal/pkg/core/device_handler.go
index 6f983a9..02d996f 100755
--- a/internal/pkg/core/device_handler.go
+++ b/internal/pkg/core/device_handler.go
@@ -3873,6 +3873,17 @@
}
}
+func (dh *deviceHandler) setOnuOffloadStats(ctx context.Context, config *extension.AppOffloadOnuConfig) *extension.SingleSetValueResponse {
+
+ singleValResp := extension.SingleSetValueResponse{
+ Response: &extension.SetValueResponse{
+ Status: extension.SetValueResponse_OK,
+ },
+ }
+
+ return &singleValResp
+}
+
func (dh *deviceHandler) GetUniPortStatus(ctx context.Context, uniInfo *extension.GetOnuUniInfoRequest) *extension.SingleGetValueResponse {
portStatus := uniprt.NewUniPortStatus(dh, dh.pOnuOmciDevice.PDevOmciCC)