- revised packet and socket interface

- tested
This commit is contained in:
Martin Willi
2005-11-07 09:11:58 +00:00
parent e15f7292ec
commit 9317c2a1c6
6 changed files with 94 additions and 39 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ static void test_send_queue_sender(send_queue_test_t * testinfo)
int i;
for (i = 0; i < testinfo->insert_item_count; i++)
{
packet_t *packet = packet_create();
packet_t *packet = packet_create(AF_INET);
testinfo->tester->assert_true(testinfo->tester,(packet != NULL), "create packet call check");
testinfo->tester->assert_true(testinfo->tester,(testinfo->send_queue->add(testinfo->send_queue,packet) == SUCCESS), "add packet call check");
}