1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2/*
3 * Copyright (C) 2018 Javier Arteaga <jarteaga@jbeta.is>
4 */
5
6#ifndef __NM_DEVICE_WIREGUARD_H__
7#define __NM_DEVICE_WIREGUARD_H__
8
9#if !defined(__NETWORKMANAGER_H_INSIDE__) && !defined(NETWORKMANAGER_COMPILATION)
10#error "Only <NetworkManager.h> can be included directly."
11#endif
12
13#include "nm-device.h"
14
15G_BEGIN_DECLS
16
17#define NM_TYPE_DEVICE_WIREGUARD (nm_device_wireguard_get_type())
18#define NM_DEVICE_WIREGUARD(obj) \
19 (G_TYPE_CHECK_INSTANCE_CAST((obj), NM_TYPE_DEVICE_WIREGUARD, NMDeviceWireGuard))
20#define NM_DEVICE_WIREGUARD_CLASS(klass) \
21 (G_TYPE_CHECK_CLASS_CAST((klass), NM_TYPE_DEVICE_WIREGUARD, NMDeviceWireGuardClass))
22#define NM_IS_DEVICE_WIREGUARD(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), NM_TYPE_DEVICE_WIREGUARD))
23#define NM_IS_DEVICE_WIREGUARD_CLASS(klass) \
24 (G_TYPE_CHECK_CLASS_TYPE((klass), NM_TYPE_DEVICE_WIREGUARD))
25#define NM_DEVICE_WIREGUARD_GET_CLASS(obj) \
26 (G_TYPE_INSTANCE_GET_CLASS((obj), NM_TYPE_DEVICE_WIREGUARD, NMDeviceWireGuardClass))
27
28/**
29 * NMDeviceWireGuard:
30 */
31typedef struct _NMDeviceWireGuardClass NMDeviceWireGuardClass;
32
33#define NM_DEVICE_WIREGUARD_PUBLIC_KEY "public-key"
34#define NM_DEVICE_WIREGUARD_LISTEN_PORT "listen-port"
35#define NM_DEVICE_WIREGUARD_FWMARK "fwmark"
36
37NM_AVAILABLE_IN_1_14
38GType nm_device_wireguard_get_type(void);
39
40NM_AVAILABLE_IN_1_14
41GBytes *nm_device_wireguard_get_public_key(NMDeviceWireGuard *device);
42NM_AVAILABLE_IN_1_14
43guint16 nm_device_wireguard_get_listen_port(NMDeviceWireGuard *device);
44NM_AVAILABLE_IN_1_14
45guint32 nm_device_wireguard_get_fwmark(NMDeviceWireGuard *device);
46
47G_END_DECLS
48
49#endif /* __NM_DEVICE_WIREGUARD_H__ */
50

source code of include/libnm/nm-device-wireguard.h