summaryrefslogtreecommitdiff
path: root/lib/route/link/dummy.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/route/link/dummy.c')
-rw-r--r--lib/route/link/dummy.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/lib/route/link/dummy.c b/lib/route/link/dummy.c
new file mode 100644
index 0000000..b837f48
--- /dev/null
+++ b/lib/route/link/dummy.c
@@ -0,0 +1,38 @@
+/*
+ * lib/route/link/dummy.c Dummy Interfaces
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation version 2.1
+ * of the License.
+ *
+ * Copyright (c) 2011 Thomas Graf <tgraf@suug.ch>
+ */
+
+/**
+ * @ingroup link
+ * @defgroup dummy Dummy
+ * @brief
+ *
+ * @{
+ */
+
+#include <netlink-local.h>
+#include <netlink/netlink.h>
+#include <netlink/route/link/api.h>
+
+static struct rtnl_link_info_ops dummy_info_ops = {
+ .io_name = "dummy",
+};
+
+static void __init dummy_init(void)
+{
+ rtnl_link_register_info(&dummy_info_ops);
+}
+
+static void __exit dummy_exit(void)
+{
+ rtnl_link_unregister_info(&dummy_info_ops);
+}
+
+/** @} */