summaryrefslogtreecommitdiffstats
path: root/src/handshake.h
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-10-22 02:16:32 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-10-22 02:23:15 +0200
commit6359772b9cf6e8b9ffee1ca98413675a4357616f (patch)
treee965b4fd39d21fa4b1f30efe351a020584288835 /src/handshake.h
parent50b83be77b44fa173e3d2e59bb845e761e80caaa (diff)
downloadfastd-6359772b9cf6e8b9ffee1ca98413675a4357616f.tar
fastd-6359772b9cf6e8b9ffee1ca98413675a4357616f.zip
Use big endian for handshake field values by default
At the moment the only multi-byte field is the MTU; it is kept in little endian to provide backwards compatiblity. Future fields will be big endian.
Diffstat (limited to 'src/handshake.h')
-rw-r--r--src/handshake.h20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/handshake.h b/src/handshake.h
index a77b730..760d21b 100644
--- a/src/handshake.h
+++ b/src/handshake.h
@@ -156,27 +156,35 @@ static inline void fastd_handshake_add_uint8(fastd_buffer_t *buffer, fastd_hands
static inline void fastd_handshake_add_uint16(fastd_buffer_t *buffer, fastd_handshake_record_type_t type, uint16_t value) {
uint8_t *dst = fastd_handshake_extend(buffer, type, 2);
- dst[0] = value;
- dst[1] = value >> 8;
+ dst[0] = value >> 8;
+ dst[1] = value;
}
/** Adds an uint24 TLV record of given type and value to a handshake buffer */
static inline void fastd_handshake_add_uint24(fastd_buffer_t *buffer, fastd_handshake_record_type_t type, uint32_t value) {
uint8_t *dst = fastd_handshake_extend(buffer, type, 3);
- dst[0] = value;
+ dst[0] = value >> 16;
dst[1] = value >> 8;
- dst[2] = value >> 16;
+ dst[2] = value;
}
/** Adds an uint32 TLV record of given type and value to a handshake buffer */
static inline void fastd_handshake_add_uint32(fastd_buffer_t *buffer, fastd_handshake_record_type_t type, uint32_t value) {
uint8_t *dst = fastd_handshake_extend(buffer, type, 4);
+ dst[0] = value >> 24;
+ dst[1] = value >> 16;
+ dst[2] = value >> 8;
+ dst[3] = value;
+}
+
+/** Adds an uint16 TLV record of given type and value to a handshake buffer encoded as little endian */
+static inline void fastd_handshake_add_uint16_le(fastd_buffer_t *buffer, fastd_handshake_record_type_t type, uint16_t value) {
+ uint8_t *dst = fastd_handshake_extend(buffer, type, 2);
+
dst[0] = value;
dst[1] = value >> 8;
- dst[2] = value >> 16;
- dst[3] = value >> 24;
}
/** Adds an TLV record of given type and value to a handshake buffer, automatically using a 1- to 4-byte value */