Commit 0c140700 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

ws2_32: Remove unused function.

parent 9f76085c
...@@ -579,17 +579,6 @@ static int convert_sockopt(INT *level, INT *optname) ...@@ -579,17 +579,6 @@ static int convert_sockopt(INT *level, INT *optname)
return 0; return 0;
} }
static inline BOOL is_timeout_option( int optname )
{
#ifdef SO_RCVTIMEO
if (optname == SO_RCVTIMEO) return TRUE;
#endif
#ifdef SO_SNDTIMEO
if (optname == SO_SNDTIMEO) return TRUE;
#endif
return FALSE;
}
/* ----------------------------------- Per-thread info (or per-process?) */ /* ----------------------------------- Per-thread info (or per-process?) */
static char *strdup_lower(const char *str) static char *strdup_lower(const char *str)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment