summaryrefslogtreecommitdiff
path: root/src/libsystemd-network/lldp-port.h
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2015-09-22 15:12:55 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2015-09-22 15:14:49 +0200
commit8955cf0a4586010f913bb7e0f8d05f1fc116c246 (patch)
tree011d1f7c4b22b4ba1d907417e5b43e72e2885656 /src/libsystemd-network/lldp-port.h
parente4c3b8e856024519014bd91bae32b9a4261395a9 (diff)
sd-lldp: hide internal information
Don't export constant that are only used internally.
Diffstat (limited to 'src/libsystemd-network/lldp-port.h')
-rw-r--r--src/libsystemd-network/lldp-port.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libsystemd-network/lldp-port.h b/src/libsystemd-network/lldp-port.h
index b2d3180091..517b162a67 100644
--- a/src/libsystemd-network/lldp-port.h
+++ b/src/libsystemd-network/lldp-port.h
@@ -31,6 +31,14 @@
typedef struct lldp_port lldp_port;
+typedef enum LLDPPortStatus {
+ LLDP_PORT_STATUS_NONE,
+ LLDP_PORT_STATUS_ENABLED,
+ LLDP_PORT_STATUS_DISABLED,
+ _LLDP_PORT_STATUS_MAX,
+ _LLDP_PORT_STATUS_INVALID = -1,
+} LLDPPortStatus;
+
struct lldp_port {
LLDPPortStatus status;