aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/vxlan/plugin.c
blob: eae8283052420b46101320ad785674cb7ab9f7f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: Apache-2.0
 * Copyright (c) 2022 Cisco Systems, Inc.
 */

#include <vlib/vlib.h>
#include <vnet/plugin/plugin.h>
#include <vpp/app/version.h>

VLIB_PLUGIN_REGISTER () = {
  .version = VPP_BUILD_VER,
  .description = "VxLan Tunnels",
};