]> git.sesse.net Git - cubemap/commitdiff
Fix UDPInput serialization.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 12 Apr 2013 20:08:09 +0000 (22:08 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 12 Apr 2013 20:08:09 +0000 (22:08 +0200)
udpinput.cpp

index cd66f16debff02b6edf6426c136b84a46a1bf7d6..bed7b446a8285d76b921b01ede86097918c2f0e5 100644 (file)
@@ -45,6 +45,7 @@ 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;