projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
3c5655f
)
send_ack() was broken.
author
Guus Sliepen
<guus@tinc-vpn.org>
Sat, 23 Mar 2002 20:01:05 +0000
(20:01 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Sat, 23 Mar 2002 20:01:05 +0000
(20:01 +0000)
src/protocol_auth.c
patch
|
blob
|
history
diff --git
a/src/protocol_auth.c
b/src/protocol_auth.c
index
cbe0958
..
661381b
100644
(file)
--- a/
src/protocol_auth.c
+++ b/
src/protocol_auth.c
@@
-17,7
+17,7
@@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: protocol_auth.c,v 1.1.4.
5 2002/03/22 13:31:18
guus Exp $
+ $Id: protocol_auth.c,v 1.1.4.
6 2002/03/23 20:01:05
guus Exp $
*/
#include "config.h"
*/
#include "config.h"
@@
-473,7
+473,7
@@
cp
gettimeofday(&now, NULL);
c->estimated_weight = (now.tv_sec - c->start.tv_sec) * 1000 + (now.tv_usec - c->start.tv_usec) / 1000;
sockaddr2str(&c->address, &address, &port);
gettimeofday(&now, NULL);
c->estimated_weight = (now.tv_sec - c->start.tv_sec) * 1000 + (now.tv_usec - c->start.tv_usec) / 1000;
sockaddr2str(&c->address, &address, &port);
- x = send_request(c, "%d %s %s %
s %d %lx", ACK, myport, address, port
, c->estimated_weight, c->options);
+ x = send_request(c, "%d %s %s %
d %lx", ACK, myport, address
, c->estimated_weight, c->options);
free(address);
free(port);
cp
free(address);
free(port);
cp