diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-01-14 00:59:49 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-01-14 00:59:49 +0100 |
commit | 51a1da3272c58e631fc5cecb181327bcceb5f311 (patch) | |
tree | a214a6a609a71023c472cd998f11225b3f9a5332 /src/handshake.h | |
parent | 7815904f1136339d47329a3871d9939eac34f830 (diff) | |
download | fastd-51a1da3272c58e631fc5cecb181327bcceb5f311.tar fastd-51a1da3272c58e631fc5cecb181327bcceb5f311.zip |
Allow to configure methods per peer group
Diffstat (limited to 'src/handshake.h')
-rw-r--r-- | src/handshake.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handshake.h b/src/handshake.h index f432f64..70d7a16 100644 --- a/src/handshake.h +++ b/src/handshake.h @@ -100,7 +100,7 @@ struct fastd_handshake_buffer { fastd_handshake_buffer_t fastd_handshake_new_init(size_t tail_space); -fastd_handshake_buffer_t fastd_handshake_new_reply(uint8_t type, bool little_endian, const fastd_method_info_t *method, bool with_method_list, size_t tail_space); +fastd_handshake_buffer_t fastd_handshake_new_reply(uint8_t type, bool little_endian, const fastd_method_info_t *method, const fastd_string_stack_t *methods, size_t tail_space); void fastd_handshake_handle(fastd_socket_t *sock, const fastd_peer_address_t *local_addr, const fastd_peer_address_t *remote_addr, fastd_peer_t *peer, fastd_buffer_t buffer); |