summaryrefslogtreecommitdiff
path: root/src/grp-network/libnetworkd-core/networkd-lldp-tx.h
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-05-06 16:48:26 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-05-06 16:48:26 -0400
commit91dca19f3ad50c33217d186bda1261228f8c293b (patch)
treec7abc968ed533ca1857d6cec3eb39e5d175d87d7 /src/grp-network/libnetworkd-core/networkd-lldp-tx.h
parent6ecbde8f5a65b922809dd7c077ed8494ca4a7bc9 (diff)
./tools/notsd-move
Diffstat (limited to 'src/grp-network/libnetworkd-core/networkd-lldp-tx.h')
-rw-r--r--src/grp-network/libnetworkd-core/networkd-lldp-tx.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/grp-network/libnetworkd-core/networkd-lldp-tx.h b/src/grp-network/libnetworkd-core/networkd-lldp-tx.h
new file mode 100644
index 0000000000..4680c9d950
--- /dev/null
+++ b/src/grp-network/libnetworkd-core/networkd-lldp-tx.h
@@ -0,0 +1,35 @@
+#pragma once
+
+/***
+ This file is part of systemd.
+
+ Copyright 2016 Lennart Poettering
+
+ systemd is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ systemd is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with systemd; If not, see <http://www.gnu.org/licenses/>.
+***/
+
+#include "networkd-link.h"
+
+typedef enum LLDPEmit {
+ LLDP_EMIT_NO,
+ LLDP_EMIT_NEAREST_BRIDGE,
+ LLDP_EMIT_NON_TPMR_BRIDGE,
+ LLDP_EMIT_CUSTOMER_BRIDGE,
+ _LLDP_EMIT_MAX,
+} LLDPEmit;
+
+int link_lldp_emit_start(Link *link);
+void link_lldp_emit_stop(Link *link);
+
+int config_parse_lldp_emit(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);