X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fstream.c;h=db6ec61bb443aaebf212a4118f7d3224f908e9a0;hb=f479c2f42b01cbb6fb0a60448f314021b1c3c9df;hp=8d97afe98e5c0ff606cc59f76c2a4895a05750fb;hpb=9467fe624698a9b72f81bb1ddfce33a5fc85281c;p=openvswitch diff --git a/lib/stream.c b/lib/stream.c index 8d97afe9..db6ec61b 100644 --- a/lib/stream.c +++ b/lib/stream.c @@ -48,11 +48,17 @@ enum stream_state { static struct stream_class *stream_classes[] = { &tcp_stream_class, &unix_stream_class, +#ifdef HAVE_OPENSSL + &ssl_stream_class, +#endif }; static struct pstream_class *pstream_classes[] = { &ptcp_pstream_class, &punix_pstream_class, +#ifdef HAVE_OPENSSL + &pssl_pstream_class, +#endif }; /* Check the validity of the stream class structures. */ @@ -96,7 +102,7 @@ check_stream_classes(void) * connection methods supported by the stream. */ void stream_usage(const char *name, bool active, bool passive, - bool bootstrap UNUSED) + bool bootstrap OVS_UNUSED) { /* Really this should be implemented via callbacks into the stream * providers, but that seems too heavy-weight to bother with at the