Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v6.17 18 lines 453 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* OpenVPN data channel offload 3 * 4 * Copyright (C) 2020-2025 OpenVPN, Inc. 5 * 6 * Author: Antonio Quartulli <antonio@openvpn.net> 7 */ 8 9#ifndef _NET_OVPN_NETLINK_H_ 10#define _NET_OVPN_NETLINK_H_ 11 12int ovpn_nl_register(void); 13void ovpn_nl_unregister(void); 14 15int ovpn_nl_peer_del_notify(struct ovpn_peer *peer); 16int ovpn_nl_key_swap_notify(struct ovpn_peer *peer, u8 key_id); 17 18#endif /* _NET_OVPN_NETLINK_H_ */