summaryrefslogtreecommitdiffstats
path: root/src/handshake.h
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2012-02-27 21:28:40 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2012-02-27 21:28:40 +0100
commite2bcecad821f841ac40d0e0939f5805f8d142700 (patch)
tree9225c3b6d783f67043ac980bd01a8c13e8454fb4 /src/handshake.h
parent13306fc146b4839d511287f29df8572a80bf8914 (diff)
downloadfastd-e2bcecad821f841ac40d0e0939f5805f8d142700.tar
fastd-e2bcecad821f841ac40d0e0939f5805f8d142700.zip
Use custom buffers instead of struct iovec
Diffstat (limited to 'src/handshake.h')
-rw-r--r--src/handshake.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handshake.h b/src/handshake.h
index 7fbc549..503d558 100644
--- a/src/handshake.h
+++ b/src/handshake.h
@@ -31,6 +31,6 @@
#include "fastd.h"
void fastd_handshake_send(fastd_context *ctx, const fastd_peer *peer);
-void fastd_handshake_handle(fastd_context *ctx, const fastd_peer *peer, uint8_t packet_type, struct iovec buffer);
+void fastd_handshake_handle(fastd_context *ctx, const fastd_peer *peer, uint8_t packet_type, fastd_buffer buffer);
#endif /* _FASTD_HANDSHAKE_H_ */