X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fstream-ssl.h;h=030f66225ba7883f81fffa89d3fcd6623e92583e;hb=HEAD;hp=3c2a8986a5215b26e0f1038a364f6d299bd71810;hpb=9467fe624698a9b72f81bb1ddfce33a5fc85281c;p=sliver-openvswitch.git diff --git a/lib/stream-ssl.h b/lib/stream-ssl.h index 3c2a8986a..030f66225 100644 --- a/lib/stream-ssl.h +++ b/lib/stream-ssl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,17 +18,18 @@ #include -#ifdef HAVE_OPENSSL bool stream_ssl_is_configured(void); void stream_ssl_set_private_key_file(const char *file_name); void stream_ssl_set_certificate_file(const char *file_name); void stream_ssl_set_ca_cert_file(const char *file_name, bool bootstrap); void stream_ssl_set_peer_ca_cert_file(const char *file_name); +void stream_ssl_set_key_and_cert(const char *private_key_file, + const char *certificate_file); #define STREAM_SSL_LONG_OPTIONS \ - {"private-key", required_argument, 0, 'p'}, \ - {"certificate", required_argument, 0, 'c'}, \ - {"ca-cert", required_argument, 0, 'C'}, + {"private-key", required_argument, NULL, 'p'}, \ + {"certificate", required_argument, NULL, 'c'}, \ + {"ca-cert", required_argument, NULL, 'C'} #define STREAM_SSL_OPTION_HANDLERS \ case 'p': \ @@ -42,13 +43,5 @@ void stream_ssl_set_peer_ca_cert_file(const char *file_name); case 'C': \ stream_ssl_set_ca_cert_file(optarg, false); \ break; -#else /* !HAVE_OPENSSL */ -static inline bool stream_ssl_is_configured(void) -{ - return false; -} -#define STREAM_SSL_LONG_OPTIONS -#define STREAM_SSL_OPTION_HANDLERS -#endif /* !HAVE_OPENSSL */ #endif /* stream-ssl.h */