X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=udpinput.cpp;h=4222515e71c58366cc372c9faf33ea8a5b6788f4;hp=081f631c47e114ba42f7ff46699667d8d1d31c5e;hb=b9f87872a42f32818805f3c2520555f2d6e2928d;hpb=3ce04a3c410c5836394417b19e70f2a95bc8a5e7 diff --git a/udpinput.cpp b/udpinput.cpp index 081f631..4222515 100644 --- a/udpinput.cpp +++ b/udpinput.cpp @@ -18,9 +18,8 @@ using namespace std; extern ServerPool *servers; -UDPInput::UDPInput(const string &stream_id, const string &url) - : stream_id(stream_id), - url(url), +UDPInput::UDPInput(const string &url) + : url(url), sock(-1) { // Should be verified by the caller. @@ -32,8 +31,7 @@ UDPInput::UDPInput(const string &stream_id, const string &url) } UDPInput::UDPInput(const InputProto &serialized) - : stream_id(serialized.stream_id()), - url(serialized.url()), + : url(serialized.url()), sock(serialized.sock()) { // Should be verified by the caller. @@ -47,7 +45,6 @@ UDPInput::UDPInput(const InputProto &serialized) InputProto UDPInput::serialize() const { InputProto serialized; - serialized.set_stream_id(stream_id); serialized.set_url(url); serialized.set_sock(sock); return serialized; @@ -61,7 +58,7 @@ void UDPInput::close_socket() } while (ret == -1 && errno == EINTR); if (ret == -1) { - perror("close()"); + log_perror("close()"); } sock = -1; @@ -69,13 +66,18 @@ void UDPInput::close_socket() void UDPInput::construct_header() { - string header = + http_header = "HTTP/1.0 200 OK\r\n" "Content-type: application/octet-stream\r\n" "Cache-control: no-cache\r\n" "Server: " SERVER_IDENTIFICATION "\r\n" - "\r\n"; - servers->set_header(stream_id, header); + "Connection: close\r\n"; +} + +void UDPInput::add_destination(const string &stream_id) +{ + stream_ids.push_back(stream_id); + servers->set_header(stream_id, http_header, ""); } void UDPInput::do_work() @@ -85,7 +87,8 @@ void UDPInput::do_work() int port_num = atoi(port.c_str()); sock = create_server_socket(port_num, UDP_SOCKET); if (sock == -1) { - log(WARNING, "UDP socket creation failed. Waiting 0.2 seconds and trying again..."); + log(WARNING, "[%s] UDP socket creation failed. Waiting 0.2 seconds and trying again...", + url.c_str()); usleep(200000); continue; } @@ -102,7 +105,7 @@ void UDPInput::do_work() continue; } if (nfds == -1) { - perror("poll"); + log_perror("poll"); close_socket(); continue; } @@ -114,11 +117,13 @@ void UDPInput::do_work() } while (ret == -1 && errno == EINTR); if (ret <= 0) { - perror("recv"); + log_perror("recv"); close_socket(); continue; } - servers->add_data(stream_id, buf, ret); + for (size_t i = 0; i < stream_ids.size(); ++i) { + servers->add_data(stream_ids[i], buf, ret); + } } }