X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fprotocol_misc.c;h=a4fcd6f7ba7871d706783198cea9203c5450cff2;hb=7b55200887d05c29abb8cea31aa914e03b806e9a;hp=d808d73fa6b6c5473adce1dd485db3a48c096efb;hpb=04543a57e73e29c3e2a1968fd330f03c94dd6059;p=tinc diff --git a/src/protocol_misc.c b/src/protocol_misc.c index d808d73f..a4fcd6f7 100644 --- a/src/protocol_misc.c +++ b/src/protocol_misc.c @@ -44,6 +44,8 @@ bool send_termreq(connection_t *c) { } bool termreq_h(connection_t *c, const char *request) { + (void)c; + (void)request; return false; } @@ -55,6 +57,7 @@ bool send_ping(connection_t *c) { } bool ping_h(connection_t *c, const char *request) { + (void)request; return send_pong(c); } @@ -63,6 +66,7 @@ bool send_pong(connection_t *c) { } bool pong_h(connection_t *c, const char *request) { + (void)request; c->status.pinged = false; /* Successful connection, reset timeout if this is an outgoing connection. */