From 72bd2e585d75b88911956d721753682dfa24001a Mon Sep 17 00:00:00 2001 From: Joel Ahn Date: Thu, 28 Nov 2024 13:54:10 -0800 Subject: misc: move ppp to a plugin Type: refactor Move PPP folder under vnet to the plugin folder, and modify some of path of the #inlude
to the new path. Add a plugin.c file to register a plugin. Resolve ip4_input and ip6_input's dependency on PPP functions by moving those calls to PPP's initialization. Resolve osi's inter-plugin dependency on PPP by having it retrieve the function pointer Add ppp to the list of valid spelling words JIRA: VPP-2052 Change-Id: I1a26ef0663a91857d13f7d87a3bb14bc38893194 Signed-off-by: Joel Ahn --- src/vnet/ip/ip4_forward.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/vnet/ip/ip4_forward.c') diff --git a/src/vnet/ip/ip4_forward.c b/src/vnet/ip/ip4_forward.c index ff74b52eb18..a378dc5268a 100644 --- a/src/vnet/ip/ip4_forward.c +++ b/src/vnet/ip/ip4_forward.c @@ -42,7 +42,6 @@ #include #include /* for ethernet_header_t */ #include /* for ethernet_arp_header_t */ -#include #include /* for srp_hw_interface_class */ #include /* for API error numbers */ #include /* for FIB table and entry creation */ -- cgit