roo_transport
API Documentation for roo_transport
Loading...
Searching...
No Matches
seed.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4
5namespace roo_transport {
6
7// Arbitrary seed value used in the checksum computation of packets sent over
8// the stream. (Incidentally, this is a hash code of an empty packet.)
9static const uint32_t kPacketOverStreamSeed = 0xB45DF9DE;
10
11}
static const uint32_t kPacketOverStreamSeed
Definition seed.h:9