X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fprotocol.h;h=67fcb32520ea4b30d69a21e8a24040aa7c05585f;hp=f782523ed165712e534e7176286b36666a158c1d;hb=f6905582d0e70ac5b44369780aaa921d9c721197;hpb=f75dcef72a81a337e847adf0bae54198894f65b9 diff --git a/src/protocol.h b/src/protocol.h index f782523e..67fcb325 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: protocol.h,v 1.5.4.35 2002/09/09 21:24:42 guus Exp $ + $Id: protocol.h,v 1.5.4.37 2002/09/09 22:41:56 guus Exp $ */ #ifndef __TINC_PROTOCOL_H__ @@ -60,7 +60,7 @@ typedef struct past_request_t { /* Basic functions */ -extern int send_request(connection_t *, const char *, ...); +extern int send_request(connection_t *, const char *, ...) __attribute__ ((format(printf, 2, 3))); extern int forward_request(connection_t *); extern int receive_request(connection_t *); extern int check_id(char *); @@ -93,7 +93,7 @@ extern int send_tcppacket(connection_t *, vpn_packet_t *); /* Request handlers */ -extern int (*request_handlers[]) (connection_t *); +extern int (*request_handlers[])(connection_t *); extern int id_h(connection_t *); extern int metakey_h(connection_t *);