X-Git-Url: http://git.scottworley.com/tattlekey/blobdiff_plain/50435977481a94712de2c37793eed369f1fe4431..c13b90631df5a49239a321369b406fc9b56af501:/client/net.c diff --git a/client/net.c b/client/net.c index fa5d07b..3d4be8c 100644 --- a/client/net.c +++ b/client/net.c @@ -34,7 +34,7 @@ static void net_local_init() { if (the_pcb) return; - epoch = get_rand_32(); + new_epoch(); the_pcb = udp_new(); if (!the_pcb) @@ -48,6 +48,8 @@ static void net_local_init() { signal_error_by_blinking(); } +void new_epoch() { epoch = get_rand_32(); } + struct tattle_message_wire_format { u32_t epoch; u16_t sender;