summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2007-01-31 04:43:40 +0100
committerMichael Brown2007-01-31 04:43:40 +0100
commit21f3789ec84c3ec9c708f9bd3012953ef7b2c0db (patch)
tree8d754fb4f5a9933e28912b263da537b8b0776007 /src
parent...but not when it's being used as a digest algorithm... (diff)
downloadipxe-21f3789ec84c3ec9c708f9bd3012953ef7b2c0db.tar.gz
ipxe-21f3789ec84c3ec9c708f9bd3012953ef7b2c0db.tar.xz
ipxe-21f3789ec84c3ec9c708f9bd3012953ef7b2c0db.zip
Swap downstream/upstream order so that debug messages for filters show
up in the same colour as debug messages for the application stream.
Diffstat (limited to 'src')
-rw-r--r--src/include/gpxe/filter.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/gpxe/filter.h b/src/include/gpxe/filter.h
index 96c39e0de..285d3ea97 100644
--- a/src/include/gpxe/filter.h
+++ b/src/include/gpxe/filter.h
@@ -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 );