git subrepo pull --force deps/lightrec
[pcsx_rearmed.git] / deps / libretro-common / include / net / net_socket_ssl.h
CommitLineData
3719602c
PC
1/* Copyright (C) 2010-2020 The RetroArch team
2 *
3 * ---------------------------------------------------------------------------------------
4 * The following license statement only applies to this file (net_socket.h).
5 * ---------------------------------------------------------------------------------------
6 *
7 * Permission is hereby granted, free of charge,
8 * to any person obtaining a copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation the rights to
10 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
11 * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
16 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 */
22
23#ifndef _LIBRETRO_SDK_NET_SOCKET_SSL_H
24#define _LIBRETRO_SDK_NET_SOCKET_SSL_H
25
26#include <stdlib.h>
27#include <boolean.h>
28#include <retro_common_api.h>
29
30RETRO_BEGIN_DECLS
31
32void* ssl_socket_init(int fd, const char *domain);
33
34int ssl_socket_connect(void *state_data, void *data, bool timeout_enable, bool nonblock);
35
36int ssl_socket_send_all_blocking(void *state_data, const void *data_, size_t size, bool no_signal);
37
38ssize_t ssl_socket_send_all_nonblocking(void *state_data, const void *data_, size_t size, bool no_signal);
39
40int ssl_socket_receive_all_blocking(void *state_data, void *data_, size_t size);
41
42ssize_t ssl_socket_receive_all_nonblocking(void *state_data, bool *error, void *data_, size_t size);
43
44void ssl_socket_close(void *state_data);
45
46void ssl_socket_free(void *state_data);
47
48RETRO_END_DECLS
49
50#endif