X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fstream.c;h=fa5b6d6046d38b2ab72fadea9417cc32a34fb5f3;hb=4f150744921f02fd208b8bc59beb92270f77b924;hp=2e7accb806efade887ca63e3ba4f9e88852e92ca;hpb=7ff04d92445beaaea4123cbc3083d950278b1d55;p=sliver-openvswitch.git diff --git a/lib/stream.c b/lib/stream.c index 2e7accb80..fa5b6d604 100644 --- a/lib/stream.c +++ b/lib/stream.c @@ -31,9 +31,11 @@ #include "ofpbuf.h" #include "openflow/nicira-ext.h" #include "openflow/openflow.h" +#include "ovs-thread.h" #include "packets.h" #include "poll-loop.h" #include "random.h" +#include "socket-util.h" #include "util.h" #include "vlog.h" @@ -51,7 +53,7 @@ enum stream_state { static const struct stream_class *stream_classes[] = { &tcp_stream_class, -#ifdef AF_UNIX +#ifndef _WIN32 &unix_stream_class, #endif #ifdef HAVE_OPENSSL @@ -61,7 +63,7 @@ static const struct stream_class *stream_classes[] = { static const struct pstream_class *pstream_classes[] = { &ptcp_pstream_class, -#ifdef AF_UNIX +#ifndef _WIN32 &punix_pstream_class, #endif #ifdef HAVE_OPENSSL @@ -69,6 +71,27 @@ static const struct pstream_class *pstream_classes[] = { #endif }; +#ifdef _WIN32 +static void +do_winsock_start(void) +{ + WSADATA wsaData; + int error; + + error = WSAStartup(MAKEWORD(2, 2), &wsaData); + if (error != 0) { + VLOG_FATAL("WSAStartup failed: %s", sock_strerror(sock_errno())); + } +} + +static void +winsock_start(void) +{ + static pthread_once_t once = PTHREAD_ONCE_INIT; + pthread_once(&once, do_winsock_start); +} +#endif + /* Check the validity of the stream class structures. */ static void check_stream_classes(void) @@ -207,6 +230,10 @@ stream_open(const char *name, struct stream **streamp, uint8_t dscp) COVERAGE_INC(stream_open); +#ifdef _WIN32 + winsock_start(); +#endif + /* Look up the class. */ error = stream_lookup_class(name, &class); if (!class) { @@ -497,6 +524,10 @@ pstream_open(const char *name, struct pstream **pstreamp, uint8_t dscp) COVERAGE_INC(pstream_open); +#ifdef _WIN32 + winsock_start(); +#endif + /* Look up the class. */ error = pstream_lookup_class(name, &class); if (!class) {