diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-09-08 20:30:44 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-09-08 20:30:44 +0200 |
commit | 80b1412c65a7a7e209c66684cf78e2ab13cfd5e6 (patch) | |
tree | a148c84c7eb41d25a9a1e709b47a84b43f26805c /src/methods/common.h | |
parent | 58b8518100c8b306d5b6a3d87b4a83a1ae383a09 (diff) | |
download | fastd-80b1412c65a7a7e209c66684cf78e2ab13cfd5e6.tar fastd-80b1412c65a7a7e209c66684cf78e2ab13cfd5e6.zip |
Make stats of reordered packets
Diffstat (limited to 'src/methods/common.h')
-rw-r--r-- | src/methods/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/methods/common.h b/src/methods/common.h index d200931..3f6223f 100644 --- a/src/methods/common.h +++ b/src/methods/common.h @@ -59,7 +59,7 @@ typedef struct fastd_method_common { void fastd_method_common_init(fastd_method_common_t *session, bool initiator); bool fastd_method_is_nonce_valid(const fastd_method_common_t *session, const uint8_t nonce[COMMON_NONCEBYTES], int64_t *age); -bool fastd_method_reorder_check(fastd_peer_t *peer, fastd_method_common_t *session, const uint8_t nonce[COMMON_NONCEBYTES], int64_t age); +fastd_tristate_t fastd_method_reorder_check(fastd_peer_t *peer, fastd_method_common_t *session, const uint8_t nonce[COMMON_NONCEBYTES], int64_t age); /** |