From: Michael Brown Date: Wed, 31 Jan 2007 03:43:40 +0000 (+0000) Subject: Swap downstream/upstream order so that debug messages for filters show X-Git-Tag: v0.9.3~485 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21f3789ec84c3ec9c708f9bd3012953ef7b2c0db;p=thirdparty%2Fipxe.git Swap downstream/upstream order so that debug messages for filters show up in the same colour as debug messages for the application stream. --- 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 );