blob: 1673225b683fd81a6483bb52dfa1e12c7afac0a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: Apache-2.0
* Copyright (c) 2024 Tom Jones <thj@freebsd.org>
*
* This software was developed by Tom Jones <thj@freebsd.org> under sponsorship
* from the FreeBSD Foundation.
*
*/
#include <vlib/vlib.h>
#include <vnet/plugin/plugin.h>
#include <vpp/app/version.h>
VLIB_PLUGIN_REGISTER () = {
.version = VPP_BUILD_VER,
.description = "netmap",
};
|