christiaans: Fixed SO_REUSE default to 0. Actually we should fix udp so it won't depend on the socket layer.

This commit is contained in:
christiaans 2004-12-06 11:50:53 +00:00
parent 928dd94ba6
commit 805f495d84

View File

@ -339,7 +339,7 @@ a lot of data that needs to be copied, this should be set high. */
/* ---------- Socket Options ---------- */ /* ---------- Socket Options ---------- */
/* Enable SO_REUSEADDR and SO_REUSEPORT options */ /* Enable SO_REUSEADDR and SO_REUSEPORT options */
#ifndef SO_REUSE #ifndef SO_REUSE
# define SO_REUSE 1 # define SO_REUSE 0
#endif #endif