up in the same colour as debug messages for the application stream.
/** A filter stream */
struct filter_stream {
- /** Upstream
- *
- * This is the end pointing towards the top-level application
- * (e.g. HTTP).
- */
- struct stream_connection upstream;
/** Downstream
*
* This is the end pointing towards the bottom-level
* connection (e.g. TCP).
*/
struct stream_application downstream;
+ /** Upstream
+ *
+ * This is the end pointing towards the top-level application
+ * (e.g. HTTP).
+ */
+ struct stream_connection upstream;
};
extern void filter_connected ( struct stream_application *app );