hsa: move session-apps to host-stack apps plugin
Type:refactor Change-Id: I114fea3a54258797e961d8627a99ba2098674d20 Signed-off-by: Florin Coras <fcoras@cisco.com>
This commit is contained in:

committed by
Dave Wallace

parent
1b534f5a4a
commit
e3b8682d3f
@ -408,6 +408,11 @@ M: Neale Ranns <nranns@cisco.com>
|
|||||||
M: Mohsin Kazmi <sykazmi@cisco.com>
|
M: Mohsin Kazmi <sykazmi@cisco.com>
|
||||||
F: extras/vom/vom/
|
F: extras/vom/vom/
|
||||||
|
|
||||||
|
Plugin - Host Stack Applications
|
||||||
|
I: hsa
|
||||||
|
M: Florin Coras <fcoras@cisco.com>
|
||||||
|
F: src/plugins/hs_apps/
|
||||||
|
|
||||||
THE REST
|
THE REST
|
||||||
I: misc
|
I: misc
|
||||||
C: Contact vpp-dev Mailing List <vpp-dev@fd.io>
|
C: Contact vpp-dev Mailing List <vpp-dev@fd.io>
|
||||||
|
21
src/plugins/hs_apps/CMakeLists.txt
Normal file
21
src/plugins/hs_apps/CMakeLists.txt
Normal file
@ -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
|
||||||
|
)
|
@ -18,7 +18,7 @@
|
|||||||
#include <vnet/vnet.h>
|
#include <vnet/vnet.h>
|
||||||
#include <vlibapi/api.h>
|
#include <vlibapi/api.h>
|
||||||
#include <vlibmemory/api.h>
|
#include <vlibmemory/api.h>
|
||||||
#include <vnet/session-apps/echo_client.h>
|
#include <hs_apps/echo_client.h>
|
||||||
|
|
||||||
echo_client_main_t echo_client_main;
|
echo_client_main_t echo_client_main;
|
||||||
|
|
34
src/plugins/hs_apps/hs_apps.c
Normal file
34
src/plugins/hs_apps/hs_apps.c
Normal file
@ -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 <vnet/vnet.h>
|
||||||
|
#include <vnet/plugin/plugin.h>
|
||||||
|
#include <vpp/app/version.h>
|
||||||
|
|
||||||
|
/* *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:
|
||||||
|
*/
|
@ -17,7 +17,7 @@
|
|||||||
#include <vlibmemory/api.h>
|
#include <vlibmemory/api.h>
|
||||||
#include <vnet/session/application.h>
|
#include <vnet/session/application.h>
|
||||||
#include <vnet/session/application_interface.h>
|
#include <vnet/session/application_interface.h>
|
||||||
#include <vnet/session-apps/proxy.h>
|
#include <hs_apps/proxy.h>
|
||||||
|
|
||||||
proxy_main_t proxy_main;
|
proxy_main_t proxy_main;
|
||||||
|
|
@ -1202,22 +1202,6 @@ list(APPEND VNET_HEADERS
|
|||||||
|
|
||||||
list(APPEND VNET_API_FILES session/session.api)
|
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
|
# TLS protocol
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
Reference in New Issue
Block a user