From 805f495d848d1f54b6745cb2e9b49b7a7b276718 Mon Sep 17 00:00:00 2001 From: christiaans Date: Mon, 6 Dec 2004 11:50:53 +0000 Subject: [PATCH] christiaans: Fixed SO_REUSE default to 0. Actually we should fix udp so it won't depend on the socket layer. --- src/include/lwip/opt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/opt.h b/src/include/lwip/opt.h index 762da668..3525e2fe 100644 --- a/src/include/lwip/opt.h +++ b/src/include/lwip/opt.h @@ -339,7 +339,7 @@ a lot of data that needs to be copied, this should be set high. */ /* ---------- Socket Options ---------- */ /* Enable SO_REUSEADDR and SO_REUSEPORT options */ #ifndef SO_REUSE -# define SO_REUSE 1 +# define SO_REUSE 0 #endif