From c137aa04fe1d17919cdd089fecc4b06e46fd6480 Mon Sep 17 00:00:00 2001 From: Jose Marcial Vieira Bisneto Date: Thu, 9 Nov 2017 22:54:19 -0300 Subject: [PATCH] Added missing prototype. --- include/libp2p/identify/identify.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/libp2p/identify/identify.h b/include/libp2p/identify/identify.h index b2bec1a..2502c45 100644 --- a/include/libp2p/identify/identify.h +++ b/include/libp2p/identify/identify.h @@ -31,6 +31,7 @@ struct IdentifyContext { int libp2p_identify_can_handle(const struct StreamMessage* msg); int libp2p_identify_send_protocol(struct Stream* stream); int libp2p_identify_receive_protocol(struct Stream* stream); +int libp2p_identify_handle_message(const struct StreamMessage* msg, struct Stream* stream, void* protocol_context); int libp2p_identify_shutdown(void* protocol_context); struct Libp2pProtocolHandler* libp2p_identify_build_protocol_handler(struct Libp2pVector* handlers);