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 
12 int ovpn_nl_register(void);
13 void ovpn_nl_unregister(void);
14 
15 int ovpn_nl_peer_del_notify(struct ovpn_peer *peer);
16 int ovpn_nl_key_swap_notify(struct ovpn_peer *peer, u8 key_id);
17 
18 #endif /* _NET_OVPN_NETLINK_H_ */
19