From 21f3789ec84c3ec9c708f9bd3012953ef7b2c0db Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Wed, 31 Jan 2007 03:43:40 +0000 Subject: [PATCH] Swap downstream/upstream order so that debug messages for filters show up in the same colour as debug messages for the application stream. --- src/include/gpxe/filter.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/include/gpxe/filter.h b/src/include/gpxe/filter.h index 96c39e0d..285d3ea9 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 );