diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-11-20 02:17:15 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-11-20 02:17:15 +0100 |
commit | c6cce0f5aac6640d5946c7ba7a258a04deac9423 (patch) | |
tree | d3ecc15e3de49b4e8327f4c5b3e5272c2119a4ea /src/methods/null | |
parent | b5112ff67f3dd5bb263f5ca6283f170906acaab6 (diff) | |
download | fastd-c6cce0f5aac6640d5946c7ba7a258a04deac9423.tar fastd-c6cce0f5aac6640d5946c7ba7a258a04deac9423.zip |
Replace max_packet_size functions by a max_overhead field
Diffstat (limited to 'src/methods/null')
-rw-r--r-- | src/methods/null/null.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/methods/null/null.c b/src/methods/null/null.c index 1b50cfb..3f23866 100644 --- a/src/methods/null/null.c +++ b/src/methods/null/null.c @@ -37,10 +37,6 @@ static bool method_provides(const char *name) { return !strcmp(name, "null"); } -static size_t method_max_packet_size(fastd_context_t *ctx) { - return fastd_max_packet_size(ctx); -} - static size_t method_key_length(fastd_context_t *ctx UNUSED, const char *name UNUSED) { return 0; } @@ -86,7 +82,7 @@ static bool method_passthrough(fastd_context_t *ctx UNUSED, fastd_peer_t *peer U const fastd_method_t fastd_method_null = { .provides = method_provides, - .max_packet_size = method_max_packet_size, + .max_overhead = 0, .min_encrypt_head_space = 0, .min_decrypt_head_space = 0, .min_encrypt_tail_space = 0, |