2 * Copyright 2008 Hans Leidekker for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef _WINE_WINHTTP_PRIVATE_H_
20 #define _WINE_WINHTTP_PRIVATE_H_
22 #ifndef __WINE_CONFIG_H
23 # error You must include config.h to use this header
26 #include "wine/list.h"
27 #include "wine/unicode.h"
29 #include <sys/types.h>
30 #ifdef HAVE_SYS_SOCKET_H
31 # include <sys/socket.h>
33 #ifdef HAVE_NETINET_IN_H
34 # include <netinet/in.h>
39 #if defined(__MINGW32__) || defined (_MSC_VER)
40 # include <ws2tcpip.h>
42 # define closesocket close
43 # define ioctlsocket ioctl
49 static const WCHAR getW[] = {'G','E','T',0};
50 static const WCHAR postW[] = {'P','O','S','T',0};
51 static const WCHAR headW[] = {'H','E','A','D',0};
52 static const WCHAR slashW[] = {'/',0};
53 static const WCHAR http1_0[] = {'H','T','T','P','/','1','.','0',0};
54 static const WCHAR http1_1[] = {'H','T','T','P','/','1','.','1',0};
55 static const WCHAR chunkedW[] = {'c','h','u','n','k','e','d',0};
57 typedef struct _object_header_t object_header_t;
61 void (*destroy)( object_header_t * );
62 BOOL (*query_option)( object_header_t *, DWORD, void *, DWORD * );
63 BOOL (*set_option)( object_header_t *, DWORD, void *, DWORD );
66 struct _object_header_t
70 const object_vtbl_t *vtbl;
74 DWORD redirect_policy;
78 WINHTTP_STATUS_CALLBACK callback;
110 LPWSTR proxy_username;
111 LPWSTR proxy_password;
112 struct list cookie_cache;
119 LPWSTR hostname; /* final destination of the request */
120 LPWSTR servername; /* name of the server we directly connect to */
123 INTERNET_PORT hostport;
124 INTERNET_PORT serverport;
125 struct sockaddr_storage sockaddr;
132 BOOL secure; /* SSL active on connection? */
134 SecPkgContext_StreamSizes ssl_sizes;
141 DWORD security_flags;
148 BOOL is_request; /* part of request headers? */
165 DWORD content_length; /* total number of bytes to be read (per chunk) */
166 DWORD content_read; /* bytes read so far */
167 BOOL read_chunked; /* are we reading in chunked mode? */
168 DWORD read_pos; /* current read position in read_buf */
169 DWORD read_size; /* valid data size in read_buf */
170 char read_buf[4096]; /* buffer for already read but not returned data */
173 WCHAR **accept_types;
174 DWORD num_accept_types;
177 typedef struct _task_header_t task_header_t;
179 struct _task_header_t
182 void (*proc)( task_header_t * );
199 } receive_response_t;
223 object_header_t *addref_object( object_header_t * ) DECLSPEC_HIDDEN;
224 object_header_t *grab_object( HINTERNET ) DECLSPEC_HIDDEN;
225 void release_object( object_header_t * ) DECLSPEC_HIDDEN;
226 HINTERNET alloc_handle( object_header_t * ) DECLSPEC_HIDDEN;
227 BOOL free_handle( HINTERNET ) DECLSPEC_HIDDEN;
229 void set_last_error( DWORD ) DECLSPEC_HIDDEN;
230 DWORD get_last_error( void ) DECLSPEC_HIDDEN;
231 void send_callback( object_header_t *, DWORD, LPVOID, DWORD ) DECLSPEC_HIDDEN;
232 void close_connection( request_t * ) DECLSPEC_HIDDEN;
234 BOOL netconn_close( netconn_t * ) DECLSPEC_HIDDEN;
235 BOOL netconn_connect( netconn_t *, const struct sockaddr *, unsigned int, int ) DECLSPEC_HIDDEN;
236 BOOL netconn_connected( netconn_t * ) DECLSPEC_HIDDEN;
237 BOOL netconn_create( netconn_t *, int, int, int ) DECLSPEC_HIDDEN;
238 BOOL netconn_get_next_line( netconn_t *, char *, DWORD * ) DECLSPEC_HIDDEN;
239 BOOL netconn_init( netconn_t * ) DECLSPEC_HIDDEN;
240 void netconn_unload( void ) DECLSPEC_HIDDEN;
241 BOOL netconn_query_data_available( netconn_t *, DWORD * ) DECLSPEC_HIDDEN;
242 BOOL netconn_recv( netconn_t *, void *, size_t, int, int * ) DECLSPEC_HIDDEN;
243 BOOL netconn_resolve( WCHAR *, INTERNET_PORT, struct sockaddr *, socklen_t *, int ) DECLSPEC_HIDDEN;
244 BOOL netconn_secure_connect( netconn_t *, WCHAR * ) DECLSPEC_HIDDEN;
245 BOOL netconn_send( netconn_t *, const void *, size_t, int, int * ) DECLSPEC_HIDDEN;
246 DWORD netconn_set_timeout( netconn_t *, BOOL, int ) DECLSPEC_HIDDEN;
247 const void *netconn_get_certificate( netconn_t * ) DECLSPEC_HIDDEN;
248 int netconn_get_cipher_strength( netconn_t * ) DECLSPEC_HIDDEN;
250 BOOL set_cookies( request_t *, const WCHAR * ) DECLSPEC_HIDDEN;
251 BOOL add_cookie_headers( request_t * ) DECLSPEC_HIDDEN;
252 BOOL add_request_headers( request_t *, LPCWSTR, DWORD, DWORD ) DECLSPEC_HIDDEN;
253 void delete_domain( domain_t * ) DECLSPEC_HIDDEN;
254 BOOL set_server_for_hostname( connect_t *connect, LPCWSTR server, INTERNET_PORT port ) DECLSPEC_HIDDEN;
256 extern HRESULT WinHttpRequest_create( IUnknown *, void ** ) DECLSPEC_HIDDEN;
258 static inline const char *debugstr_variant( const VARIANT *v )
260 if (!v) return "(null)";
268 return wine_dbg_sprintf( "{VT_I4: %d}", V_I4(v) );
270 return wine_dbg_sprintf( "{VT_R8: %lf}", V_R8(v) );
272 return wine_dbg_sprintf( "{VT_BSTR: %s}", debugstr_w(V_BSTR(v)) );
274 return wine_dbg_sprintf( "{VT_DISPATCH: %p}", V_DISPATCH(v) );
276 return wine_dbg_sprintf( "{VT_BOOL: %x}", V_BOOL(v) );
278 return wine_dbg_sprintf( "{VT_UNKNOWN: %p}", V_UNKNOWN(v) );
280 return wine_dbg_sprintf( "{VT_UINT: %u}", V_UINT(v) );
281 case VT_BSTR|VT_BYREF:
282 return wine_dbg_sprintf( "{VT_BSTR|VT_BYREF: ptr %p, data %s}",
283 V_BSTRREF(v), V_BSTRREF(v) ? debugstr_w( *V_BSTRREF(v) ) : NULL );
285 return wine_dbg_sprintf( "{vt %d}", V_VT(v) );
289 static inline void *heap_alloc( SIZE_T size )
291 return HeapAlloc( GetProcessHeap(), 0, size );
294 static inline void *heap_alloc_zero( SIZE_T size )
296 return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, size );
299 static inline void *heap_realloc( LPVOID mem, SIZE_T size )
301 return HeapReAlloc( GetProcessHeap(), 0, mem, size );
304 static inline void *heap_realloc_zero( LPVOID mem, SIZE_T size )
306 return HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size );
309 static inline BOOL heap_free( LPVOID mem )
311 return HeapFree( GetProcessHeap(), 0, mem );
314 static inline WCHAR *strdupW( const WCHAR *src )
318 if (!src) return NULL;
319 dst = heap_alloc( (strlenW( src ) + 1) * sizeof(WCHAR) );
320 if (dst) strcpyW( dst, src );
324 static inline WCHAR *strdupAW( const char *src )
329 DWORD len = MultiByteToWideChar( CP_ACP, 0, src, -1, NULL, 0 );
330 if ((dst = heap_alloc( len * sizeof(WCHAR) )))
331 MultiByteToWideChar( CP_ACP, 0, src, -1, dst, len );
336 static inline char *strdupWA( const WCHAR *src )
341 int len = WideCharToMultiByte( CP_ACP, 0, src, -1, NULL, 0, NULL, NULL );
342 if ((dst = heap_alloc( len )))
343 WideCharToMultiByte( CP_ACP, 0, src, -1, dst, len, NULL, NULL );
348 #endif /* _WINE_WINHTTP_PRIVATE_H_ */