diff options
author | 2015-01-10 13:30:30 +0100 | |
---|---|---|
committer | 2015-01-10 13:30:30 +0100 | |
commit | 8556d0cdf7058be2c519bd4d8e7006ea9e913527 (patch) | |
tree | 09594058dc17564b4ff3c106581d0856cf69c2d5 /3rdparty/mongoose/examples/websocket_ssl_proxy/ssl_wrapper.h | |
parent | 61f7cd05dfed932dd1be927608a4989c187cc737 (diff) |
Added integral source of mongoose (nw)
Diffstat (limited to '3rdparty/mongoose/examples/websocket_ssl_proxy/ssl_wrapper.h')
-rw-r--r-- | 3rdparty/mongoose/examples/websocket_ssl_proxy/ssl_wrapper.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/3rdparty/mongoose/examples/websocket_ssl_proxy/ssl_wrapper.h b/3rdparty/mongoose/examples/websocket_ssl_proxy/ssl_wrapper.h new file mode 100644 index 00000000000..ccdf780556c --- /dev/null +++ b/3rdparty/mongoose/examples/websocket_ssl_proxy/ssl_wrapper.h @@ -0,0 +1,34 @@ +// Copyright (c) 2014 Cesanta Software Limited +// All rights reserved +// +// This software is dual-licensed: you can redistribute it and/or modify +// it under the terms of the GNU General Public License version 2 as +// published by the Free Software Foundation. For the terms of this +// license, see <http://www.gnu.org/licenses/>. +// +// You are free to use this software under the terms of the GNU General +// Public License, but WITHOUT ANY WARRANTY; without even the implied +// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +// See the GNU General Public License for more details. +// +// Alternatively, you can license this software under a commercial +// license, as set out in <http://cesanta.com/products.html>. +// +// $Date$ + +#ifndef SSL_WRAPPER_HEADER_INCLUDED +#define SSL_WRAPPER_HEADER_INCLUDED + +#ifdef __cplusplus +extern "C" { +#endif // __cplusplus + +void *ssl_wrapper_init(const char *listen_addr, const char *target_addr, + const char **err_msg); +void ssl_wrapper_serve(void *, volatile int *stop_marker); + +#ifdef __cplusplus +} +#endif // __cplusplus + +#endif // SSL_WRAPPER_HEADER_INCLUDED |