summaryrefslogtreecommitdiff
path: root/src/devices/nm-device-tun.h
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-04-25 15:46:39 -0400
committerDan Winship <danw@gnome.org>2013-06-04 10:01:13 -0300
commitadd316a40377be0a5f688518ae29170aae1304a7 (patch)
tree4848106dafe6b95bdec4b5c3076f6d11667d0f2a /src/devices/nm-device-tun.h
parent329960bc1880c95b41b6d2c04293053b0e883f47 (diff)
downloadNetworkManager-add316a40377be0a5f688518ae29170aae1304a7.tar.gz
platform, devices: add support for tun and tap devices
Diffstat (limited to 'src/devices/nm-device-tun.h')
-rw-r--r--src/devices/nm-device-tun.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/devices/nm-device-tun.h b/src/devices/nm-device-tun.h
new file mode 100644
index 0000000000..336a9792ef
--- /dev/null
+++ b/src/devices/nm-device-tun.h
@@ -0,0 +1,61 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
+/* NetworkManager -- Network link manager
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Copyright 2013 Red Hat, Inc.
+ */
+
+#ifndef NM_DEVICE_TUN_H
+#define NM_DEVICE_TUN_H
+
+#include <glib-object.h>
+
+#include "nm-device-generic.h"
+
+G_BEGIN_DECLS
+
+#define NM_TYPE_DEVICE_TUN (nm_device_tun_get_type ())
+#define NM_DEVICE_TUN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DEVICE_TUN, NMDeviceTun))
+#define NM_DEVICE_TUN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DEVICE_TUN, NMDeviceTunClass))
+#define NM_IS_DEVICE_TUN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DEVICE_TUN))
+#define NM_IS_DEVICE_TUN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DEVICE_TUN))
+#define NM_DEVICE_TUN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DEVICE_TUN, NMDeviceTunClass))
+
+#define NM_DEVICE_TUN_OWNER "owner"
+#define NM_DEVICE_TUN_GROUP "group"
+#define NM_DEVICE_TUN_MODE "mode"
+#define NM_DEVICE_TUN_NO_PI "no-pi"
+#define NM_DEVICE_TUN_VNET_HDR "vnet-hdr"
+#define NM_DEVICE_TUN_MULTI_QUEUE "multi-queue"
+
+typedef struct {
+ NMDeviceGeneric parent;
+} NMDeviceTun;
+
+typedef struct {
+ NMDeviceGenericClass parent;
+
+} NMDeviceTunClass;
+
+GType nm_device_tun_get_type (void);
+
+NMDevice *nm_device_tun_new (const char *udi,
+ const char *iface,
+ const char *driver);
+
+G_END_DECLS
+
+#endif /* NM_DEVICE_TUN_H */