device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm / nm-device-ip-tunnel.h
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /*
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Lesser General Public
5  * License as published by the Free Software Foundation; either
6  * version 2 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public
14  * License along with this library; if not, write to the
15  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16  * Boston, MA 02110-1301 USA.
17  *
18  * Copyright 2015 Red Hat, Inc.
19  */
20
21 #ifndef __NM_DEVICE_IP_TUNNEL_H__
22 #define __NM_DEVICE_IP_TUNNEL_H__
23
24 #if !defined (__NETWORKMANAGER_H_INSIDE__) && !defined (NETWORKMANAGER_COMPILATION)
25 #error "Only <NetworkManager.h> can be included directly."
26 #endif
27
28 #include <nm-device.h>
29
30 G_BEGIN_DECLS
31
32 #define NM_TYPE_DEVICE_IP_TUNNEL            (nm_device_ip_tunnel_get_type ())
33 #define NM_DEVICE_IP_TUNNEL(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DEVICE_IP_TUNNEL, NMDeviceIPTunnel))
34 #define NM_DEVICE_IP_TUNNEL_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DEVICE_IP_TUNNEL, NMDeviceIPTunnelClass))
35 #define NM_IS_DEVICE_IP_TUNNEL(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DEVICE_IP_TUNNEL))
36 #define NM_IS_DEVICE_IP_TUNNEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DEVICE_IP_TUNNEL))
37 #define NM_DEVICE_IP_TUNNEL_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DEVICE_IP_TUNNEL, NMDeviceIPTunnelClass))
38
39 #define NM_DEVICE_IP_TUNNEL_MODE                "mode"
40 #define NM_DEVICE_IP_TUNNEL_PARENT              "parent"
41 #define NM_DEVICE_IP_TUNNEL_LOCAL               "local"
42 #define NM_DEVICE_IP_TUNNEL_REMOTE              "remote"
43 #define NM_DEVICE_IP_TUNNEL_TTL                 "ttl"
44 #define NM_DEVICE_IP_TUNNEL_TOS                 "tos"
45 #define NM_DEVICE_IP_TUNNEL_PATH_MTU_DISCOVERY  "path-mtu-discovery"
46 #define NM_DEVICE_IP_TUNNEL_INPUT_KEY           "input-key"
47 #define NM_DEVICE_IP_TUNNEL_OUTPUT_KEY          "output-key"
48 #define NM_DEVICE_IP_TUNNEL_ENCAPSULATION_LIMIT "encapsulation-limit"
49 #define NM_DEVICE_IP_TUNNEL_FLOW_LABEL          "flow-label"
50
51 struct _NMDeviceIPTunnel {
52         NMDevice parent;
53 };
54
55 typedef struct {
56         NMDeviceClass parent;
57
58         /*< private >*/
59         gpointer padding[4];
60 } NMDeviceIPTunnelClass;
61
62 NM_AVAILABLE_IN_1_2
63 GType nm_device_ip_tunnel_get_type (void);
64
65 NM_AVAILABLE_IN_1_2
66 NMDevice *             nm_device_ip_tunnel_get_parent (NMDeviceIPTunnel *device);
67 NM_AVAILABLE_IN_1_2
68 NMIPTunnelMode         nm_device_ip_tunnel_get_mode (NMDeviceIPTunnel *device);
69 NM_AVAILABLE_IN_1_2
70 const char *           nm_device_ip_tunnel_get_local (NMDeviceIPTunnel *device);
71 NM_AVAILABLE_IN_1_2
72 const char *           nm_device_ip_tunnel_get_remote (NMDeviceIPTunnel *device);
73 NM_AVAILABLE_IN_1_2
74 guint8                 nm_device_ip_tunnel_get_ttl (NMDeviceIPTunnel *device);
75 NM_AVAILABLE_IN_1_2
76 guint8                 nm_device_ip_tunnel_get_tos (NMDeviceIPTunnel *device);
77 NM_AVAILABLE_IN_1_2
78 gboolean               nm_device_ip_tunnel_get_path_mtu_discovery (NMDeviceIPTunnel *device);
79 NM_AVAILABLE_IN_1_2
80 const char *           nm_device_ip_tunnel_get_input_key (NMDeviceIPTunnel *device);
81 NM_AVAILABLE_IN_1_2
82 const char *           nm_device_ip_tunnel_get_output_key (NMDeviceIPTunnel *device);
83 NM_AVAILABLE_IN_1_2
84 guint8                 nm_device_ip_tunnel_get_encapsulation_limit (NMDeviceIPTunnel *device);
85 NM_AVAILABLE_IN_1_2
86 guint                  nm_device_ip_tunnel_get_flow_label (NMDeviceIPTunnel *device);
87
88 G_END_DECLS
89
90 #endif /* __NM_DEVICE_IP_TUNNEL_H__ */