]> tinc-vpn.org Git - tinc/blobdiff - src/protocol_auth.c
Use the crypto wrappers again instead of calling OpenSSL directly.
[tinc] / src / protocol_auth.c
index 291c4b0176f02a25978924551f9c0d66fb98e0b7..0471932a2c33a51da91658ac88846bc05ad14a7d 100644 (file)
@@ -40,6 +40,8 @@
 bool send_id(connection_t *c) {
        cp();
 
+       gettimeofday(&c->start, NULL);
+
        return send_request(c, "%d %s %d", ID, myself->connection->name,
                                                myself->connection->protocol_version);
 }
@@ -333,6 +335,7 @@ bool chal_reply_h(connection_t *c, char *request) {
         */
 
        free(c->hischallenge);
+       c->hischallenge = NULL;
        c->allow_request = ACK;
 
        return send_ack(c);