X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fstream-ssl.h;h=6bea577d32eb69126dc3aa21f21ab8bf9c511c55;hb=a132aa969e44d563df76f783935d48057e9378b2;hp=dd2a16ee889762283d2ff2174872a100ad281240;hpb=02dd3123a0e312f1d33403e744af52dd6096f12d;p=sliver-openvswitch.git diff --git a/lib/stream-ssl.h b/lib/stream-ssl.h index dd2a16ee8..6bea577d3 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 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,15 +20,21 @@ #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_key_and_cert(const char *private_key_file, + const char *certificate_file); + + void stream_ssl_set_peer_ca_cert_file(const char *file_name); /* Define the long options for SSL support. * - * Note that the definition includes a final comma, and therefore a comma - * must not be supplied when using the definition. This is done so that + * Note that the definition includes a final comma, and therefore a comma + * must not be supplied when using the definition. This is done so that * compilation succeeds whether or not HAVE_OPENSSL is defined. */ #define STREAM_SSL_LONG_OPTIONS \ {"private-key", required_argument, 0, 'p'}, \ @@ -48,7 +54,7 @@ void stream_ssl_set_peer_ca_cert_file(const char *file_name); stream_ssl_set_ca_cert_file(optarg, false); \ break; #else /* !HAVE_OPENSSL */ -static inline bool stream_ssl_is_configured(void) +static inline bool stream_ssl_is_configured(void) { return false; }