dynamic loading of network stack no longer needed

This commit is contained in:
Joseph Henry
2017-04-06 19:16:01 -07:00
parent 997f12a592
commit 08cca3c7aa
463 changed files with 136513 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
// Comprehensive stress test for socket-like API
#include <stdio.h>
/****************************************************************************/
/* Test Functions */
/****************************************************************************/
int test_for_correctness()
{
return 0;
}
int ipv4_udp_server()
{
return 0;
}
int ipv6_udp_server()
{
return 0;
}
int ipv4_tcp_server()
{
return 0;
}
int ipv6_tcp_server()
{
return 0;
}
/****************************************************************************/
/* main */
/****************************************************************************/
int main()
{
int test_all = 1;
if(test_all)
{
printf("Testing API calls for correctness\n");
test_for_correctness();
printf("Testing as IPv4 UDP Server\n");
ipv4_udp_server();
printf("Testing as IPv6 UDP Server\n");
ipv6_udp_server();
printf("Testing as IPv4 TCP Server\n");
ipv4_udp_server();
printf("Testing as IPv6 TCP Server\n");
ipv6_udp_server();
printf("Testing \n");
printf("\n");
printf("\n");
}
return 0;
}