diff --git a/dash-pipeline/dpapp/dash/CMakeLists.txt b/dash-pipeline/dpapp/dash/CMakeLists.txt index fc8c1e564..a56c568ef 100644 --- a/dash-pipeline/dpapp/dash/CMakeLists.txt +++ b/dash-pipeline/dpapp/dash/CMakeLists.txt @@ -18,13 +18,13 @@ include_directories(${CMAKE_BINARY_DIR}) add_vpp_plugin(dash SOURCES - node.c dash.c + dash_node.c flow.c saiapi.c MULTIARCH_SOURCES - node.c + dash_node.c API_FILES dash.api diff --git a/dash-pipeline/dpapp/dash/dash.api b/dash-pipeline/dpapp/dash/dash.api index a25a5f10b..426fec369 100644 --- a/dash-pipeline/dpapp/dash/dash.api +++ b/dash-pipeline/dpapp/dash/dash.api @@ -1,19 +1,3 @@ -/* Hey Emacs use -*- mode: C -*- */ -/* - * Copyright (c) 2015 Cisco and/or its affiliates. - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - /* Define a simple binary API to control the feature */ option version = "0.1.0"; diff --git a/dash-pipeline/dpapp/dash/node.c b/dash-pipeline/dpapp/dash/dash_node.c similarity index 100% rename from dash-pipeline/dpapp/dash/node.c rename to dash-pipeline/dpapp/dash/dash_node.c