rpcrt4: Use IPPROTO_TCP for SOL_TCP if SOL_TCP isn't defined.

Fixes compilation on *BSD systems.
This commit is contained in:
Rob Shearman 2007-03-01 17:17:54 +00:00 committed by Alexandre Julliard
parent 9222ec3cce
commit 55a103ca5c

View file

@ -74,6 +74,10 @@
#include "rpc_server.h"
#include "epm_towers.h"
#ifndef SOL_TCP
# define SOL_TCP IPPROTO_TCP
#endif
WINE_DEFAULT_DEBUG_CHANNEL(rpc);
static CRITICAL_SECTION connection_pool_cs;