X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=udpinput.cpp;h=93eaaa76801c0dbab7383e2e7b8902b5fd408ea0;hb=f0621e41fdb96ce1bd58e7561e0aa76345072ba3;hp=001ef5f6d3db7a5fbf89ec279482b27241eb1a16;hpb=07569f8e011cd9b064c64bef1ce56f77bf7ddf53;p=cubemap diff --git a/udpinput.cpp b/udpinput.cpp index 001ef5f..93eaaa7 100644 --- a/udpinput.cpp +++ b/udpinput.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include #include "acceptor.h" @@ -40,8 +41,9 @@ bool parse_ip_address(const string &ip, sockaddr_storage *addr) ip.c_str()); return false; } - if (inet_pton(AF_INET6, ip.c_str(), &addr6->sin6_addr) != 1) { - log(ERROR, "'%s' is not a valid IPv6 address"); + string raw_ip(ip.begin() + 1, ip.end() - 1); + if (inet_pton(AF_INET6, raw_ip.c_str(), &addr6->sin6_addr) != 1) { + log(ERROR, "'%s' is not a valid IPv6 address", raw_ip.c_str()); return false; } } else { @@ -111,11 +113,9 @@ UDPInput::UDPInput(const string &url) construct_header(); - pthread_mutex_init(&stats_mutex, NULL); + pthread_mutex_init(&stats_mutex, nullptr); stats.url = url; - stats.bytes_received = 0; - stats.data_bytes_received = 0; - stats.connect_time = time(NULL); + stats.connect_time = time(nullptr); } UDPInput::UDPInput(const InputProto &serialized) @@ -129,14 +129,14 @@ UDPInput::UDPInput(const InputProto &serialized) construct_header(); - pthread_mutex_init(&stats_mutex, NULL); + pthread_mutex_init(&stats_mutex, nullptr); stats.url = url; stats.bytes_received = serialized.bytes_received(); stats.data_bytes_received = serialized.data_bytes_received(); if (serialized.has_connect_time()) { stats.connect_time = serialized.connect_time(); } else { - stats.connect_time = time(NULL); + stats.connect_time = time(nullptr); } } @@ -148,6 +148,7 @@ InputProto UDPInput::serialize() const serialized.set_bytes_received(stats.bytes_received); serialized.set_data_bytes_received(stats.data_bytes_received); serialized.set_connect_time(stats.connect_time); + serialized.set_is_metacube_encoded(false); return serialized; } @@ -201,7 +202,7 @@ void UDPInput::do_work() } // Wait for a packet, or a wakeup. - bool activity = wait_for_activity(sock, POLLIN, NULL); + bool activity = wait_for_activity(sock, POLLIN, nullptr); if (!activity) { // Most likely, should_stop was set. continue; @@ -223,9 +224,9 @@ void UDPInput::do_work() stats.bytes_received += ret; stats.data_bytes_received += ret; } - - for (size_t i = 0; i < stream_indices.size(); ++i) { - servers->add_data(stream_indices[i], packet_buf, ret, SUITABLE_FOR_STREAM_START); + + for (size_t stream_index : stream_indices) { + servers->add_data(stream_index, packet_buf, ret, /*metacube_flags=*/0); } } }