Commit b4e35f53 authored by Andreas Schmidt's avatar Andreas Schmidt
Browse files

Fix spaces.

parent d7689b13
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -24,9 +24,9 @@

#define MAX_PAYLOAD_LENGTH 65507 // maximum UDP packet length (2^16 - 1 - 8 (UDP Header) - 20 (IP Header))

#define SEQNO_SPACE (UINT16_MAX+1) // 2**16 as seqno is uint16_t
#define SEQNO_SPACE (((uint32_t) UINT16_MAX)+1) // 2**16 as seqno is uint16_t

#define TIMESTAMP_SPACE (UINT32_MAX+1)
#define TIMESTAMP_SPACE (((uint64_t) UINT32_MAX)+1)

#define GF_BITS 8