#include "config.h"
#include "wine/port.h"
#include <sys/types.h>
#include <time.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
#include <assert.h>
#include "wine/library.h"
#include "windef.h"
#include "winbase.h"
#include "wininet.h"
#include "winerror.h"
#include "wincrypt.h"
#include "wine/debug.h"
#include "internet.h"
#include "winsock2.h"
Go to the source code of this file.
Defines |
| #define | NONAMELESSUNION |
| #define | USE_WS_PREFIX |
| #define | RESPONSE_TIMEOUT 30 /* FROM internet.c */ |
Functions |
| | WINE_DEFAULT_DEBUG_CHANNEL (wininet) |
| static DWORD | init_openssl (void) |
| DWORD | create_netconn (BOOL useSSL, server_t *server, DWORD security_flags, netconn_t **ret) |
| void | free_netconn (netconn_t *netconn) |
| void | NETCON_unload (void) |
| DWORD | NETCON_secure_connect (netconn_t *connection, LPWSTR hostname) |
| DWORD | NETCON_send (netconn_t *connection, const void *msg, size_t len, int flags, int *sent) |
| DWORD | NETCON_recv (netconn_t *connection, void *buf, size_t len, int flags, int *recvd) |
| BOOL | NETCON_query_data_available (netconn_t *connection, DWORD *available) |
| BOOL | NETCON_is_alive (netconn_t *netconn) |
| LPCVOID | NETCON_GetCert (netconn_t *connection) |
| int | NETCON_GetCipherStrength (netconn_t *connection) |
| DWORD | NETCON_set_timeout (netconn_t *connection, BOOL send, int value) |
Variables |
| static CRITICAL_SECTION | init_ssl_cs = { &init_ssl_cs_debug, -1, 0, 0, 0, 0 } |
| static CRITICAL_SECTION_DEBUG | init_ssl_cs_debug |