aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-communicator-tcp.c
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2019-12-25 23:19:44 +0900
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2019-12-25 23:19:44 +0900
commit7398be32b31ced600e182a3f63f3eddec0338dd9 (patch)
tree7be73c758ed5742f7bca230de1bbfe72ac0dfc27 /src/transport/gnunet-communicator-tcp.c
parentf98ace798dbb16e6af57e823c30e96031c7df3e0 (diff)
downloadgnunet-7398be32b31ced600e182a3f63f3eddec0338dd9.tar.gz
gnunet-7398be32b31ced600e182a3f63f3eddec0338dd9.zip
fix kx
Diffstat (limited to 'src/transport/gnunet-communicator-tcp.c')
-rw-r--r--src/transport/gnunet-communicator-tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/gnunet-communicator-tcp.c b/src/transport/gnunet-communicator-tcp.c
index 7207eb922..0b7f6ab46 100644
--- a/src/transport/gnunet-communicator-tcp.c
+++ b/src/transport/gnunet-communicator-tcp.c
@@ -1553,7 +1553,7 @@ transmit_kx (struct Queue *queue,
1553 struct TCPConfirmation tc; 1553 struct TCPConfirmation tc;
1554 1554
1555 memcpy (queue->cwrite_buf, epub, sizeof(*epub)); 1555 memcpy (queue->cwrite_buf, epub, sizeof(*epub));
1556 queue->cwrite_off = sizeof(epub); 1556 queue->cwrite_off = sizeof(*epub);
1557 /* compute 'tc' and append in encrypted format to cwrite_buf */ 1557 /* compute 'tc' and append in encrypted format to cwrite_buf */
1558 tc.sender = my_identity; 1558 tc.sender = my_identity;
1559 tc.monotonic_time = 1559 tc.monotonic_time =
@@ -1621,7 +1621,7 @@ decrypt_and_check_tc (struct Queue *queue,
1621 tc, 1621 tc,
1622 sizeof(*tc), 1622 sizeof(*tc),
1623 &ibuf[sizeof(struct GNUNET_CRYPTO_EcdhePublicKey)], 1623 &ibuf[sizeof(struct GNUNET_CRYPTO_EcdhePublicKey)],
1624 sizeof(tc))); 1624 sizeof(*tc)));
1625 ths.purpose.purpose = htonl (GNUNET_SIGNATURE_COMMUNICATOR_TCP_HANDSHAKE); 1625 ths.purpose.purpose = htonl (GNUNET_SIGNATURE_COMMUNICATOR_TCP_HANDSHAKE);
1626 ths.purpose.size = htonl (sizeof(ths)); 1626 ths.purpose.size = htonl (sizeof(ths));
1627 ths.sender = tc->sender; 1627 ths.sender = tc->sender;