david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

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
1 changed files with 6 additions and 6 deletions

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 );