summaryrefslogtreecommitdiffstats
path: root/src/handshake.h
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2015-01-09 08:22:29 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2015-01-09 08:22:29 +0100
commite5826e3c5a317f24c1c1e5b48cc6200e3f81edf2 (patch)
tree63bc60329db27bc1ac7c264b25f302e5a2b5b604 /src/handshake.h
parente9baf5d6cf5559b0327eaef667158e5adf56cf7e (diff)
downloadfastd-e5826e3c5a317f24c1c1e5b48cc6200e3f81edf2.tar
fastd-e5826e3c5a317f24c1c1e5b48cc6200e3f81edf2.zip
More comment fixes
Diffstat (limited to 'src/handshake.h')
-rw-r--r--src/handshake.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handshake.h b/src/handshake.h
index f5582e9..a704782 100644
--- a/src/handshake.h
+++ b/src/handshake.h
@@ -194,7 +194,7 @@ static inline void fastd_handshake_add_uint32(fastd_handshake_buffer_t *buffer,
dst[3] = value;
}
-/** Adds an uint16 TLV record of given type and value to a handshake buffer encoded as little endian */
+/** Adds an uint16 TLV record of given type and value to a handshake buffer (potentially encoded as little endian) */
static inline void fastd_handshake_add_uint16_endian(fastd_handshake_buffer_t *buffer, fastd_handshake_record_type_t type, uint16_t value) {
uint8_t *dst = fastd_handshake_extend(buffer, type, 2);