X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=udpinput.cpp;h=db544857bf367e0cfb0923c4de7343496d01facd;hp=07bf63d344e8ba6e38d7d8d399acafad3016058c;hb=9abb89bcf7940e2ada9d708f86a218a56334f68d;hpb=ef7f588a9b7a63ba2153cd06ce5322db4453fa16 diff --git a/udpinput.cpp b/udpinput.cpp index 07bf63d..db54485 100644 --- a/udpinput.cpp +++ b/udpinput.cpp @@ -67,10 +67,10 @@ void UDPInput::construct_header() "Connection: close\r\n"; } -void UDPInput::add_destination(const string &stream_id) +void UDPInput::add_destination(int stream_index) { - stream_ids.push_back(stream_id); - servers->set_header(stream_id, http_header, ""); + stream_indices.push_back(stream_index); + servers->set_header(stream_index, http_header, ""); } void UDPInput::do_work() @@ -106,8 +106,8 @@ void UDPInput::do_work() continue; } - for (size_t i = 0; i < stream_ids.size(); ++i) { - servers->add_data(stream_ids[i], buf, ret); + for (size_t i = 0; i < stream_indices.size(); ++i) { + servers->add_data(stream_indices[i], buf, ret); } } }