mirror of
https://github.com/ipxe/ipxe
synced 2026-02-14 02:31:26 +03: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:
@@ -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 );
|
||||||
|
|||||||
Reference in New Issue
Block a user