summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gpxe')
-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 );