Browse Source

Swap downstream/upstream order so that debug messages for filters show

up in the same colour as debug messages for the application stream.
tags/v0.9.3
Michael Brown 18 years ago
parent
commit
21f3789ec8
1 changed files with 6 additions and 6 deletions
  1. 6
    6
      src/include/gpxe/filter.h

+ 6
- 6
src/include/gpxe/filter.h View File

10
 
10
 
11
 /** A filter stream */
11
 /** A filter stream */
12
 struct filter_stream {
12
 struct filter_stream {
13
-	/** Upstream
14
-	 *
15
-	 * This is the end pointing towards the top-level application
16
-	 * (e.g. HTTP).
17
-	 */
18
-	struct stream_connection upstream;
19
 	/** Downstream
13
 	/** Downstream
20
 	 *
14
 	 *
21
 	 * This is the end pointing towards the bottom-level
15
 	 * This is the end pointing towards the bottom-level
22
 	 * connection (e.g. TCP).
16
 	 * connection (e.g. TCP).
23
 	 */
17
 	 */
24
 	struct stream_application downstream;
18
 	struct stream_application downstream;
19
+	/** Upstream
20
+	 *
21
+	 * This is the end pointing towards the top-level application
22
+	 * (e.g. HTTP).
23
+	 */
24
+	struct stream_connection upstream;
25
 };
25
 };
26
 
26
 
27
 extern void filter_connected ( struct stream_application *app );
27
 extern void filter_connected ( struct stream_application *app );

Loading…
Cancel
Save