]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/networkd-lldp-tx.h
firstboot: port to make_salt()
[thirdparty/systemd.git] / src / network / networkd-lldp-tx.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include "conf-parser.h"
5 #include "networkd-link.h"
6
7 typedef enum LLDPEmit {
8 LLDP_EMIT_NO,
9 LLDP_EMIT_NEAREST_BRIDGE,
10 LLDP_EMIT_NON_TPMR_BRIDGE,
11 LLDP_EMIT_CUSTOMER_BRIDGE,
12 _LLDP_EMIT_MAX,
13 } LLDPEmit;
14
15 int link_lldp_emit_start(Link *link);
16 void link_lldp_emit_stop(Link *link);
17
18 CONFIG_PARSER_PROTOTYPE(config_parse_lldp_emit);