2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-02-17 02:58:14 +00:00

Swap downstream/upstream order so that debug messages for filters show

up in the same colour as debug messages for the application stream.
This commit is contained in:
Michael Brown 2007-01-31 03:43:40 +00:00
parent 1fbd6f7d76
commit 21f3789ec8

View File

@ -10,18 +10,18 @@
/** 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 );