diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-11-01 15:11:40 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-11-01 15:11:40 +0100 |
commit | cb98cbc593309d4781dfb873b018a5d4e12ad118 (patch) | |
tree | c5c0760dbd36cabec9d421f678b5ebd4d59ed25e /src/handshake.c | |
parent | 86df5dbefec807234e9a458da00acbbd2e0e6649 (diff) | |
download | fastd-cb98cbc593309d4781dfb873b018a5d4e12ad118.tar fastd-cb98cbc593309d4781dfb873b018a5d4e12ad118.zip |
Dynamically create and destroy sockets without fixed binds
Diffstat (limited to 'src/handshake.c')
-rw-r--r-- | src/handshake.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handshake.c b/src/handshake.c index e823a0e..7bd627f 100644 --- a/src/handshake.c +++ b/src/handshake.c @@ -180,7 +180,7 @@ static fastd_string_stack* parse_string_list(uint8_t *data, size_t len) { return ret; } -void fastd_handshake_handle(fastd_context *ctx, const fastd_socket *sock, const fastd_peer_address *address, const fastd_peer_config *peer_conf, fastd_buffer buffer) { +void fastd_handshake_handle(fastd_context *ctx, fastd_socket *sock, const fastd_peer_address *address, const fastd_peer_config *peer_conf, fastd_buffer buffer) { if (buffer.len < sizeof(fastd_packet)) { pr_warn(ctx, "received a short handshake from %I", address); goto end_free; |