|
Navigation
- Home
- Community
- Development
- myReactOS
- Fundraiser 2012
Doxygen
- Main Page
- Alphabetical List
- Data Structures
- Directories
- File List
- Data Fields
- Globals
- Related Pages
Search
|
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include "wine/debug.h"
#include "wine/library.h"
#include "windef.h"
#include "winbase.h"
#include "winhttp.h"
#include "wincrypt.h"
#include "winhttp_private.h"
#include "winsock2.h"
Go to the source code of this file.
Data Structures |
| struct | resolve_args |
Defines |
| #define | NONAMELESSUNION |
| #define | USE_WS_PREFIX |
| #define | sock_get_error(x) WSAGetLastError() |
Functions |
| | WINE_DEFAULT_DEBUG_CHANNEL (winhttp) |
| BOOL | netconn_init (netconn_t *conn, BOOL secure) |
| void | netconn_unload (void) |
| BOOL | netconn_connected (netconn_t *conn) |
| BOOL | netconn_create (netconn_t *conn, int domain, int type, int protocol) |
| BOOL | netconn_close (netconn_t *conn) |
| BOOL | netconn_connect (netconn_t *conn, const struct sockaddr *sockaddr, unsigned int addr_len, int timeout) |
| BOOL | netconn_secure_connect (netconn_t *conn, WCHAR *hostname) |
| BOOL | netconn_send (netconn_t *conn, const void *msg, size_t len, int flags, int *sent) |
| BOOL | netconn_recv (netconn_t *conn, void *buf, size_t len, int flags, int *recvd) |
| BOOL | netconn_query_data_available (netconn_t *conn, DWORD *available) |
| BOOL | netconn_get_next_line (netconn_t *conn, char *buffer, DWORD *buflen) |
| DWORD | netconn_set_timeout (netconn_t *netconn, BOOL send, int value) |
| static DWORD | resolve_hostname (WCHAR *hostnameW, INTERNET_PORT port, struct sockaddr *sa, socklen_t *sa_len) |
| static DWORD CALLBACK | resolve_proc (LPVOID arg) |
| BOOL | netconn_resolve (WCHAR *hostname, INTERNET_PORT port, struct sockaddr *sa, socklen_t *sa_len, int timeout) |
| const void * | netconn_get_certificate (netconn_t *conn) |
| int | netconn_get_cipher_strength (netconn_t *conn) |
Variables |
| static CRITICAL_SECTION | cs_gethostbyname = { &critsect_debug, -1, 0, 0, 0, 0 } |
| static CRITICAL_SECTION_DEBUG | critsect_debug |
Generated on Fri May 25 2012 04:40:45 for ReactOS by
1.7.6.1
|