]> git.sesse.net Git - cubemap/blobdiff - udpinput.h
Re-run include-what-you-use.
[cubemap] / udpinput.h
index e41266e0dc3340a151d1a1a44a45748dcc628f1a..11a369073ad0ce000fdb5ec680f6e7d4b4a159c9 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef _UDPINPUT_H
 #define _UDPINPUT_H 1
 
+#include <pthread.h>
 #include <string>
 #include <vector>
 
@@ -21,6 +22,8 @@ public:
 
        virtual void add_destination(int stream_index);
 
+       virtual InputStats get_stats() const;
+
 private:
        // Actually gets the packets.
        virtual void do_work();
@@ -39,6 +42,15 @@ private:
 
        // The socket we are receiving on (or -1).
        int sock;
+
+       // Temporary buffer, sized for the maximum size of an UDP packet.
+       char packet_buf[65536];
+
+       // Mutex protecting <stats>.
+       mutable pthread_mutex_t stats_mutex;
+
+       // The current statistics for this connection. Protected by <stats_mutex>.
+       InputStats stats;
 };
 
 #endif  // !defined(_UDPINPUT_H)