From 0b65621d41619e242b136e78fecfb325c90ae0bc Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Thu, 13 Jan 2022 11:59:44 -0800 Subject: http: add http protocol plugin Basic HTTP/1.1 server side implementation. Type: feature Signed-off-by: Florin Coras Change-Id: I06bddaf7f11e28db802b4cd7ef8160c78cb019b6 --- src/plugins/http/CMakeLists.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/plugins/http/CMakeLists.txt (limited to 'src/plugins/http/CMakeLists.txt') diff --git a/src/plugins/http/CMakeLists.txt b/src/plugins/http/CMakeLists.txt new file mode 100644 index 00000000000..9f5ce778739 --- /dev/null +++ b/src/plugins/http/CMakeLists.txt @@ -0,0 +1,18 @@ +# Copyright (c) 2022 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(http + SOURCES + http.c + http_timer.c +) -- cgit 1.2.3-korg