2020-09-29 16:42:22 +02:00
|
|
|
/* SPDX-License-Identifier: LGPL-2.1+ */
|
2015-09-04 18:11:15 +02:00
|
|
|
/*
|
2019-10-01 09:20:35 +02:00
|
|
|
* Copyright (C) 2015 Red Hat, Inc.
|
2015-09-04 18:11:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __NM_DEVICE_TUN_H__
|
|
|
|
|
#define __NM_DEVICE_TUN_H__
|
|
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
#if !defined(__NETWORKMANAGER_H_INSIDE__) && !defined(NETWORKMANAGER_COMPILATION)
|
|
|
|
|
#error "Only <NetworkManager.h> can be included directly."
|
2015-09-04 18:11:15 +02:00
|
|
|
#endif
|
|
|
|
|
|
2017-03-09 13:02:20 +01:00
|
|
|
#include "nm-device.h"
|
2015-09-04 18:11:15 +02:00
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
#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_HW_ADDRESS "hw-address"
|
|
|
|
|
#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"
|
2015-09-04 18:11:15 +02:00
|
|
|
|
2016-05-05 09:36:32 +02:00
|
|
|
/**
|
|
|
|
|
* NMDeviceTun:
|
|
|
|
|
*/
|
2019-10-18 08:12:01 +02:00
|
|
|
typedef struct _NMDeviceTunClass NMDeviceTunClass;
|
2015-09-04 18:11:15 +02:00
|
|
|
|
|
|
|
|
NM_AVAILABLE_IN_1_2
|
2020-09-28 16:03:33 +02:00
|
|
|
GType nm_device_tun_get_type(void);
|
2015-09-04 18:11:15 +02:00
|
|
|
|
|
|
|
|
NM_AVAILABLE_IN_1_2
|
2020-09-28 16:03:33 +02:00
|
|
|
NM_DEPRECATED_IN_1_24_FOR(nm_device_get_hw_address)
|
|
|
|
|
const char *nm_device_tun_get_hw_address(NMDeviceTun *device);
|
2020-03-05 18:56:07 +01:00
|
|
|
|
2015-09-04 18:11:15 +02:00
|
|
|
NM_AVAILABLE_IN_1_2
|
2020-09-28 16:03:33 +02:00
|
|
|
const char *nm_device_tun_get_mode(NMDeviceTun *device);
|
2015-09-04 18:11:15 +02:00
|
|
|
NM_AVAILABLE_IN_1_2
|
2020-09-28 16:03:33 +02:00
|
|
|
gint64 nm_device_tun_get_owner(NMDeviceTun *device);
|
2015-09-04 18:11:15 +02:00
|
|
|
NM_AVAILABLE_IN_1_2
|
2020-09-28 16:03:33 +02:00
|
|
|
gint64 nm_device_tun_get_group(NMDeviceTun *device);
|
2015-09-04 18:11:15 +02:00
|
|
|
NM_AVAILABLE_IN_1_2
|
2020-09-28 16:03:33 +02:00
|
|
|
gboolean nm_device_tun_get_no_pi(NMDeviceTun *device);
|
2015-09-04 18:11:15 +02:00
|
|
|
NM_AVAILABLE_IN_1_2
|
2020-09-28 16:03:33 +02:00
|
|
|
gboolean nm_device_tun_get_vnet_hdr(NMDeviceTun *device);
|
2015-09-04 18:11:15 +02:00
|
|
|
NM_AVAILABLE_IN_1_2
|
2020-09-28 16:03:33 +02:00
|
|
|
gboolean nm_device_tun_get_multi_queue(NMDeviceTun *device);
|
2015-09-04 18:11:15 +02:00
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
|
|
#endif /* __NM_DEVICE_TUN_H__ */
|