|
@@ -10,18 +10,18 @@
|
10
|
10
|
|
11
|
11
|
/** A filter stream */
|
12
|
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
|
13
|
/** Downstream
|
20
|
14
|
*
|
21
|
15
|
* This is the end pointing towards the bottom-level
|
22
|
16
|
* connection (e.g. TCP).
|
23
|
17
|
*/
|
24
|
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
|
27
|
extern void filter_connected ( struct stream_application *app );
|