Add queue buffers & simulation support to web proxy

This makes a couple of major changes:
-Directly uses EPoll class for managing Seasocks events.
-Adds buffers of queues to web proxy Subscribers so that we can
 transfering data losslessly in log replay.
-Modifies the flatbuffer used for the RTC communications so that
 the webpage can specify whether it wants every message or subsampled
 messages.
-Adds an option to LogReader to let us run past the end of the logfile.

Note that these changes do mean that, for log replay, the web proxy will
load the *entire* logfile into memory. Future changes can optimize this
to, e.g., only load the required channels into memory.

Change-Id: I74e7608c30baa8b36e05c4ab50e12a54bf75aa4c
diff --git a/aos/configuration.h b/aos/configuration.h
index d10d16d..2a37ba8 100644
--- a/aos/configuration.h
+++ b/aos/configuration.h
@@ -45,6 +45,9 @@
 //
 // If the application name is empty, it is ignored.  Maps are processed in
 // reverse order, and application specific first.
+//
+// The config should already be fully merged and sorted (as produced by
+// MergeConfiguration() or any of the associated functions).
 const Channel *GetChannel(const Configuration *config,
                           const std::string_view name,
                           const std::string_view type,