dce
authorChristian Grothoff <christian@grothoff.org>
Mon, 11 Jul 2011 18:57:49 +0000 (18:57 +0000)
committerChristian Grothoff <christian@grothoff.org>
Mon, 11 Jul 2011 18:57:49 +0000 (18:57 +0000)
src/fragmentation/test_frag_ji.c [deleted file]
src/fragmentation/test_fragmentation_enhanced.c [deleted file]

diff --git a/src/fragmentation/test_frag_ji.c b/src/fragmentation/test_frag_ji.c
deleted file mode 100644 (file)
index 4779abd..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-#include "platform.h"\r
-#include "gnunet_protocols.h"\r
-#include "gnunet_fragmentation_lib.h"\r
-\r
-struct combine{\r
-       struct GNUNET_FRAGMENT_Context* ctx;\r
-       struct GNUNET_PeerIdentity* sender;\r
-};\r
-\r
-void message_proc1(void *cls, const struct GNUNET_MessageHeader * msg){\r
-       fprintf(stderr, "enter into message_proc1\n");\r
-\r
-       struct GNUNET_MessageHeader * originalMsg = (struct GNUNET_MessageHeader *)cls;\r
-\r
-       if(ntohs(originalMsg->size) != ntohs(msg->size)){\r
-                       fprintf(stderr, "the received message has the different size with the sent one!\n");\r
-               }\r
-       if(ntohs(originalMsg->type) != ntohs(msg->type)){\r
-                       fprintf(stderr, "the received message has the different type with the sent one!\n");\r
-               }\r
-       if(memcmp(msg, originalMsg, originalMsg->size)){\r
-                       fprintf(stderr, "the received message is not the sent one!\n");\r
-       }\r
-       else{\r
-               fprintf(stdout, "You got the right message!\n");\r
-       }\r
-\r
-}\r
-\r
-void message_proc2(void *cls, const struct GNUNET_MessageHeader * msg){\r
-       printf("enter into message_proc2\n");\r
-       struct combine * com2 = (struct combine* )cls;\r
-       GNUNET_FRAGMENT_process(com2->ctx, com2->sender, msg);\r
-\r
-}\r
-\r
-int\r
-main(int argc, char * argv[]){\r
-       
-       uint32_t mtu = 512;\r
-       struct GNUNET_FRAGMENT_Context * ctx;\r
-       struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *)GNUNET_malloc(sizeof(struct GNUNET_MessageHeader)+2*mtu);\r
-       ctx = GNUNET_FRAGMENT_context_create(NULL, message_proc1, msg);\r
-       msg->size = htons(sizeof(struct GNUNET_MessageHeader)+4*mtu);\r
-       msg->type = htons(GNUNET_MESSAGE_TYPE_HELLO);\r
-       struct GNUNET_PeerIdentity *sender;\r
-       sender = (struct GNUNET_PeerIdentity *)GNUNET_malloc(sizeof(struct GNUNET_PeerIdentity));\r
-\r
-       memset(sender, 9, sizeof(struct GNUNET_PeerIdentity));\r
-\r
-       memset(&msg[1], 5, 2*mtu);\r
-\r
-       struct combine *com;\r
-       com = (struct combine *)GNUNET_malloc(sizeof(struct combine));\r
-       com->ctx = ctx;\r
-       com->sender = sender;\r
-       GNUNET_FRAGMENT_fragment(msg, mtu, message_proc2, com);\r
-       GNUNET_free(msg);\r
-       return 0;\r
-}\r
diff --git a/src/fragmentation/test_fragmentation_enhanced.c b/src/fragmentation/test_fragmentation_enhanced.c
deleted file mode 100644 (file)
index 2636b18..0000000
+++ /dev/null
@@ -1,89 +0,0 @@
-/*\r
-     This file is part of GNUnet.\r
-     (C) 2009 Christian Grothoff (and other contributing authors)\r
-\r
-     GNUnet is free software; you can redistribute it and/or modify\r
-     it under the terms of the GNU General Public License as published\r
-     by the Free Software Foundation; either version 3, or (at your\r
-     option) any later version.\r
-\r
-     GNUnet is distributed in the hope that it will be useful, but\r
-     WITHOUT ANY WARRANTY; without even the implied warranty of\r
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
-     General Public License for more details.\r
-\r
-     You should have received a copy of the GNU General Public License\r
-     along with GNUnet; see the file COPYING.  If not, write to the\r
-     Free Software Foundation, Inc., 59 Temple Place - Suite 330,\r
-     Boston, MA 02111-1307, USA.\r
-*/\r
-\r
-/**\r
- * @file fragmentation/test_fragmentation_enhanced.c\r
- * @brief testcase for the fragmentation.c\r
- * @author Ji Lu\r
- */\r
-\r
-#include "platform.h"\r
-#include "gnunet_protocols.h"\r
-#include "gnunet_fragmentation_lib.h"\r
-\r
-struct combine{\r
-       struct GNUNET_FRAGMENT_Context* ctx;\r
-       struct GNUNET_PeerIdentity* sender;\r
-};\r
-\r
-void message_proc1(void *cls, const struct GNUNET_MessageHeader * msg){\r
-\r
-       fprintf(stderr, "enter into message_proc1\n");\r
-\r
-       struct GNUNET_MessageHeader * originalMsg = (struct GNUNET_MessageHeader *)cls;\r
-\r
-       if(ntohs(originalMsg->size) != ntohs(msg->size)){\r
-                       fprintf(stderr, "the received message has the different size with the sent one!\n");\r
-               }\r
-       if(ntohs(originalMsg->type) != ntohs(msg->type)){\r
-                       fprintf(stderr, "the received message has the different type with the sent one!\n");\r
-               }\r
-       if(memcmp(msg, originalMsg, originalMsg->size)){\r
-                       fprintf(stderr, "the received message is not the sent one!\n");\r
-       }\r
-       else{\r
-                       fprintf(stdout, "You got the right message!\n");\r
-       }\r
-\r
-}\r
-\r
-void message_proc2(void *cls, const struct GNUNET_MessageHeader * msg){\r
-\r
-       printf("enter into message_proc2\n");\r
-\r
-       struct combine * com2 = (struct combine* )cls;\r
-       GNUNET_FRAGMENT_process(com2->ctx, com2->sender, msg);\r
-\r
-}\r
-\r
-int\r
-main(int argc, char * argv[]){\r
-       
-       uint32_t mtu = 512;\r
-       struct GNUNET_FRAGMENT_Context * ctx;\r
-       struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *)GNUNET_malloc(sizeof(struct GNUNET_MessageHeader)+2*mtu);\r
-       ctx = GNUNET_FRAGMENT_context_create(NULL, message_proc1, msg);\r
-       msg->size = htons(sizeof(struct GNUNET_MessageHeader)+4*mtu);\r
-       msg->type = htons(GNUNET_MESSAGE_TYPE_HELLO);\r
-       struct GNUNET_PeerIdentity *sender;\r
-       sender = (struct GNUNET_PeerIdentity *)GNUNET_malloc(sizeof(struct GNUNET_PeerIdentity));\r
-\r
-       memset(sender, 9, sizeof(struct GNUNET_PeerIdentity));\r
-\r
-       memset(&msg[1], 5, 2*mtu);\r
-\r
-       struct combine *com;\r
-       com = (struct combine *)GNUNET_malloc(sizeof(struct combine));\r
-       com->ctx = ctx;\r
-       com->sender = sender;\r
-       GNUNET_FRAGMENT_fragment(msg, mtu, message_proc2, com);\r
-       GNUNET_free(msg);\r
-       return 0;\r
-}\r