aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/vhost/plugin.c
blob: 0e6158ba7d8700d4b1902267a0c51b7f38381fef (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 = "Vhost-User",
};