Browse Source

Add configs that test "NO TCP" and "NO UDP"

master
Dirk Ziegelmeier 8 years ago
parent
commit
dcc3d1ed2e
  1. 4
      examples/example_app/test_configs/opt_no_tcp_dualstack.h
  2. 4
      examples/example_app/test_configs/opt_no_tcp_ipv4only.h
  3. 4
      examples/example_app/test_configs/opt_no_tcp_ipv6only.h
  4. 4
      examples/example_app/test_configs/opt_no_udp_dualstack.h
  5. 4
      examples/example_app/test_configs/opt_no_udp_ipv4only.h
  6. 4
      examples/example_app/test_configs/opt_no_udp_ipv6only.h

4
examples/example_app/test_configs/opt_no_tcp_dualstack.h

@ -0,0 +1,4 @@
#include "test_configs/opt_dualstack.h"
#undef LWIP_TCP
#define LWIP_TCP 0

4
examples/example_app/test_configs/opt_no_tcp_ipv4only.h

@ -0,0 +1,4 @@
#include "test_configs/opt_ipv4only.h"
#undef LWIP_TCP
#define LWIP_TCP 0

4
examples/example_app/test_configs/opt_no_tcp_ipv6only.h

@ -0,0 +1,4 @@
#include "test_configs/opt_ipv6only.h"
#undef LWIP_TCP
#define LWIP_TCP 0

4
examples/example_app/test_configs/opt_no_udp_dualstack.h

@ -0,0 +1,4 @@
#include "test_configs/opt_dualstack.h"
#undef LWIP_UDP
#define LWIP_UDP 0

4
examples/example_app/test_configs/opt_no_udp_ipv4only.h

@ -0,0 +1,4 @@
#include "test_configs/opt_ipv4only.h"
#undef LWIP_UDP
#define LWIP_UDP 0

4
examples/example_app/test_configs/opt_no_udp_ipv6only.h

@ -0,0 +1,4 @@
#include "test_configs/opt_ipv6only.h"
#undef LWIP_UDP
#define LWIP_UDP 0
Loading…
Cancel
Save