X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=stream.h;h=6c757a19ff29224f1049c2fc8554d4c24f36af0a;hp=9995765b2db95042fbe1c6369e9d3c2114896400;hb=f0621e41fdb96ce1bd58e7561e0aa76345072ba3;hpb=513af50c3e3454aafc25e97a7d20c206006e4d4c diff --git a/stream.h b/stream.h index 9995765..6c757a1 100644 --- a/stream.h +++ b/stream.h @@ -72,7 +72,7 @@ struct Stream { // How many bytes this stream have received. Can very well be larger // than , since the buffer wraps. - size_t bytes_received; + size_t bytes_received = 0; // A list of points in the stream that is suitable to start new clients at // (after having sent the header). Empty if no such point exists yet. @@ -88,7 +88,7 @@ struct Stream { std::vector to_process; // Maximum pacing rate for the stream. - uint32_t pacing_rate; + uint32_t pacing_rate = ~0U; // Queued data, if any. Protected by . // The data pointers in the iovec are owned by us.