[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [gnunet] 11/14: use correct header size calculation in test
From: |
gnunet |
Subject: |
[GNUnet-SVN] [gnunet] 11/14: use correct header size calculation in test |
Date: |
Mon, 23 Jan 2017 14:42:51 +0100 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository gnunet.
commit 55990396cd36175eef320e0ced826639e0945968
Author: Christian Grothoff <address@hidden>
AuthorDate: Mon Jan 23 14:28:30 2017 +0100
use correct header size calculation in test
---
src/cadet/test_cadet_single.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cadet/test_cadet_single.c b/src/cadet/test_cadet_single.c
index 636def35d..d9aa1a214 100644
--- a/src/cadet/test_cadet_single.c
+++ b/src/cadet/test_cadet_single.c
@@ -234,7 +234,7 @@ do_send (void *cls, size_t size, void *buf)
result = GNUNET_SYSERR;
return 0;
}
- m->size = htons (sizeof (struct GNUNET_MessageHeader));
+ m->size = htons (sizeof (struct GNUNET_MessageHeader) + DATA_SIZE);
m->type = htons (1);
memset (&m[1], 0, DATA_SIZE);
GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader) + DATA_SIZE);
--
To stop receiving notification emails like this one, please contact
address@hidden
- [GNUnet-SVN] [gnunet] branch master updated (52255b0df -> ec8163cd8), gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 07/14: handle disconnect properly in test, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 06/14: add generated file to ignore list, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 05/14: get rid of redundant, confusing state, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 12/14: add sender argument to GCCH_handle_local_data so we can implement loopback, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 10/14: towards path desirability calculations, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 02/14: fix shutdown sequence, start to handle loopback, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 11/14: use correct header size calculation in test,
gnunet <=
- [GNUnet-SVN] [gnunet] 01/14: allow more than one ACK being given to us at a time, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 09/14: another special case for loopback, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 13/14: avoid asserting in API on timeout destruction, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 03/14: fix unaligned access, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 04/14: more implementation of loopback handling, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 08/14: beautify disconnect logic a bit, gnunet, 2017/01/23
- [GNUnet-SVN] [gnunet] 14/14: more work on loopback, this time payload transmission (for now without flow control), gnunet, 2017/01/23