diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-06-05 00:44:05 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-06-05 00:44:05 +0200 |
commit | 450bbeb8a00cc695cc2c62f48c821388d6191e00 (patch) | |
tree | 8341bee2e730850ab0c8e8fb37f5d7c2e083e4db /src/method_null.c | |
parent | b6b6e059d7343165633eda7b3b4605220751d2dd (diff) | |
download | fastd-450bbeb8a00cc695cc2c62f48c821388d6191e00.tar fastd-450bbeb8a00cc695cc2c62f48c821388d6191e00.zip |
Add support for receiving reordered packets
Diffstat (limited to 'src/method_null.c')
-rw-r--r-- | src/method_null.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/method_null.c b/src/method_null.c index fbdf1f5..e8b3fca 100644 --- a/src/method_null.c +++ b/src/method_null.c @@ -57,7 +57,7 @@ static bool method_session_want_refresh(fastd_context *ctx, fastd_method_session static void method_session_free(fastd_context *ctx, fastd_method_session_state *session) { } -static bool method_passthrough(fastd_context *ctx, fastd_method_session_state *session, fastd_buffer *out, fastd_buffer in) { +static bool method_passthrough(fastd_context *ctx, fastd_peer *peer, fastd_method_session_state *session, fastd_buffer *out, fastd_buffer in) { *out = in; return true; } |