diff --git a/MAINTAINERS b/MAINTAINERS index 20f68f1634a..4e6ccd0bdbf 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -408,6 +408,11 @@ M: Neale Ranns M: Mohsin Kazmi F: extras/vom/vom/ +Plugin - Host Stack Applications +I: hsa +M: Florin Coras +F: src/plugins/hs_apps/ + THE REST I: misc C: Contact vpp-dev Mailing List diff --git a/src/plugins/hs_apps/CMakeLists.txt b/src/plugins/hs_apps/CMakeLists.txt new file mode 100644 index 00000000000..d27c8512306 --- /dev/null +++ b/src/plugins/hs_apps/CMakeLists.txt @@ -0,0 +1,21 @@ +# Copyright (c) 2019 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. + +add_vpp_plugin(hs_apps + SOURCES + echo_client.c + echo_server.c + hs_apps.c + http_server.c + proxy.c +) diff --git a/src/vnet/session-apps/echo_client.c b/src/plugins/hs_apps/echo_client.c similarity index 99% rename from src/vnet/session-apps/echo_client.c rename to src/plugins/hs_apps/echo_client.c index 24a3433d707..bcf4176ca71 100644 --- a/src/vnet/session-apps/echo_client.c +++ b/src/plugins/hs_apps/echo_client.c @@ -18,7 +18,7 @@ #include #include #include -#include +#include echo_client_main_t echo_client_main; diff --git a/src/vnet/session-apps/echo_client.h b/src/plugins/hs_apps/echo_client.h similarity index 100% rename from src/vnet/session-apps/echo_client.h rename to src/plugins/hs_apps/echo_client.h diff --git a/src/vnet/session-apps/echo_server.c b/src/plugins/hs_apps/echo_server.c similarity index 100% rename from src/vnet/session-apps/echo_server.c rename to src/plugins/hs_apps/echo_server.c diff --git a/src/plugins/hs_apps/hs_apps.c b/src/plugins/hs_apps/hs_apps.c new file mode 100644 index 00000000000..5067919cc28 --- /dev/null +++ b/src/plugins/hs_apps/hs_apps.c @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2019 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. + */ + +#include +#include +#include + +/* *INDENT-OFF* */ +VLIB_PLUGIN_REGISTER () = +{ + .version = VPP_BUILD_VER, + .description = "Host Stack Applications", +}; +/* *INDENT-ON* */ + +/* + * fd.io coding-style-patch-verification: ON + * + * Local Variables: + * eval: (c-set-style "gnu") + * End: + */ diff --git a/src/vnet/session-apps/http_server.c b/src/plugins/hs_apps/http_server.c similarity index 100% rename from src/vnet/session-apps/http_server.c rename to src/plugins/hs_apps/http_server.c diff --git a/src/vnet/session-apps/proxy.c b/src/plugins/hs_apps/proxy.c similarity index 99% rename from src/vnet/session-apps/proxy.c rename to src/plugins/hs_apps/proxy.c index 6542c160f63..31dbfc5969f 100644 --- a/src/vnet/session-apps/proxy.c +++ b/src/plugins/hs_apps/proxy.c @@ -17,7 +17,7 @@ #include #include #include -#include +#include proxy_main_t proxy_main; diff --git a/src/vnet/session-apps/proxy.h b/src/plugins/hs_apps/proxy.h similarity index 100% rename from src/vnet/session-apps/proxy.h rename to src/plugins/hs_apps/proxy.h diff --git a/src/vnet/CMakeLists.txt b/src/vnet/CMakeLists.txt index 462ced4ae23..467d82b2bf0 100644 --- a/src/vnet/CMakeLists.txt +++ b/src/vnet/CMakeLists.txt @@ -1202,22 +1202,6 @@ list(APPEND VNET_HEADERS list(APPEND VNET_API_FILES session/session.api) -############################################################################## -# session layer applications -############################################################################## - -list(APPEND VNET_SOURCES - session-apps/echo_client.c - session-apps/echo_server.c - session-apps/http_server.c - session-apps/proxy.c -) - -list(APPEND VNET_HEADERS - session-apps/echo_client.h - session-apps/proxy.h -) - ############################################################################## # TLS protocol ##############################################################################