mirror of https://github.com/ipxe/ipxe.git
Swap downstream/upstream order so that debug messages for filters show
up in the same colour as debug messages for the application stream.pull/1/head
parent
1fbd6f7d76
commit
21f3789ec8
|
@ -10,18 +10,18 @@
|
||||||
|
|
||||||
/** A filter stream */
|
/** A filter stream */
|
||||||
struct filter_stream {
|
struct filter_stream {
|
||||||
/** Upstream
|
|
||||||
*
|
|
||||||
* This is the end pointing towards the top-level application
|
|
||||||
* (e.g. HTTP).
|
|
||||||
*/
|
|
||||||
struct stream_connection upstream;
|
|
||||||
/** Downstream
|
/** Downstream
|
||||||
*
|
*
|
||||||
* This is the end pointing towards the bottom-level
|
* This is the end pointing towards the bottom-level
|
||||||
* connection (e.g. TCP).
|
* connection (e.g. TCP).
|
||||||
*/
|
*/
|
||||||
struct stream_application downstream;
|
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 );
|
extern void filter_connected ( struct stream_application *app );
|
||||||
|
|
Loading…
Reference in New Issue