Added support for static ARP table entries (added option ETHARP_SUPPORT_STATIC_ENTRIES) (+ added test); refactored the etharp code a bit

This commit is contained in:
goldsimon
2010-03-20 11:45:25 +00:00
parent 385d044f7d
commit 5fd410db4b
7 changed files with 589 additions and 229 deletions

View File

@@ -4,6 +4,7 @@
#include "tcp/test_tcp.h"
#include "tcp/test_tcp_oos.h"
#include "core/test_mem.h"
#include "etharp/test_etharp.h"
#include "lwip/init.h"
@@ -18,6 +19,7 @@ int main()
tcp_suite,
tcp_oos_suite,
mem_suite,
etharp_suite,
};
size_t num = sizeof(suites)/sizeof(void*);
LWIP_ASSERT("No suites defined", num > 0);