af_packet: move to plugin
[vpp.git] / src / plugins / af_packet / plugin.c
1 /* SPDX-License-Identifier: Apache-2.0
2  * Copyright (c) 2022 Cisco Systems, Inc.
3  * License: Cisco Proprietary Closed Source License - Cisco Internal.
4  * The software, documentation and any fonts accompanying this License whether
5  * on disk, in read only memory, on any other media or in any other form (col-
6  * lectively the “Software”) are licensed, not sold, to you by Cisco, Inc.
7  * (“Cisco”) for use only under the terms of this License, and Cisco reserves
8  * all rights not expressly granted to you. The rights granted herein are
9  * limited to Cisco’s intel- lectual property rights in the Cisco Software and
10  * do not include any other patents or intellectual property rights. You own
11  * the media on which the Cisco Software is recorded but Cisco and/or Cisco’s
12  * licensor(s) retain ownership of the Software itself.
13  */
14
15 #include <vlib/vlib.h>
16 #include <vnet/plugin/plugin.h>
17 #include <vpp/app/version.h>
18
19 VLIB_PLUGIN_REGISTER () = {
20   .version = VPP_BUILD_VER,
21   .description = "af-packet",
22 };