summaryrefslogtreecommitdiff
path: root/src/libsystemd-network/lldp-neighbor.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-06-02 17:49:28 +0200
committerLennart Poettering <lennart@poettering.net>2016-06-06 19:59:08 +0200
commitf137029bb838b64c13bc33ba997094a01b97bb79 (patch)
tree7e288f245c2233949d9758b75210743c81bc7b5b /src/libsystemd-network/lldp-neighbor.h
parenta85b46c33f09d62a066231abdf9727e84a3c07cc (diff)
lldp: rename TLV accessor pseudo-macros
Let's make sure the inline functions for retrieving TLV data actually carry TLV in the name, so that we don#t assume they retrieve the whole, raw packet data.
Diffstat (limited to 'src/libsystemd-network/lldp-neighbor.h')
-rw-r--r--src/libsystemd-network/lldp-neighbor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsystemd-network/lldp-neighbor.h b/src/libsystemd-network/lldp-neighbor.h
index 27a27055f1..c1a7606d06 100644
--- a/src/libsystemd-network/lldp-neighbor.h
+++ b/src/libsystemd-network/lldp-neighbor.h
@@ -83,18 +83,18 @@ static inline void *LLDP_NEIGHBOR_RAW(const sd_lldp_neighbor *n) {
return (uint8_t*) n + ALIGN(sizeof(sd_lldp_neighbor));
}
-static inline uint8_t LLDP_NEIGHBOR_TYPE(const sd_lldp_neighbor *n) {
+static inline uint8_t LLDP_NEIGHBOR_TLV_TYPE(const sd_lldp_neighbor *n) {
return ((uint8_t*) LLDP_NEIGHBOR_RAW(n))[n->rindex] >> 1;
}
-static inline size_t LLDP_NEIGHBOR_LENGTH(const sd_lldp_neighbor *n) {
+static inline size_t LLDP_NEIGHBOR_TLV_LENGTH(const sd_lldp_neighbor *n) {
uint8_t *p;
p = (uint8_t*) LLDP_NEIGHBOR_RAW(n) + n->rindex;
return p[1] + (((size_t) (p[0] & 1)) << 8);
}
-static inline void* LLDP_NEIGHBOR_DATA(const sd_lldp_neighbor *n) {
+static inline void* LLDP_NEIGHBOR_TLV_DATA(const sd_lldp_neighbor *n) {
return ((uint8_t*) LLDP_NEIGHBOR_RAW(n)) + n->rindex + 2;
}