push 98299ad1251baa2727aab065c47e9d935978c732
[wine/hacks.git] / dlls / wininet / internet.c
bloba14a158974ed30d10796903e86ba423bcd1cfbf6
1 /*
2 * Wininet
4 * Copyright 1999 Corel Corporation
5 * Copyright 2002 CodeWeavers Inc.
6 * Copyright 2002 Jaco Greeff
7 * Copyright 2002 TransGaming Technologies Inc.
8 * Copyright 2004 Mike McCormack for CodeWeavers
10 * Ulrich Czekalla
11 * Aric Stewart
12 * David Hammerton
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "config.h"
30 #include "wine/port.h"
32 #define MAXHOSTNAME 100 /* from http.c */
34 #if defined(__MINGW32__) || defined (_MSC_VER)
35 #include <ws2tcpip.h>
36 #endif
38 #include <string.h>
39 #include <stdarg.h>
40 #include <stdio.h>
41 #include <sys/types.h>
42 #ifdef HAVE_SYS_SOCKET_H
43 # include <sys/socket.h>
44 #endif
45 #ifdef HAVE_POLL_H
46 #include <poll.h>
47 #endif
48 #ifdef HAVE_SYS_POLL_H
49 # include <sys/poll.h>
50 #endif
51 #ifdef HAVE_SYS_TIME_H
52 # include <sys/time.h>
53 #endif
54 #include <stdlib.h>
55 #include <ctype.h>
56 #ifdef HAVE_UNISTD_H
57 # include <unistd.h>
58 #endif
59 #include <assert.h>
61 #include "windef.h"
62 #include "winbase.h"
63 #include "winreg.h"
64 #include "winuser.h"
65 #include "wininet.h"
66 #include "winineti.h"
67 #include "winnls.h"
68 #include "wine/debug.h"
69 #include "winerror.h"
70 #define NO_SHLWAPI_STREAM
71 #include "shlwapi.h"
73 #include "wine/exception.h"
75 #include "internet.h"
76 #include "resource.h"
78 #include "wine/unicode.h"
80 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
82 #define RESPONSE_TIMEOUT 30
84 typedef struct
86 DWORD dwError;
87 CHAR response[MAX_REPLY_LEN];
88 } WITHREADERROR, *LPWITHREADERROR;
90 static DWORD g_dwTlsErrIndex = TLS_OUT_OF_INDEXES;
91 static HMODULE WININET_hModule;
93 #define HANDLE_CHUNK_SIZE 0x10
95 static CRITICAL_SECTION WININET_cs;
96 static CRITICAL_SECTION_DEBUG WININET_cs_debug =
98 0, 0, &WININET_cs,
99 { &WININET_cs_debug.ProcessLocksList, &WININET_cs_debug.ProcessLocksList },
100 0, 0, { (DWORD_PTR)(__FILE__ ": WININET_cs") }
102 static CRITICAL_SECTION WININET_cs = { &WININET_cs_debug, -1, 0, 0, 0, 0 };
104 static LPWININETHANDLEHEADER *WININET_Handles;
105 static UINT WININET_dwNextHandle;
106 static UINT WININET_dwMaxHandles;
108 HINTERNET WININET_AllocHandle( LPWININETHANDLEHEADER info )
110 LPWININETHANDLEHEADER *p;
111 UINT handle = 0, num;
113 list_init( &info->children );
115 EnterCriticalSection( &WININET_cs );
116 if( !WININET_dwMaxHandles )
118 num = HANDLE_CHUNK_SIZE;
119 p = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
120 sizeof (*WININET_Handles)* num);
121 if( !p )
122 goto end;
123 WININET_Handles = p;
124 WININET_dwMaxHandles = num;
126 if( WININET_dwMaxHandles == WININET_dwNextHandle )
128 num = WININET_dwMaxHandles + HANDLE_CHUNK_SIZE;
129 p = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
130 WININET_Handles, sizeof (*WININET_Handles)* num);
131 if( !p )
132 goto end;
133 WININET_Handles = p;
134 WININET_dwMaxHandles = num;
137 handle = WININET_dwNextHandle;
138 if( WININET_Handles[handle] )
139 ERR("handle isn't free but should be\n");
140 WININET_Handles[handle] = WININET_AddRef( info );
142 while( WININET_Handles[WININET_dwNextHandle] &&
143 (WININET_dwNextHandle < WININET_dwMaxHandles ) )
144 WININET_dwNextHandle++;
146 end:
147 LeaveCriticalSection( &WININET_cs );
149 return info->hInternet = (HINTERNET) (handle+1);
152 LPWININETHANDLEHEADER WININET_AddRef( LPWININETHANDLEHEADER info )
154 ULONG refs = InterlockedIncrement(&info->refs);
155 TRACE("%p -> refcount = %d\n", info, refs );
156 return info;
159 LPWININETHANDLEHEADER WININET_GetObject( HINTERNET hinternet )
161 LPWININETHANDLEHEADER info = NULL;
162 UINT handle = (UINT) hinternet;
164 EnterCriticalSection( &WININET_cs );
166 if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) &&
167 WININET_Handles[handle-1] )
168 info = WININET_AddRef( WININET_Handles[handle-1] );
170 LeaveCriticalSection( &WININET_cs );
172 TRACE("handle %d -> %p\n", handle, info);
174 return info;
177 BOOL WININET_Release( LPWININETHANDLEHEADER info )
179 ULONG refs = InterlockedDecrement(&info->refs);
180 TRACE( "object %p refcount = %d\n", info, refs );
181 if( !refs )
183 if ( info->vtbl->CloseConnection )
185 TRACE( "closing connection %p\n", info);
186 info->vtbl->CloseConnection( info );
188 /* Don't send a callback if this is a session handle created with InternetOpenUrl */
189 if (info->htype != WH_HHTTPSESSION || !(info->dwInternalFlags & INET_OPENURL))
191 INTERNET_SendCallback(info, info->dwContext,
192 INTERNET_STATUS_HANDLE_CLOSING, &info->hInternet,
193 sizeof(HINTERNET));
195 TRACE( "destroying object %p\n", info);
196 if ( info->htype != WH_HINIT )
197 list_remove( &info->entry );
198 info->vtbl->Destroy( info );
200 return TRUE;
203 BOOL WININET_FreeHandle( HINTERNET hinternet )
205 BOOL ret = FALSE;
206 UINT handle = (UINT) hinternet;
207 LPWININETHANDLEHEADER info = NULL, child, next;
209 EnterCriticalSection( &WININET_cs );
211 if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) )
213 handle--;
214 if( WININET_Handles[handle] )
216 info = WININET_Handles[handle];
217 TRACE( "destroying handle %d for object %p\n", handle+1, info);
218 WININET_Handles[handle] = NULL;
219 ret = TRUE;
223 LeaveCriticalSection( &WININET_cs );
225 /* As on native when the equivalent of WININET_Release is called, the handle
226 * is already invalid, but if a new handle is created at this time it does
227 * not yet get assigned the freed handle number */
228 if( info )
230 /* Free all children as native does */
231 LIST_FOR_EACH_ENTRY_SAFE( child, next, &info->children, WININETHANDLEHEADER, entry )
233 TRACE( "freeing child handle %d for parent handle %d\n",
234 (UINT)child->hInternet, handle+1);
235 WININET_FreeHandle( child->hInternet );
237 WININET_Release( info );
240 EnterCriticalSection( &WININET_cs );
242 if( WININET_dwNextHandle > handle && !WININET_Handles[handle] )
243 WININET_dwNextHandle = handle;
245 LeaveCriticalSection( &WININET_cs );
247 return ret;
250 /***********************************************************************
251 * DllMain [Internal] Initializes the internal 'WININET.DLL'.
253 * PARAMS
254 * hinstDLL [I] handle to the DLL's instance
255 * fdwReason [I]
256 * lpvReserved [I] reserved, must be NULL
258 * RETURNS
259 * Success: TRUE
260 * Failure: FALSE
263 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
265 TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);
267 switch (fdwReason) {
268 case DLL_PROCESS_ATTACH:
270 g_dwTlsErrIndex = TlsAlloc();
272 if (g_dwTlsErrIndex == TLS_OUT_OF_INDEXES)
273 return FALSE;
275 URLCacheContainers_CreateDefaults();
277 WININET_hModule = hinstDLL;
279 case DLL_THREAD_ATTACH:
280 break;
282 case DLL_THREAD_DETACH:
283 if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
285 LPVOID lpwite = TlsGetValue(g_dwTlsErrIndex);
286 HeapFree(GetProcessHeap(), 0, lpwite);
288 break;
290 case DLL_PROCESS_DETACH:
292 URLCacheContainers_DeleteAll();
294 if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
296 HeapFree(GetProcessHeap(), 0, TlsGetValue(g_dwTlsErrIndex));
297 TlsFree(g_dwTlsErrIndex);
299 break;
302 return TRUE;
306 /***********************************************************************
307 * InternetInitializeAutoProxyDll (WININET.@)
309 * Setup the internal proxy
311 * PARAMETERS
312 * dwReserved
314 * RETURNS
315 * FALSE on failure
318 BOOL WINAPI InternetInitializeAutoProxyDll(DWORD dwReserved)
320 FIXME("STUB\n");
321 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
322 return FALSE;
325 /***********************************************************************
326 * DetectAutoProxyUrl (WININET.@)
328 * Auto detect the proxy url
330 * RETURNS
331 * FALSE on failure
334 BOOL WINAPI DetectAutoProxyUrl(LPSTR lpszAutoProxyUrl,
335 DWORD dwAutoProxyUrlLength, DWORD dwDetectFlags)
337 FIXME("STUB\n");
338 INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
339 return FALSE;
343 /***********************************************************************
344 * INTERNET_ConfigureProxy
346 * FIXME:
347 * The proxy may be specified in the form 'http=proxy.my.org'
348 * Presumably that means there can be ftp=ftpproxy.my.org too.
350 static BOOL INTERNET_ConfigureProxy( LPWININETAPPINFOW lpwai )
352 HKEY key;
353 DWORD type, len, enabled = 0;
354 LPCSTR envproxy;
355 static const WCHAR szInternetSettings[] =
356 { 'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\',
357 'W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
358 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s',0 };
359 static const WCHAR szProxyServer[] = { 'P','r','o','x','y','S','e','r','v','e','r', 0 };
360 static const WCHAR szProxyEnable[] = { 'P','r','o','x','y','E','n','a','b','l','e', 0 };
362 if (RegOpenKeyW( HKEY_CURRENT_USER, szInternetSettings, &key )) return FALSE;
364 len = sizeof enabled;
365 if (RegQueryValueExW( key, szProxyEnable, NULL, &type, (BYTE *)&enabled, &len ) || type != REG_DWORD)
366 RegSetValueExW( key, szProxyEnable, 0, REG_DWORD, (BYTE *)&enabled, sizeof(REG_DWORD) );
368 if (enabled)
370 TRACE("Proxy is enabled.\n");
372 /* figure out how much memory the proxy setting takes */
373 if (!RegQueryValueExW( key, szProxyServer, NULL, &type, NULL, &len ) && len && (type == REG_SZ))
375 LPWSTR szProxy, p;
376 static const WCHAR szHttp[] = {'h','t','t','p','=',0};
378 if (!(szProxy = HeapAlloc( GetProcessHeap(), 0, len )))
380 RegCloseKey( key );
381 return FALSE;
383 RegQueryValueExW( key, szProxyServer, NULL, &type, (BYTE*)szProxy, &len );
385 /* find the http proxy, and strip away everything else */
386 p = strstrW( szProxy, szHttp );
387 if (p)
389 p += lstrlenW( szHttp );
390 lstrcpyW( szProxy, p );
392 p = strchrW( szProxy, ' ' );
393 if (p) *p = 0;
395 lpwai->dwAccessType = INTERNET_OPEN_TYPE_PROXY;
396 lpwai->lpszProxy = szProxy;
398 TRACE("http proxy = %s\n", debugstr_w(lpwai->lpszProxy));
400 else
401 ERR("Couldn't read proxy server settings from registry.\n");
403 else if ((envproxy = getenv( "http_proxy" )))
405 WCHAR *envproxyW;
407 len = MultiByteToWideChar( CP_UNIXCP, 0, envproxy, -1, NULL, 0 );
408 if (!(envproxyW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR)))) return FALSE;
409 MultiByteToWideChar( CP_UNIXCP, 0, envproxy, -1, envproxyW, len );
411 lpwai->dwAccessType = INTERNET_OPEN_TYPE_PROXY;
412 lpwai->lpszProxy = envproxyW;
414 TRACE("http proxy (from environment) = %s\n", debugstr_w(lpwai->lpszProxy));
415 enabled = 1;
417 if (!enabled)
419 TRACE("Proxy is not enabled.\n");
420 lpwai->dwAccessType = INTERNET_OPEN_TYPE_DIRECT;
422 RegCloseKey( key );
423 return (enabled > 0);
426 /***********************************************************************
427 * dump_INTERNET_FLAGS
429 * Helper function to TRACE the internet flags.
431 * RETURNS
432 * None
435 static void dump_INTERNET_FLAGS(DWORD dwFlags)
437 #define FE(x) { x, #x }
438 static const wininet_flag_info flag[] = {
439 FE(INTERNET_FLAG_RELOAD),
440 FE(INTERNET_FLAG_RAW_DATA),
441 FE(INTERNET_FLAG_EXISTING_CONNECT),
442 FE(INTERNET_FLAG_ASYNC),
443 FE(INTERNET_FLAG_PASSIVE),
444 FE(INTERNET_FLAG_NO_CACHE_WRITE),
445 FE(INTERNET_FLAG_MAKE_PERSISTENT),
446 FE(INTERNET_FLAG_FROM_CACHE),
447 FE(INTERNET_FLAG_SECURE),
448 FE(INTERNET_FLAG_KEEP_CONNECTION),
449 FE(INTERNET_FLAG_NO_AUTO_REDIRECT),
450 FE(INTERNET_FLAG_READ_PREFETCH),
451 FE(INTERNET_FLAG_NO_COOKIES),
452 FE(INTERNET_FLAG_NO_AUTH),
453 FE(INTERNET_FLAG_CACHE_IF_NET_FAIL),
454 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP),
455 FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS),
456 FE(INTERNET_FLAG_IGNORE_CERT_DATE_INVALID),
457 FE(INTERNET_FLAG_IGNORE_CERT_CN_INVALID),
458 FE(INTERNET_FLAG_RESYNCHRONIZE),
459 FE(INTERNET_FLAG_HYPERLINK),
460 FE(INTERNET_FLAG_NO_UI),
461 FE(INTERNET_FLAG_PRAGMA_NOCACHE),
462 FE(INTERNET_FLAG_CACHE_ASYNC),
463 FE(INTERNET_FLAG_FORMS_SUBMIT),
464 FE(INTERNET_FLAG_NEED_FILE),
465 FE(INTERNET_FLAG_TRANSFER_ASCII),
466 FE(INTERNET_FLAG_TRANSFER_BINARY)
468 #undef FE
469 unsigned int i;
471 for (i = 0; i < (sizeof(flag) / sizeof(flag[0])); i++) {
472 if (flag[i].val & dwFlags) {
473 TRACE(" %s", flag[i].name);
474 dwFlags &= ~flag[i].val;
477 if (dwFlags)
478 TRACE(" Unknown flags (%08x)\n", dwFlags);
479 else
480 TRACE("\n");
483 /***********************************************************************
484 * INTERNET_CloseHandle (internal)
486 * Close internet handle
489 static VOID APPINFO_Destroy(WININETHANDLEHEADER *hdr)
491 LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW) hdr;
493 TRACE("%p\n",lpwai);
495 HeapFree(GetProcessHeap(), 0, lpwai->lpszAgent);
496 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxy);
497 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyBypass);
498 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyUsername);
499 HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyPassword);
500 HeapFree(GetProcessHeap(), 0, lpwai);
503 static DWORD APPINFO_QueryOption(WININETHANDLEHEADER *hdr, DWORD option, void *buffer, DWORD *size, BOOL unicode)
505 LPWININETAPPINFOW ai = (LPWININETAPPINFOW)hdr;
507 switch(option) {
508 case INTERNET_OPTION_HANDLE_TYPE:
509 TRACE("INTERNET_OPTION_HANDLE_TYPE\n");
511 if (*size < sizeof(ULONG))
512 return ERROR_INSUFFICIENT_BUFFER;
514 *size = sizeof(DWORD);
515 *(DWORD*)buffer = INTERNET_HANDLE_TYPE_INTERNET;
516 return ERROR_SUCCESS;
518 case INTERNET_OPTION_USER_AGENT: {
519 DWORD bufsize;
521 TRACE("INTERNET_OPTION_USER_AGENT\n");
523 bufsize = *size;
525 if (unicode) {
526 *size = (strlenW(ai->lpszAgent) + 1) * sizeof(WCHAR);
527 if(!buffer || bufsize < *size)
528 return ERROR_INSUFFICIENT_BUFFER;
530 strcpyW(buffer, ai->lpszAgent);
531 }else {
532 *size = WideCharToMultiByte(CP_ACP, 0, ai->lpszAgent, -1, NULL, 0, NULL, NULL);
533 if(!buffer || bufsize < *size)
534 return ERROR_INSUFFICIENT_BUFFER;
536 WideCharToMultiByte(CP_ACP, 0, ai->lpszAgent, -1, buffer, *size, NULL, NULL);
539 return ERROR_SUCCESS;
542 case INTERNET_OPTION_PROXY:
543 if (unicode) {
544 INTERNET_PROXY_INFOW *pi = (INTERNET_PROXY_INFOW *)buffer;
545 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
546 LPWSTR proxy, proxy_bypass;
548 if (ai->lpszProxy)
549 proxyBytesRequired = (lstrlenW(ai->lpszProxy) + 1) * sizeof(WCHAR);
550 if (ai->lpszProxyBypass)
551 proxyBypassBytesRequired = (lstrlenW(ai->lpszProxyBypass) + 1) * sizeof(WCHAR);
552 if (*size < sizeof(INTERNET_PROXY_INFOW) + proxyBytesRequired + proxyBypassBytesRequired)
554 *size = sizeof(INTERNET_PROXY_INFOW) + proxyBytesRequired + proxyBypassBytesRequired;
555 return ERROR_INSUFFICIENT_BUFFER;
557 proxy = (LPWSTR)((LPBYTE)buffer + sizeof(INTERNET_PROXY_INFOW));
558 proxy_bypass = (LPWSTR)((LPBYTE)buffer + sizeof(INTERNET_PROXY_INFOW) + proxyBytesRequired);
560 pi->dwAccessType = ai->dwAccessType;
561 pi->lpszProxy = NULL;
562 pi->lpszProxyBypass = NULL;
563 if (ai->lpszProxy) {
564 lstrcpyW(proxy, ai->lpszProxy);
565 pi->lpszProxy = proxy;
568 if (ai->lpszProxyBypass) {
569 lstrcpyW(proxy_bypass, ai->lpszProxyBypass);
570 pi->lpszProxyBypass = proxy_bypass;
573 *size = sizeof(INTERNET_PROXY_INFOW) + proxyBytesRequired + proxyBypassBytesRequired;
574 return ERROR_SUCCESS;
575 }else {
576 INTERNET_PROXY_INFOA *pi = (INTERNET_PROXY_INFOA *)buffer;
577 DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
578 LPSTR proxy, proxy_bypass;
580 if (ai->lpszProxy)
581 proxyBytesRequired = WideCharToMultiByte(CP_ACP, 0, ai->lpszProxy, -1, NULL, 0, NULL, NULL);
582 if (ai->lpszProxyBypass)
583 proxyBypassBytesRequired = WideCharToMultiByte(CP_ACP, 0, ai->lpszProxyBypass, -1,
584 NULL, 0, NULL, NULL);
585 if (*size < sizeof(INTERNET_PROXY_INFOA) + proxyBytesRequired + proxyBypassBytesRequired)
587 *size = sizeof(INTERNET_PROXY_INFOA) + proxyBytesRequired + proxyBypassBytesRequired;
588 return ERROR_INSUFFICIENT_BUFFER;
590 proxy = (LPSTR)((LPBYTE)buffer + sizeof(INTERNET_PROXY_INFOA));
591 proxy_bypass = (LPSTR)((LPBYTE)buffer + sizeof(INTERNET_PROXY_INFOA) + proxyBytesRequired);
593 pi->dwAccessType = ai->dwAccessType;
594 pi->lpszProxy = NULL;
595 pi->lpszProxyBypass = NULL;
596 if (ai->lpszProxy) {
597 WideCharToMultiByte(CP_ACP, 0, ai->lpszProxy, -1, proxy, proxyBytesRequired, NULL, NULL);
598 pi->lpszProxy = proxy;
601 if (ai->lpszProxyBypass) {
602 WideCharToMultiByte(CP_ACP, 0, ai->lpszProxyBypass, -1, proxy_bypass,
603 proxyBypassBytesRequired, NULL, NULL);
604 pi->lpszProxyBypass = proxy_bypass;
607 *size = sizeof(INTERNET_PROXY_INFOA) + proxyBytesRequired + proxyBypassBytesRequired;
608 return ERROR_SUCCESS;
612 return INET_QueryOption(option, buffer, size, unicode);
615 static const HANDLEHEADERVtbl APPINFOVtbl = {
616 APPINFO_Destroy,
617 NULL,
618 APPINFO_QueryOption,
619 NULL,
620 NULL,
621 NULL,
622 NULL,
623 NULL,
624 NULL
628 /***********************************************************************
629 * InternetOpenW (WININET.@)
631 * Per-application initialization of wininet
633 * RETURNS
634 * HINTERNET on success
635 * NULL on failure
638 HINTERNET WINAPI InternetOpenW(LPCWSTR lpszAgent, DWORD dwAccessType,
639 LPCWSTR lpszProxy, LPCWSTR lpszProxyBypass, DWORD dwFlags)
641 LPWININETAPPINFOW lpwai = NULL;
642 HINTERNET handle = NULL;
644 if (TRACE_ON(wininet)) {
645 #define FE(x) { x, #x }
646 static const wininet_flag_info access_type[] = {
647 FE(INTERNET_OPEN_TYPE_PRECONFIG),
648 FE(INTERNET_OPEN_TYPE_DIRECT),
649 FE(INTERNET_OPEN_TYPE_PROXY),
650 FE(INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY)
652 #undef FE
653 DWORD i;
654 const char *access_type_str = "Unknown";
656 TRACE("(%s, %i, %s, %s, %i)\n", debugstr_w(lpszAgent), dwAccessType,
657 debugstr_w(lpszProxy), debugstr_w(lpszProxyBypass), dwFlags);
658 for (i = 0; i < (sizeof(access_type) / sizeof(access_type[0])); i++) {
659 if (access_type[i].val == dwAccessType) {
660 access_type_str = access_type[i].name;
661 break;
664 TRACE(" access type : %s\n", access_type_str);
665 TRACE(" flags :");
666 dump_INTERNET_FLAGS(dwFlags);
669 /* Clear any error information */
670 INTERNET_SetLastError(0);
672 lpwai = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETAPPINFOW));
673 if (NULL == lpwai)
675 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
676 goto lend;
679 lpwai->hdr.htype = WH_HINIT;
680 lpwai->hdr.vtbl = &APPINFOVtbl;
681 lpwai->hdr.dwFlags = dwFlags;
682 lpwai->hdr.refs = 1;
683 lpwai->dwAccessType = dwAccessType;
684 lpwai->lpszProxyUsername = NULL;
685 lpwai->lpszProxyPassword = NULL;
687 handle = WININET_AllocHandle( &lpwai->hdr );
688 if( !handle )
690 HeapFree( GetProcessHeap(), 0, lpwai );
691 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
692 goto lend;
695 if (NULL != lpszAgent)
697 lpwai->lpszAgent = HeapAlloc( GetProcessHeap(),0,
698 (strlenW(lpszAgent)+1)*sizeof(WCHAR));
699 if (lpwai->lpszAgent)
700 lstrcpyW( lpwai->lpszAgent, lpszAgent );
702 if(dwAccessType == INTERNET_OPEN_TYPE_PRECONFIG)
703 INTERNET_ConfigureProxy( lpwai );
704 else if (NULL != lpszProxy)
706 lpwai->lpszProxy = HeapAlloc( GetProcessHeap(), 0,
707 (strlenW(lpszProxy)+1)*sizeof(WCHAR));
708 if (lpwai->lpszProxy)
709 lstrcpyW( lpwai->lpszProxy, lpszProxy );
712 if (NULL != lpszProxyBypass)
714 lpwai->lpszProxyBypass = HeapAlloc( GetProcessHeap(), 0,
715 (strlenW(lpszProxyBypass)+1)*sizeof(WCHAR));
716 if (lpwai->lpszProxyBypass)
717 lstrcpyW( lpwai->lpszProxyBypass, lpszProxyBypass );
720 lend:
721 if( lpwai )
722 WININET_Release( &lpwai->hdr );
724 TRACE("returning %p\n", lpwai);
726 return handle;
730 /***********************************************************************
731 * InternetOpenA (WININET.@)
733 * Per-application initialization of wininet
735 * RETURNS
736 * HINTERNET on success
737 * NULL on failure
740 HINTERNET WINAPI InternetOpenA(LPCSTR lpszAgent, DWORD dwAccessType,
741 LPCSTR lpszProxy, LPCSTR lpszProxyBypass, DWORD dwFlags)
743 HINTERNET rc = NULL;
744 INT len;
745 WCHAR *szAgent = NULL, *szProxy = NULL, *szBypass = NULL;
747 TRACE("(%s, 0x%08x, %s, %s, 0x%08x)\n", debugstr_a(lpszAgent),
748 dwAccessType, debugstr_a(lpszProxy), debugstr_a(lpszProxyBypass), dwFlags);
750 if( lpszAgent )
752 len = MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, NULL, 0);
753 szAgent = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
754 MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, szAgent, len);
757 if( lpszProxy )
759 len = MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, NULL, 0);
760 szProxy = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
761 MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, szProxy, len);
764 if( lpszProxyBypass )
766 len = MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, NULL, 0);
767 szBypass = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
768 MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, szBypass, len);
771 rc = InternetOpenW(szAgent, dwAccessType, szProxy, szBypass, dwFlags);
773 HeapFree(GetProcessHeap(), 0, szAgent);
774 HeapFree(GetProcessHeap(), 0, szProxy);
775 HeapFree(GetProcessHeap(), 0, szBypass);
777 return rc;
780 /***********************************************************************
781 * InternetGetLastResponseInfoA (WININET.@)
783 * Return last wininet error description on the calling thread
785 * RETURNS
786 * TRUE on success of writing to buffer
787 * FALSE on failure
790 BOOL WINAPI InternetGetLastResponseInfoA(LPDWORD lpdwError,
791 LPSTR lpszBuffer, LPDWORD lpdwBufferLength)
793 LPWITHREADERROR lpwite = TlsGetValue(g_dwTlsErrIndex);
795 TRACE("\n");
797 if (lpwite)
799 *lpdwError = lpwite->dwError;
800 if (lpwite->dwError)
802 memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
803 *lpdwBufferLength = strlen(lpszBuffer);
805 else
806 *lpdwBufferLength = 0;
808 else
810 *lpdwError = 0;
811 *lpdwBufferLength = 0;
814 return TRUE;
817 /***********************************************************************
818 * InternetGetLastResponseInfoW (WININET.@)
820 * Return last wininet error description on the calling thread
822 * RETURNS
823 * TRUE on success of writing to buffer
824 * FALSE on failure
827 BOOL WINAPI InternetGetLastResponseInfoW(LPDWORD lpdwError,
828 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength)
830 LPWITHREADERROR lpwite = TlsGetValue(g_dwTlsErrIndex);
832 TRACE("\n");
834 if (lpwite)
836 *lpdwError = lpwite->dwError;
837 if (lpwite->dwError)
839 memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
840 *lpdwBufferLength = lstrlenW(lpszBuffer);
842 else
843 *lpdwBufferLength = 0;
845 else
847 *lpdwError = 0;
848 *lpdwBufferLength = 0;
851 return TRUE;
854 /***********************************************************************
855 * InternetGetConnectedState (WININET.@)
857 * Return connected state
859 * RETURNS
860 * TRUE if connected
861 * if lpdwStatus is not null, return the status (off line,
862 * modem, lan...) in it.
863 * FALSE if not connected
865 BOOL WINAPI InternetGetConnectedState(LPDWORD lpdwStatus, DWORD dwReserved)
867 TRACE("(%p, 0x%08x)\n", lpdwStatus, dwReserved);
869 if (lpdwStatus) {
870 WARN("always returning LAN connection.\n");
871 *lpdwStatus = INTERNET_CONNECTION_LAN;
873 return TRUE;
877 /***********************************************************************
878 * InternetGetConnectedStateExW (WININET.@)
880 * Return connected state
882 * PARAMS
884 * lpdwStatus [O] Flags specifying the status of the internet connection.
885 * lpszConnectionName [O] Pointer to buffer to receive the friendly name of the internet connection.
886 * dwNameLen [I] Size of the buffer, in characters.
887 * dwReserved [I] Reserved. Must be set to 0.
889 * RETURNS
890 * TRUE if connected
891 * if lpdwStatus is not null, return the status (off line,
892 * modem, lan...) in it.
893 * FALSE if not connected
895 * NOTES
896 * If the system has no available network connections, an empty string is
897 * stored in lpszConnectionName. If there is a LAN connection, a localized
898 * "LAN Connection" string is stored. Presumably, if only a dial-up
899 * connection is available then the name of the dial-up connection is
900 * returned. Why any application, other than the "Internet Settings" CPL,
901 * would want to use this function instead of the simpler InternetGetConnectedStateW
902 * function is beyond me.
904 BOOL WINAPI InternetGetConnectedStateExW(LPDWORD lpdwStatus, LPWSTR lpszConnectionName,
905 DWORD dwNameLen, DWORD dwReserved)
907 TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
909 /* Must be zero */
910 if(dwReserved)
911 return FALSE;
913 if (lpdwStatus) {
914 WARN("always returning LAN connection.\n");
915 *lpdwStatus = INTERNET_CONNECTION_LAN;
917 return LoadStringW(WININET_hModule, IDS_LANCONNECTION, lpszConnectionName, dwNameLen);
921 /***********************************************************************
922 * InternetGetConnectedStateExA (WININET.@)
924 BOOL WINAPI InternetGetConnectedStateExA(LPDWORD lpdwStatus, LPSTR lpszConnectionName,
925 DWORD dwNameLen, DWORD dwReserved)
927 LPWSTR lpwszConnectionName = NULL;
928 BOOL rc;
930 TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
932 if (lpszConnectionName && dwNameLen > 0)
933 lpwszConnectionName= HeapAlloc(GetProcessHeap(), 0, dwNameLen * sizeof(WCHAR));
935 rc = InternetGetConnectedStateExW(lpdwStatus,lpwszConnectionName, dwNameLen,
936 dwReserved);
937 if (rc && lpwszConnectionName)
939 WideCharToMultiByte(CP_ACP,0,lpwszConnectionName,-1,lpszConnectionName,
940 dwNameLen, NULL, NULL);
942 HeapFree(GetProcessHeap(),0,lpwszConnectionName);
945 return rc;
949 /***********************************************************************
950 * InternetConnectW (WININET.@)
952 * Open a ftp, gopher or http session
954 * RETURNS
955 * HINTERNET a session handle on success
956 * NULL on failure
959 HINTERNET WINAPI InternetConnectW(HINTERNET hInternet,
960 LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
961 LPCWSTR lpszUserName, LPCWSTR lpszPassword,
962 DWORD dwService, DWORD dwFlags, DWORD_PTR dwContext)
964 LPWININETAPPINFOW hIC;
965 HINTERNET rc = NULL;
967 TRACE("(%p, %s, %i, %s, %s, %i, %i, %lx)\n", hInternet, debugstr_w(lpszServerName),
968 nServerPort, debugstr_w(lpszUserName), debugstr_w(lpszPassword),
969 dwService, dwFlags, dwContext);
971 if (!lpszServerName)
973 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
974 return NULL;
977 /* Clear any error information */
978 INTERNET_SetLastError(0);
979 hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
980 if ( (hIC == NULL) || (hIC->hdr.htype != WH_HINIT) )
982 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
983 goto lend;
986 switch (dwService)
988 case INTERNET_SERVICE_FTP:
989 rc = FTP_Connect(hIC, lpszServerName, nServerPort,
990 lpszUserName, lpszPassword, dwFlags, dwContext, 0);
991 break;
993 case INTERNET_SERVICE_HTTP:
994 rc = HTTP_Connect(hIC, lpszServerName, nServerPort,
995 lpszUserName, lpszPassword, dwFlags, dwContext, 0);
996 break;
998 case INTERNET_SERVICE_GOPHER:
999 default:
1000 break;
1002 lend:
1003 if( hIC )
1004 WININET_Release( &hIC->hdr );
1006 TRACE("returning %p\n", rc);
1007 return rc;
1011 /***********************************************************************
1012 * InternetConnectA (WININET.@)
1014 * Open a ftp, gopher or http session
1016 * RETURNS
1017 * HINTERNET a session handle on success
1018 * NULL on failure
1021 HINTERNET WINAPI InternetConnectA(HINTERNET hInternet,
1022 LPCSTR lpszServerName, INTERNET_PORT nServerPort,
1023 LPCSTR lpszUserName, LPCSTR lpszPassword,
1024 DWORD dwService, DWORD dwFlags, DWORD_PTR dwContext)
1026 HINTERNET rc = NULL;
1027 INT len = 0;
1028 LPWSTR szServerName = NULL;
1029 LPWSTR szUserName = NULL;
1030 LPWSTR szPassword = NULL;
1032 if (lpszServerName)
1034 len = MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, NULL, 0);
1035 szServerName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
1036 MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, szServerName, len);
1038 if (lpszUserName)
1040 len = MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, NULL, 0);
1041 szUserName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
1042 MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, szUserName, len);
1044 if (lpszPassword)
1046 len = MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, NULL, 0);
1047 szPassword = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
1048 MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, szPassword, len);
1052 rc = InternetConnectW(hInternet, szServerName, nServerPort,
1053 szUserName, szPassword, dwService, dwFlags, dwContext);
1055 HeapFree(GetProcessHeap(), 0, szServerName);
1056 HeapFree(GetProcessHeap(), 0, szUserName);
1057 HeapFree(GetProcessHeap(), 0, szPassword);
1058 return rc;
1062 /***********************************************************************
1063 * InternetFindNextFileA (WININET.@)
1065 * Continues a file search from a previous call to FindFirstFile
1067 * RETURNS
1068 * TRUE on success
1069 * FALSE on failure
1072 BOOL WINAPI InternetFindNextFileA(HINTERNET hFind, LPVOID lpvFindData)
1074 BOOL ret;
1075 WIN32_FIND_DATAW fd;
1077 ret = InternetFindNextFileW(hFind, lpvFindData?&fd:NULL);
1078 if(lpvFindData)
1079 WININET_find_data_WtoA(&fd, (LPWIN32_FIND_DATAA)lpvFindData);
1080 return ret;
1083 /***********************************************************************
1084 * InternetFindNextFileW (WININET.@)
1086 * Continues a file search from a previous call to FindFirstFile
1088 * RETURNS
1089 * TRUE on success
1090 * FALSE on failure
1093 BOOL WINAPI InternetFindNextFileW(HINTERNET hFind, LPVOID lpvFindData)
1095 WININETHANDLEHEADER *hdr;
1096 DWORD res;
1098 TRACE("\n");
1100 hdr = WININET_GetObject(hFind);
1101 if(!hdr) {
1102 WARN("Invalid handle\n");
1103 SetLastError(ERROR_INVALID_HANDLE);
1104 return FALSE;
1107 if(hdr->vtbl->FindNextFileW) {
1108 res = hdr->vtbl->FindNextFileW(hdr, lpvFindData);
1109 }else {
1110 WARN("Handle doesn't support NextFile\n");
1111 res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
1114 WININET_Release(hdr);
1116 if(res != ERROR_SUCCESS)
1117 SetLastError(res);
1118 return res == ERROR_SUCCESS;
1121 /***********************************************************************
1122 * InternetCloseHandle (WININET.@)
1124 * Generic close handle function
1126 * RETURNS
1127 * TRUE on success
1128 * FALSE on failure
1131 BOOL WINAPI InternetCloseHandle(HINTERNET hInternet)
1133 LPWININETHANDLEHEADER lpwh;
1135 TRACE("%p\n",hInternet);
1137 lpwh = WININET_GetObject( hInternet );
1138 if (NULL == lpwh)
1140 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1141 return FALSE;
1144 WININET_Release( lpwh );
1145 WININET_FreeHandle( hInternet );
1147 return TRUE;
1151 /***********************************************************************
1152 * ConvertUrlComponentValue (Internal)
1154 * Helper function for InternetCrackUrlA
1157 static void ConvertUrlComponentValue(LPSTR* lppszComponent, LPDWORD dwComponentLen,
1158 LPWSTR lpwszComponent, DWORD dwwComponentLen,
1159 LPCSTR lpszStart, LPCWSTR lpwszStart)
1161 TRACE("%p %d %p %d %p %p\n", *lppszComponent, *dwComponentLen, lpwszComponent, dwwComponentLen, lpszStart, lpwszStart);
1162 if (*dwComponentLen != 0)
1164 DWORD nASCIILength=WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,NULL,0,NULL,NULL);
1165 if (*lppszComponent == NULL)
1167 int nASCIIOffset=WideCharToMultiByte(CP_ACP,0,lpwszStart,lpwszComponent-lpwszStart,NULL,0,NULL,NULL);
1168 if (lpwszComponent)
1169 *lppszComponent = (LPSTR)lpszStart+nASCIIOffset;
1170 else
1171 *lppszComponent = NULL;
1172 *dwComponentLen = nASCIILength;
1174 else
1176 DWORD ncpylen = min((*dwComponentLen)-1, nASCIILength);
1177 WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,*lppszComponent,ncpylen+1,NULL,NULL);
1178 (*lppszComponent)[ncpylen]=0;
1179 *dwComponentLen = ncpylen;
1185 /***********************************************************************
1186 * InternetCrackUrlA (WININET.@)
1188 * See InternetCrackUrlW.
1190 BOOL WINAPI InternetCrackUrlA(LPCSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags,
1191 LPURL_COMPONENTSA lpUrlComponents)
1193 DWORD nLength;
1194 URL_COMPONENTSW UCW;
1195 BOOL ret = FALSE;
1196 WCHAR *lpwszUrl, *hostname = NULL, *username = NULL, *password = NULL, *path = NULL,
1197 *scheme = NULL, *extra = NULL;
1199 TRACE("(%s %u %x %p)\n",
1200 lpszUrl ? debugstr_an(lpszUrl, dwUrlLength ? dwUrlLength : strlen(lpszUrl)) : "(null)",
1201 dwUrlLength, dwFlags, lpUrlComponents);
1203 if (!lpszUrl || !*lpszUrl || !lpUrlComponents ||
1204 lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSA))
1206 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
1207 return FALSE;
1210 if(dwUrlLength<=0)
1211 dwUrlLength=-1;
1212 nLength=MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,NULL,0);
1214 /* if dwUrlLength=-1 then nLength includes null but length to
1215 InternetCrackUrlW should not include it */
1216 if (dwUrlLength == -1) nLength--;
1218 lpwszUrl=HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WCHAR)*nLength);
1219 MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,lpwszUrl,nLength);
1221 memset(&UCW,0,sizeof(UCW));
1222 UCW.dwStructSize = sizeof(URL_COMPONENTSW);
1223 if (lpUrlComponents->dwHostNameLength)
1225 UCW.dwHostNameLength = lpUrlComponents->dwHostNameLength;
1226 if (lpUrlComponents->lpszHostName)
1228 hostname = HeapAlloc(GetProcessHeap(), 0, UCW.dwHostNameLength * sizeof(WCHAR));
1229 UCW.lpszHostName = hostname;
1232 if (lpUrlComponents->dwUserNameLength)
1234 UCW.dwUserNameLength = lpUrlComponents->dwUserNameLength;
1235 if (lpUrlComponents->lpszUserName)
1237 username = HeapAlloc(GetProcessHeap(), 0, UCW.dwUserNameLength * sizeof(WCHAR));
1238 UCW.lpszUserName = username;
1241 if (lpUrlComponents->dwPasswordLength)
1243 UCW.dwPasswordLength = lpUrlComponents->dwPasswordLength;
1244 if (lpUrlComponents->lpszPassword)
1246 password = HeapAlloc(GetProcessHeap(), 0, UCW.dwPasswordLength * sizeof(WCHAR));
1247 UCW.lpszPassword = password;
1250 if (lpUrlComponents->dwUrlPathLength)
1252 UCW.dwUrlPathLength = lpUrlComponents->dwUrlPathLength;
1253 if (lpUrlComponents->lpszUrlPath)
1255 path = HeapAlloc(GetProcessHeap(), 0, UCW.dwUrlPathLength * sizeof(WCHAR));
1256 UCW.lpszUrlPath = path;
1259 if (lpUrlComponents->dwSchemeLength)
1261 UCW.dwSchemeLength = lpUrlComponents->dwSchemeLength;
1262 if (lpUrlComponents->lpszScheme)
1264 scheme = HeapAlloc(GetProcessHeap(), 0, UCW.dwSchemeLength * sizeof(WCHAR));
1265 UCW.lpszScheme = scheme;
1268 if (lpUrlComponents->dwExtraInfoLength)
1270 UCW.dwExtraInfoLength = lpUrlComponents->dwExtraInfoLength;
1271 if (lpUrlComponents->lpszExtraInfo)
1273 extra = HeapAlloc(GetProcessHeap(), 0, UCW.dwExtraInfoLength * sizeof(WCHAR));
1274 UCW.lpszExtraInfo = extra;
1277 if ((ret = InternetCrackUrlW(lpwszUrl, nLength, dwFlags, &UCW)))
1279 ConvertUrlComponentValue(&lpUrlComponents->lpszHostName, &lpUrlComponents->dwHostNameLength,
1280 UCW.lpszHostName, UCW.dwHostNameLength, lpszUrl, lpwszUrl);
1281 ConvertUrlComponentValue(&lpUrlComponents->lpszUserName, &lpUrlComponents->dwUserNameLength,
1282 UCW.lpszUserName, UCW.dwUserNameLength, lpszUrl, lpwszUrl);
1283 ConvertUrlComponentValue(&lpUrlComponents->lpszPassword, &lpUrlComponents->dwPasswordLength,
1284 UCW.lpszPassword, UCW.dwPasswordLength, lpszUrl, lpwszUrl);
1285 ConvertUrlComponentValue(&lpUrlComponents->lpszUrlPath, &lpUrlComponents->dwUrlPathLength,
1286 UCW.lpszUrlPath, UCW.dwUrlPathLength, lpszUrl, lpwszUrl);
1287 ConvertUrlComponentValue(&lpUrlComponents->lpszScheme, &lpUrlComponents->dwSchemeLength,
1288 UCW.lpszScheme, UCW.dwSchemeLength, lpszUrl, lpwszUrl);
1289 ConvertUrlComponentValue(&lpUrlComponents->lpszExtraInfo, &lpUrlComponents->dwExtraInfoLength,
1290 UCW.lpszExtraInfo, UCW.dwExtraInfoLength, lpszUrl, lpwszUrl);
1292 lpUrlComponents->nScheme = UCW.nScheme;
1293 lpUrlComponents->nPort = UCW.nPort;
1295 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", lpszUrl,
1296 debugstr_an(lpUrlComponents->lpszScheme, lpUrlComponents->dwSchemeLength),
1297 debugstr_an(lpUrlComponents->lpszHostName, lpUrlComponents->dwHostNameLength),
1298 debugstr_an(lpUrlComponents->lpszUrlPath, lpUrlComponents->dwUrlPathLength),
1299 debugstr_an(lpUrlComponents->lpszExtraInfo, lpUrlComponents->dwExtraInfoLength));
1301 HeapFree(GetProcessHeap(), 0, lpwszUrl);
1302 HeapFree(GetProcessHeap(), 0, hostname);
1303 HeapFree(GetProcessHeap(), 0, username);
1304 HeapFree(GetProcessHeap(), 0, password);
1305 HeapFree(GetProcessHeap(), 0, path);
1306 HeapFree(GetProcessHeap(), 0, scheme);
1307 HeapFree(GetProcessHeap(), 0, extra);
1308 return ret;
1311 static const WCHAR url_schemes[][7] =
1313 {'f','t','p',0},
1314 {'g','o','p','h','e','r',0},
1315 {'h','t','t','p',0},
1316 {'h','t','t','p','s',0},
1317 {'f','i','l','e',0},
1318 {'n','e','w','s',0},
1319 {'m','a','i','l','t','o',0},
1320 {'r','e','s',0},
1323 /***********************************************************************
1324 * GetInternetSchemeW (internal)
1326 * Get scheme of url
1328 * RETURNS
1329 * scheme on success
1330 * INTERNET_SCHEME_UNKNOWN on failure
1333 static INTERNET_SCHEME GetInternetSchemeW(LPCWSTR lpszScheme, DWORD nMaxCmp)
1335 int i;
1337 TRACE("%s %d\n",debugstr_wn(lpszScheme, nMaxCmp), nMaxCmp);
1339 if(lpszScheme==NULL)
1340 return INTERNET_SCHEME_UNKNOWN;
1342 for (i = 0; i < sizeof(url_schemes)/sizeof(url_schemes[0]); i++)
1343 if (!strncmpW(lpszScheme, url_schemes[i], nMaxCmp))
1344 return INTERNET_SCHEME_FIRST + i;
1346 return INTERNET_SCHEME_UNKNOWN;
1349 /***********************************************************************
1350 * SetUrlComponentValueW (Internal)
1352 * Helper function for InternetCrackUrlW
1354 * PARAMS
1355 * lppszComponent [O] Holds the returned string
1356 * dwComponentLen [I] Holds the size of lppszComponent
1357 * [O] Holds the length of the string in lppszComponent without '\0'
1358 * lpszStart [I] Holds the string to copy from
1359 * len [I] Holds the length of lpszStart without '\0'
1361 * RETURNS
1362 * TRUE on success
1363 * FALSE on failure
1366 static BOOL SetUrlComponentValueW(LPWSTR* lppszComponent, LPDWORD dwComponentLen, LPCWSTR lpszStart, DWORD len)
1368 TRACE("%s (%d)\n", debugstr_wn(lpszStart,len), len);
1370 if ( (*dwComponentLen == 0) && (*lppszComponent == NULL) )
1371 return FALSE;
1373 if (*dwComponentLen != 0 || *lppszComponent == NULL)
1375 if (*lppszComponent == NULL)
1377 *lppszComponent = (LPWSTR)lpszStart;
1378 *dwComponentLen = len;
1380 else
1382 DWORD ncpylen = min((*dwComponentLen)-1, len);
1383 memcpy(*lppszComponent, lpszStart, ncpylen*sizeof(WCHAR));
1384 (*lppszComponent)[ncpylen] = '\0';
1385 *dwComponentLen = ncpylen;
1389 return TRUE;
1392 /***********************************************************************
1393 * InternetCrackUrlW (WININET.@)
1395 * Break up URL into its components
1397 * RETURNS
1398 * TRUE on success
1399 * FALSE on failure
1401 BOOL WINAPI InternetCrackUrlW(LPCWSTR lpszUrl_orig, DWORD dwUrlLength_orig, DWORD dwFlags,
1402 LPURL_COMPONENTSW lpUC)
1405 * RFC 1808
1406 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1409 LPCWSTR lpszParam = NULL;
1410 BOOL bIsAbsolute = FALSE;
1411 LPCWSTR lpszap, lpszUrl = lpszUrl_orig;
1412 LPCWSTR lpszcp = NULL;
1413 LPWSTR lpszUrl_decode = NULL;
1414 DWORD dwUrlLength = dwUrlLength_orig;
1416 TRACE("(%s %u %x %p)\n",
1417 lpszUrl ? debugstr_wn(lpszUrl, dwUrlLength ? dwUrlLength : strlenW(lpszUrl)) : "(null)",
1418 dwUrlLength, dwFlags, lpUC);
1420 if (!lpszUrl_orig || !*lpszUrl_orig || !lpUC)
1422 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
1423 return FALSE;
1425 if (!dwUrlLength) dwUrlLength = strlenW(lpszUrl);
1427 if (dwFlags & ICU_DECODE)
1429 WCHAR *url_tmp;
1430 DWORD len = dwUrlLength + 1;
1432 if (!(url_tmp = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR))))
1434 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
1435 return FALSE;
1437 memcpy(url_tmp, lpszUrl_orig, dwUrlLength * sizeof(WCHAR));
1438 url_tmp[dwUrlLength] = 0;
1439 if (!(lpszUrl_decode = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR))))
1441 HeapFree(GetProcessHeap(), 0, url_tmp);
1442 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
1443 return FALSE;
1445 if (InternetCanonicalizeUrlW(url_tmp, lpszUrl_decode, &len, ICU_DECODE | ICU_NO_ENCODE))
1447 dwUrlLength = len;
1448 lpszUrl = lpszUrl_decode;
1450 HeapFree(GetProcessHeap(), 0, url_tmp);
1452 lpszap = lpszUrl;
1454 /* Determine if the URI is absolute. */
1455 while (lpszap - lpszUrl < dwUrlLength)
1457 if (isalnumW(*lpszap))
1459 lpszap++;
1460 continue;
1462 if ((*lpszap == ':') && (lpszap - lpszUrl >= 2))
1464 bIsAbsolute = TRUE;
1465 lpszcp = lpszap;
1467 else
1469 lpszcp = lpszUrl; /* Relative url */
1472 break;
1475 lpUC->nScheme = INTERNET_SCHEME_UNKNOWN;
1476 lpUC->nPort = INTERNET_INVALID_PORT_NUMBER;
1478 /* Parse <params> */
1479 if (!(lpszParam = memchrW(lpszap, ';', dwUrlLength - (lpszap - lpszUrl))))
1480 lpszParam = memchrW(lpszap, '?', dwUrlLength - (lpszap - lpszUrl));
1482 SetUrlComponentValueW(&lpUC->lpszExtraInfo, &lpUC->dwExtraInfoLength,
1483 lpszParam, lpszParam ? dwUrlLength-(lpszParam-lpszUrl) : 0);
1485 if (bIsAbsolute) /* Parse <protocol>:[//<net_loc>] */
1487 LPCWSTR lpszNetLoc;
1489 /* Get scheme first. */
1490 lpUC->nScheme = GetInternetSchemeW(lpszUrl, lpszcp - lpszUrl);
1491 SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength,
1492 lpszUrl, lpszcp - lpszUrl);
1494 /* Eat ':' in protocol. */
1495 lpszcp++;
1497 /* double slash indicates the net_loc portion is present */
1498 if ((lpszcp[0] == '/') && (lpszcp[1] == '/'))
1500 lpszcp += 2;
1502 lpszNetLoc = memchrW(lpszcp, '/', dwUrlLength - (lpszcp - lpszUrl));
1503 if (lpszParam)
1505 if (lpszNetLoc)
1506 lpszNetLoc = min(lpszNetLoc, lpszParam);
1507 else
1508 lpszNetLoc = lpszParam;
1510 else if (!lpszNetLoc)
1511 lpszNetLoc = lpszcp + dwUrlLength-(lpszcp-lpszUrl);
1513 /* Parse net-loc */
1514 if (lpszNetLoc)
1516 LPCWSTR lpszHost;
1517 LPCWSTR lpszPort;
1519 /* [<user>[<:password>]@]<host>[:<port>] */
1520 /* First find the user and password if they exist */
1522 lpszHost = memchrW(lpszcp, '@', dwUrlLength - (lpszcp - lpszUrl));
1523 if (lpszHost == NULL || lpszHost > lpszNetLoc)
1525 /* username and password not specified. */
1526 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1527 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1529 else /* Parse out username and password */
1531 LPCWSTR lpszUser = lpszcp;
1532 LPCWSTR lpszPasswd = lpszHost;
1534 while (lpszcp < lpszHost)
1536 if (*lpszcp == ':')
1537 lpszPasswd = lpszcp;
1539 lpszcp++;
1542 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength,
1543 lpszUser, lpszPasswd - lpszUser);
1545 if (lpszPasswd != lpszHost)
1546 lpszPasswd++;
1547 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength,
1548 lpszPasswd == lpszHost ? NULL : lpszPasswd,
1549 lpszHost - lpszPasswd);
1551 lpszcp++; /* Advance to beginning of host */
1554 /* Parse <host><:port> */
1556 lpszHost = lpszcp;
1557 lpszPort = lpszNetLoc;
1559 /* special case for res:// URLs: there is no port here, so the host is the
1560 entire string up to the first '/' */
1561 if(lpUC->nScheme==INTERNET_SCHEME_RES)
1563 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1564 lpszHost, lpszPort - lpszHost);
1565 lpszcp=lpszNetLoc;
1567 else
1569 while (lpszcp < lpszNetLoc)
1571 if (*lpszcp == ':')
1572 lpszPort = lpszcp;
1574 lpszcp++;
1577 /* If the scheme is "file" and the host is just one letter, it's not a host */
1578 if(lpUC->nScheme==INTERNET_SCHEME_FILE && (lpszPort-lpszHost)==1)
1580 lpszcp=lpszHost;
1581 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1582 NULL, 0);
1584 else
1586 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
1587 lpszHost, lpszPort - lpszHost);
1588 if (lpszPort != lpszNetLoc)
1589 lpUC->nPort = atoiW(++lpszPort);
1590 else switch (lpUC->nScheme)
1592 case INTERNET_SCHEME_HTTP:
1593 lpUC->nPort = INTERNET_DEFAULT_HTTP_PORT;
1594 break;
1595 case INTERNET_SCHEME_HTTPS:
1596 lpUC->nPort = INTERNET_DEFAULT_HTTPS_PORT;
1597 break;
1598 case INTERNET_SCHEME_FTP:
1599 lpUC->nPort = INTERNET_DEFAULT_FTP_PORT;
1600 break;
1601 case INTERNET_SCHEME_GOPHER:
1602 lpUC->nPort = INTERNET_DEFAULT_GOPHER_PORT;
1603 break;
1604 default:
1605 break;
1611 else
1613 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1614 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1615 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
1618 else
1620 SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength, NULL, 0);
1621 SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
1622 SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
1623 SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
1626 /* Here lpszcp points to:
1628 * <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
1629 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1631 if (lpszcp != 0 && lpszcp - lpszUrl < dwUrlLength && (!lpszParam || lpszcp < lpszParam))
1633 INT len;
1635 /* Only truncate the parameter list if it's already been saved
1636 * in lpUC->lpszExtraInfo.
1638 if (lpszParam && lpUC->dwExtraInfoLength && lpUC->lpszExtraInfo)
1639 len = lpszParam - lpszcp;
1640 else
1642 /* Leave the parameter list in lpszUrlPath. Strip off any trailing
1643 * newlines if necessary.
1645 LPWSTR lpsznewline = memchrW(lpszcp, '\n', dwUrlLength - (lpszcp - lpszUrl));
1646 if (lpsznewline != NULL)
1647 len = lpsznewline - lpszcp;
1648 else
1649 len = dwUrlLength-(lpszcp-lpszUrl);
1651 SetUrlComponentValueW(&lpUC->lpszUrlPath, &lpUC->dwUrlPathLength,
1652 lpszcp, len);
1654 else
1656 if (lpUC->lpszUrlPath && (lpUC->dwUrlPathLength > 0))
1657 lpUC->lpszUrlPath[0] = 0;
1658 lpUC->dwUrlPathLength = 0;
1661 TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", debugstr_wn(lpszUrl,dwUrlLength),
1662 debugstr_wn(lpUC->lpszScheme,lpUC->dwSchemeLength),
1663 debugstr_wn(lpUC->lpszHostName,lpUC->dwHostNameLength),
1664 debugstr_wn(lpUC->lpszUrlPath,lpUC->dwUrlPathLength),
1665 debugstr_wn(lpUC->lpszExtraInfo,lpUC->dwExtraInfoLength));
1667 HeapFree(GetProcessHeap(), 0, lpszUrl_decode );
1668 return TRUE;
1671 /***********************************************************************
1672 * InternetAttemptConnect (WININET.@)
1674 * Attempt to make a connection to the internet
1676 * RETURNS
1677 * ERROR_SUCCESS on success
1678 * Error value on failure
1681 DWORD WINAPI InternetAttemptConnect(DWORD dwReserved)
1683 FIXME("Stub\n");
1684 return ERROR_SUCCESS;
1688 /***********************************************************************
1689 * InternetCanonicalizeUrlA (WININET.@)
1691 * Escape unsafe characters and spaces
1693 * RETURNS
1694 * TRUE on success
1695 * FALSE on failure
1698 BOOL WINAPI InternetCanonicalizeUrlA(LPCSTR lpszUrl, LPSTR lpszBuffer,
1699 LPDWORD lpdwBufferLength, DWORD dwFlags)
1701 HRESULT hr;
1702 DWORD dwURLFlags = URL_WININET_COMPATIBILITY | URL_ESCAPE_UNSAFE;
1704 TRACE("(%s, %p, %p, 0x%08x) bufferlength: %d\n", debugstr_a(lpszUrl), lpszBuffer,
1705 lpdwBufferLength, lpdwBufferLength ? *lpdwBufferLength : -1, dwFlags);
1707 if(dwFlags & ICU_DECODE)
1709 dwURLFlags |= URL_UNESCAPE;
1710 dwFlags &= ~ICU_DECODE;
1713 if(dwFlags & ICU_ESCAPE)
1715 dwURLFlags |= URL_UNESCAPE;
1716 dwFlags &= ~ICU_ESCAPE;
1719 if(dwFlags & ICU_BROWSER_MODE)
1721 dwURLFlags |= URL_BROWSER_MODE;
1722 dwFlags &= ~ICU_BROWSER_MODE;
1725 if(dwFlags & ICU_NO_ENCODE)
1727 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1728 dwURLFlags ^= URL_ESCAPE_UNSAFE;
1729 dwFlags &= ~ICU_NO_ENCODE;
1732 if (dwFlags) FIXME("Unhandled flags 0x%08x\n", dwFlags);
1734 hr = UrlCanonicalizeA(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
1735 if (hr == E_POINTER) SetLastError(ERROR_INSUFFICIENT_BUFFER);
1736 if (hr == E_INVALIDARG) SetLastError(ERROR_INVALID_PARAMETER);
1738 return (hr == S_OK) ? TRUE : FALSE;
1741 /***********************************************************************
1742 * InternetCanonicalizeUrlW (WININET.@)
1744 * Escape unsafe characters and spaces
1746 * RETURNS
1747 * TRUE on success
1748 * FALSE on failure
1751 BOOL WINAPI InternetCanonicalizeUrlW(LPCWSTR lpszUrl, LPWSTR lpszBuffer,
1752 LPDWORD lpdwBufferLength, DWORD dwFlags)
1754 HRESULT hr;
1755 DWORD dwURLFlags = URL_WININET_COMPATIBILITY | URL_ESCAPE_UNSAFE;
1757 TRACE("(%s, %p, %p, 0x%08x) bufferlength: %d\n", debugstr_w(lpszUrl), lpszBuffer,
1758 lpdwBufferLength, dwFlags, lpdwBufferLength ? *lpdwBufferLength : -1);
1760 if(dwFlags & ICU_DECODE)
1762 dwURLFlags |= URL_UNESCAPE;
1763 dwFlags &= ~ICU_DECODE;
1766 if(dwFlags & ICU_ESCAPE)
1768 dwURLFlags |= URL_UNESCAPE;
1769 dwFlags &= ~ICU_ESCAPE;
1772 if(dwFlags & ICU_BROWSER_MODE)
1774 dwURLFlags |= URL_BROWSER_MODE;
1775 dwFlags &= ~ICU_BROWSER_MODE;
1778 if(dwFlags & ICU_NO_ENCODE)
1780 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
1781 dwURLFlags ^= URL_ESCAPE_UNSAFE;
1782 dwFlags &= ~ICU_NO_ENCODE;
1785 if (dwFlags) FIXME("Unhandled flags 0x%08x\n", dwFlags);
1787 hr = UrlCanonicalizeW(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
1788 if (hr == E_POINTER) SetLastError(ERROR_INSUFFICIENT_BUFFER);
1789 if (hr == E_INVALIDARG) SetLastError(ERROR_INVALID_PARAMETER);
1791 return (hr == S_OK) ? TRUE : FALSE;
1794 /* #################################################### */
1796 static INTERNET_STATUS_CALLBACK set_status_callback(
1797 LPWININETHANDLEHEADER lpwh, INTERNET_STATUS_CALLBACK callback, BOOL unicode)
1799 INTERNET_STATUS_CALLBACK ret;
1801 if (unicode) lpwh->dwInternalFlags |= INET_CALLBACKW;
1802 else lpwh->dwInternalFlags &= ~INET_CALLBACKW;
1804 ret = lpwh->lpfnStatusCB;
1805 lpwh->lpfnStatusCB = callback;
1807 return ret;
1810 /***********************************************************************
1811 * InternetSetStatusCallbackA (WININET.@)
1813 * Sets up a callback function which is called as progress is made
1814 * during an operation.
1816 * RETURNS
1817 * Previous callback or NULL on success
1818 * INTERNET_INVALID_STATUS_CALLBACK on failure
1821 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackA(
1822 HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1824 INTERNET_STATUS_CALLBACK retVal;
1825 LPWININETHANDLEHEADER lpwh;
1827 TRACE("%p\n", hInternet);
1829 if (!(lpwh = WININET_GetObject(hInternet)))
1830 return INTERNET_INVALID_STATUS_CALLBACK;
1832 retVal = set_status_callback(lpwh, lpfnIntCB, FALSE);
1834 WININET_Release( lpwh );
1835 return retVal;
1838 /***********************************************************************
1839 * InternetSetStatusCallbackW (WININET.@)
1841 * Sets up a callback function which is called as progress is made
1842 * during an operation.
1844 * RETURNS
1845 * Previous callback or NULL on success
1846 * INTERNET_INVALID_STATUS_CALLBACK on failure
1849 INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackW(
1850 HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
1852 INTERNET_STATUS_CALLBACK retVal;
1853 LPWININETHANDLEHEADER lpwh;
1855 TRACE("%p\n", hInternet);
1857 if (!(lpwh = WININET_GetObject(hInternet)))
1858 return INTERNET_INVALID_STATUS_CALLBACK;
1860 retVal = set_status_callback(lpwh, lpfnIntCB, TRUE);
1862 WININET_Release( lpwh );
1863 return retVal;
1866 /***********************************************************************
1867 * InternetSetFilePointer (WININET.@)
1869 DWORD WINAPI InternetSetFilePointer(HINTERNET hFile, LONG lDistanceToMove,
1870 PVOID pReserved, DWORD dwMoveContext, DWORD_PTR dwContext)
1872 FIXME("stub\n");
1873 return FALSE;
1876 /***********************************************************************
1877 * InternetWriteFile (WININET.@)
1879 * Write data to an open internet file
1881 * RETURNS
1882 * TRUE on success
1883 * FALSE on failure
1886 BOOL WINAPI InternetWriteFile(HINTERNET hFile, LPCVOID lpBuffer,
1887 DWORD dwNumOfBytesToWrite, LPDWORD lpdwNumOfBytesWritten)
1889 LPWININETHANDLEHEADER lpwh;
1890 BOOL retval = FALSE;
1892 TRACE("(%p %p %d %p)\n", hFile, lpBuffer, dwNumOfBytesToWrite, lpdwNumOfBytesWritten);
1894 lpwh = WININET_GetObject( hFile );
1895 if (!lpwh) {
1896 WARN("Invalid handle\n");
1897 SetLastError(ERROR_INVALID_HANDLE);
1898 return FALSE;
1901 if(lpwh->vtbl->WriteFile) {
1902 retval = lpwh->vtbl->WriteFile(lpwh, lpBuffer, dwNumOfBytesToWrite, lpdwNumOfBytesWritten);
1903 }else {
1904 WARN("No Writefile method.\n");
1905 SetLastError(ERROR_INVALID_HANDLE);
1906 retval = FALSE;
1909 WININET_Release( lpwh );
1911 return retval;
1915 /***********************************************************************
1916 * InternetReadFile (WININET.@)
1918 * Read data from an open internet file
1920 * RETURNS
1921 * TRUE on success
1922 * FALSE on failure
1925 BOOL WINAPI InternetReadFile(HINTERNET hFile, LPVOID lpBuffer,
1926 DWORD dwNumOfBytesToRead, LPDWORD pdwNumOfBytesRead)
1928 LPWININETHANDLEHEADER hdr;
1929 DWORD res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
1931 TRACE("%p %p %d %p\n", hFile, lpBuffer, dwNumOfBytesToRead, pdwNumOfBytesRead);
1933 hdr = WININET_GetObject(hFile);
1934 if (!hdr) {
1935 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1936 return FALSE;
1939 if(hdr->vtbl->ReadFile)
1940 res = hdr->vtbl->ReadFile(hdr, lpBuffer, dwNumOfBytesToRead, pdwNumOfBytesRead);
1942 WININET_Release(hdr);
1944 TRACE("-- %s (%u) (bytes read: %d)\n", res == ERROR_SUCCESS ? "TRUE": "FALSE", res,
1945 pdwNumOfBytesRead ? *pdwNumOfBytesRead : -1);
1947 if(res != ERROR_SUCCESS)
1948 SetLastError(res);
1949 return res == ERROR_SUCCESS;
1952 /***********************************************************************
1953 * InternetReadFileExA (WININET.@)
1955 * Read data from an open internet file
1957 * PARAMS
1958 * hFile [I] Handle returned by InternetOpenUrl or HttpOpenRequest.
1959 * lpBuffersOut [I/O] Buffer.
1960 * dwFlags [I] Flags. See notes.
1961 * dwContext [I] Context for callbacks.
1963 * RETURNS
1964 * TRUE on success
1965 * FALSE on failure
1967 * NOTES
1968 * The parameter dwFlags include zero or more of the following flags:
1969 *|IRF_ASYNC - Makes the call asynchronous.
1970 *|IRF_SYNC - Makes the call synchronous.
1971 *|IRF_USE_CONTEXT - Forces dwContext to be used.
1972 *|IRF_NO_WAIT - Don't block if the data is not available, just return what is available.
1974 * However, in testing IRF_USE_CONTEXT seems to have no effect - dwContext isn't used.
1976 * SEE
1977 * InternetOpenUrlA(), HttpOpenRequestA()
1979 BOOL WINAPI InternetReadFileExA(HINTERNET hFile, LPINTERNET_BUFFERSA lpBuffersOut,
1980 DWORD dwFlags, DWORD_PTR dwContext)
1982 LPWININETHANDLEHEADER hdr;
1983 DWORD res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
1985 TRACE("(%p %p 0x%x 0x%lx)\n", hFile, lpBuffersOut, dwFlags, dwContext);
1987 hdr = WININET_GetObject(hFile);
1988 if (!hdr) {
1989 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
1990 return FALSE;
1993 if(hdr->vtbl->ReadFileExA)
1994 res = hdr->vtbl->ReadFileExA(hdr, lpBuffersOut, dwFlags, dwContext);
1996 WININET_Release(hdr);
1998 TRACE("-- %s (%u, bytes read: %d)\n", res == ERROR_SUCCESS ? "TRUE": "FALSE",
1999 res, lpBuffersOut->dwBufferLength);
2001 if(res != ERROR_SUCCESS)
2002 SetLastError(res);
2003 return res == ERROR_SUCCESS;
2006 /***********************************************************************
2007 * InternetReadFileExW (WININET.@)
2008 * SEE
2009 * InternetReadFileExA()
2011 BOOL WINAPI InternetReadFileExW(HINTERNET hFile, LPINTERNET_BUFFERSW lpBuffer,
2012 DWORD dwFlags, DWORD_PTR dwContext)
2014 LPWININETHANDLEHEADER hdr;
2015 DWORD res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
2017 TRACE("(%p %p 0x%x 0x%lx)\n", hFile, lpBuffer, dwFlags, dwContext);
2019 hdr = WININET_GetObject(hFile);
2020 if (!hdr) {
2021 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
2022 return FALSE;
2025 if(hdr->vtbl->ReadFileExW)
2026 res = hdr->vtbl->ReadFileExW(hdr, lpBuffer, dwFlags, dwContext);
2028 WININET_Release(hdr);
2030 TRACE("-- %s (%u, bytes read: %d)\n", res == ERROR_SUCCESS ? "TRUE": "FALSE",
2031 res, lpBuffer->dwBufferLength);
2033 if(res != ERROR_SUCCESS)
2034 SetLastError(res);
2035 return res == ERROR_SUCCESS;
2038 DWORD INET_QueryOption(DWORD option, void *buffer, DWORD *size, BOOL unicode)
2040 static BOOL warn = TRUE;
2042 switch(option) {
2043 case INTERNET_OPTION_REQUEST_FLAGS:
2044 TRACE("INTERNET_OPTION_REQUEST_FLAGS\n");
2046 if (*size < sizeof(ULONG))
2047 return ERROR_INSUFFICIENT_BUFFER;
2049 *(ULONG*)buffer = 4;
2050 *size = sizeof(ULONG);
2052 return ERROR_SUCCESS;
2054 case INTERNET_OPTION_HTTP_VERSION:
2055 if (*size < sizeof(HTTP_VERSION_INFO))
2056 return ERROR_INSUFFICIENT_BUFFER;
2059 * Presently hardcoded to 1.1
2061 ((HTTP_VERSION_INFO*)buffer)->dwMajorVersion = 1;
2062 ((HTTP_VERSION_INFO*)buffer)->dwMinorVersion = 1;
2063 *size = sizeof(HTTP_VERSION_INFO);
2065 return ERROR_SUCCESS;
2067 case INTERNET_OPTION_CONNECTED_STATE:
2069 if (warn) {
2070 FIXME("INTERNET_OPTION_CONNECTED_STATE: semi-stub\n");
2071 warn = FALSE;
2073 if (*size < sizeof(ULONG))
2074 return ERROR_INSUFFICIENT_BUFFER;
2076 *(ULONG*)buffer = INTERNET_STATE_CONNECTED;
2077 *size = sizeof(ULONG);
2079 return ERROR_SUCCESS;
2081 case INTERNET_OPTION_PROXY: {
2082 WININETAPPINFOW ai;
2084 TRACE("Getting global proxy info\n");
2085 memset(&ai, 0, sizeof(WININETAPPINFOW));
2086 INTERNET_ConfigureProxy(&ai);
2088 return APPINFO_QueryOption(&ai.hdr, INTERNET_OPTION_PROXY, buffer, size, unicode); /* FIXME */
2091 case INTERNET_OPTION_MAX_CONNS_PER_SERVER:
2092 TRACE("INTERNET_OPTION_MAX_CONNS_PER_SERVER\n");
2094 if (*size < sizeof(ULONG))
2095 return ERROR_INSUFFICIENT_BUFFER;
2097 *(ULONG*)buffer = 2;
2098 *size = sizeof(ULONG);
2100 return ERROR_SUCCESS;
2102 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER:
2103 TRACE("INTERNET_OPTION_MAX_CONNS_1_0_SERVER\n");
2105 if (*size < sizeof(ULONG))
2106 return ERROR_INSUFFICIENT_BUFFER;
2108 *(ULONG*)size = 4;
2109 *size = sizeof(ULONG);
2111 return ERROR_SUCCESS;
2113 case INTERNET_OPTION_SECURITY_FLAGS:
2114 FIXME("INTERNET_OPTION_SECURITY_FLAGS: Stub\n");
2115 return ERROR_SUCCESS;
2117 case INTERNET_OPTION_VERSION: {
2118 static const INTERNET_VERSION_INFO info = { 1, 2 };
2120 TRACE("INTERNET_OPTION_VERSION\n");
2122 if (*size < sizeof(INTERNET_VERSION_INFO))
2123 return ERROR_INSUFFICIENT_BUFFER;
2125 memcpy(buffer, &info, sizeof(info));
2126 *size = sizeof(info);
2128 return ERROR_SUCCESS;
2131 case INTERNET_OPTION_PER_CONNECTION_OPTION: {
2132 INTERNET_PER_CONN_OPTION_LISTW *con = buffer;
2133 DWORD res = ERROR_SUCCESS, i;
2135 FIXME("INTERNET_OPTION_PER_CONNECTION_OPTION stub\n");
2137 if (*size < sizeof(INTERNET_PER_CONN_OPTION_LISTW))
2138 return ERROR_INSUFFICIENT_BUFFER;
2140 for (i = 0; i < con->dwOptionCount; i++) {
2141 INTERNET_PER_CONN_OPTIONW *option = con->pOptions + i;
2143 switch (option->dwOption) {
2144 case INTERNET_PER_CONN_FLAGS:
2145 option->Value.dwValue = PROXY_TYPE_DIRECT;
2146 break;
2148 case INTERNET_PER_CONN_PROXY_SERVER:
2149 case INTERNET_PER_CONN_PROXY_BYPASS:
2150 case INTERNET_PER_CONN_AUTOCONFIG_URL:
2151 case INTERNET_PER_CONN_AUTODISCOVERY_FLAGS:
2152 case INTERNET_PER_CONN_AUTOCONFIG_SECONDARY_URL:
2153 case INTERNET_PER_CONN_AUTOCONFIG_RELOAD_DELAY_MINS:
2154 case INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_TIME:
2155 case INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_URL:
2156 FIXME("Unhandled dwOption %d\n", option->dwOption);
2157 memset(&option->Value, 0, sizeof(option->Value));
2158 break;
2160 default:
2161 FIXME("Unknown dwOption %d\n", option->dwOption);
2162 res = ERROR_INVALID_PARAMETER;
2163 break;
2167 return res;
2171 FIXME("Stub for %d\n", option);
2172 return ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
2175 /***********************************************************************
2176 * InternetQueryOptionW (WININET.@)
2178 * Queries an options on the specified handle
2180 * RETURNS
2181 * TRUE on success
2182 * FALSE on failure
2185 BOOL WINAPI InternetQueryOptionW(HINTERNET hInternet, DWORD dwOption,
2186 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2188 LPWININETHANDLEHEADER hdr;
2189 DWORD res = ERROR_INVALID_HANDLE;
2191 TRACE("%p %d %p %p\n", hInternet, dwOption, lpBuffer, lpdwBufferLength);
2193 if(hInternet) {
2194 hdr = WININET_GetObject(hInternet);
2195 if (hdr) {
2196 res = hdr->vtbl->QueryOption(hdr, dwOption, lpBuffer, lpdwBufferLength, TRUE);
2197 WININET_Release(hdr);
2199 }else {
2200 res = INET_QueryOption(dwOption, lpBuffer, lpdwBufferLength, TRUE);
2203 if(res != ERROR_SUCCESS)
2204 SetLastError(res);
2205 return res == ERROR_SUCCESS;
2208 /***********************************************************************
2209 * InternetQueryOptionA (WININET.@)
2211 * Queries an options on the specified handle
2213 * RETURNS
2214 * TRUE on success
2215 * FALSE on failure
2218 BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
2219 LPVOID lpBuffer, LPDWORD lpdwBufferLength)
2221 LPWININETHANDLEHEADER hdr;
2222 DWORD res = ERROR_INVALID_HANDLE;
2224 TRACE("%p %d %p %p\n", hInternet, dwOption, lpBuffer, lpdwBufferLength);
2226 if(hInternet) {
2227 hdr = WININET_GetObject(hInternet);
2228 if (hdr) {
2229 res = hdr->vtbl->QueryOption(hdr, dwOption, lpBuffer, lpdwBufferLength, FALSE);
2230 WININET_Release(hdr);
2232 }else {
2233 res = INET_QueryOption(dwOption, lpBuffer, lpdwBufferLength, FALSE);
2236 if(res != ERROR_SUCCESS)
2237 SetLastError(res);
2238 return res == ERROR_SUCCESS;
2242 /***********************************************************************
2243 * InternetSetOptionW (WININET.@)
2245 * Sets an options on the specified handle
2247 * RETURNS
2248 * TRUE on success
2249 * FALSE on failure
2252 BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
2253 LPVOID lpBuffer, DWORD dwBufferLength)
2255 LPWININETHANDLEHEADER lpwhh;
2256 BOOL ret = TRUE;
2258 TRACE("(%p %d %p %d)\n", hInternet, dwOption, lpBuffer, dwBufferLength);
2260 lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
2261 if(lpwhh && lpwhh->vtbl->SetOption) {
2262 DWORD res;
2264 res = lpwhh->vtbl->SetOption(lpwhh, dwOption, lpBuffer, dwBufferLength);
2265 if(res != ERROR_INTERNET_INVALID_OPTION) {
2266 WININET_Release( lpwhh );
2268 if(res != ERROR_SUCCESS)
2269 SetLastError(res);
2271 return res == ERROR_SUCCESS;
2275 switch (dwOption)
2277 case INTERNET_OPTION_CALLBACK:
2279 if (!lpwhh)
2281 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
2282 return FALSE;
2284 WININET_Release(lpwhh);
2285 INTERNET_SetLastError(ERROR_INTERNET_OPTION_NOT_SETTABLE);
2286 return FALSE;
2288 case INTERNET_OPTION_HTTP_VERSION:
2290 HTTP_VERSION_INFO* pVersion=(HTTP_VERSION_INFO*)lpBuffer;
2291 FIXME("Option INTERNET_OPTION_HTTP_VERSION(%d,%d): STUB\n",pVersion->dwMajorVersion,pVersion->dwMinorVersion);
2293 break;
2294 case INTERNET_OPTION_ERROR_MASK:
2296 ULONG flags = *(ULONG *)lpBuffer;
2297 FIXME("Option INTERNET_OPTION_ERROR_MASK(%d): STUB\n", flags);
2299 break;
2300 case INTERNET_OPTION_CODEPAGE:
2302 ULONG codepage = *(ULONG *)lpBuffer;
2303 FIXME("Option INTERNET_OPTION_CODEPAGE (%d): STUB\n", codepage);
2305 break;
2306 case INTERNET_OPTION_REQUEST_PRIORITY:
2308 ULONG priority = *(ULONG *)lpBuffer;
2309 FIXME("Option INTERNET_OPTION_REQUEST_PRIORITY (%d): STUB\n", priority);
2311 break;
2312 case INTERNET_OPTION_CONNECT_TIMEOUT:
2314 ULONG connecttimeout = *(ULONG *)lpBuffer;
2315 FIXME("Option INTERNET_OPTION_CONNECT_TIMEOUT (%d): STUB\n", connecttimeout);
2317 break;
2318 case INTERNET_OPTION_DATA_RECEIVE_TIMEOUT:
2320 ULONG receivetimeout = *(ULONG *)lpBuffer;
2321 FIXME("Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%d): STUB\n", receivetimeout);
2323 break;
2324 case INTERNET_OPTION_MAX_CONNS_PER_SERVER:
2326 ULONG conns = *(ULONG *)lpBuffer;
2327 FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_SERVER (%d): STUB\n", conns);
2329 break;
2330 case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER:
2332 ULONG conns = *(ULONG *)lpBuffer;
2333 FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER (%d): STUB\n", conns);
2335 break;
2336 case INTERNET_OPTION_RESET_URLCACHE_SESSION:
2337 FIXME("Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB\n");
2338 break;
2339 case INTERNET_OPTION_END_BROWSER_SESSION:
2340 FIXME("Option INTERNET_OPTION_END_BROWSER_SESSION: STUB\n");
2341 break;
2342 case INTERNET_OPTION_CONNECTED_STATE:
2343 FIXME("Option INTERNET_OPTION_CONNECTED_STATE: STUB\n");
2344 break;
2345 case INTERNET_OPTION_DISABLE_PASSPORT_AUTH:
2346 TRACE("Option INTERNET_OPTION_DISABLE_PASSPORT_AUTH: harmless stub, since not enabled\n");
2347 break;
2348 case INTERNET_OPTION_SEND_TIMEOUT:
2349 case INTERNET_OPTION_RECEIVE_TIMEOUT:
2351 ULONG timeout = *(ULONG *)lpBuffer;
2352 FIXME("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT %d\n", timeout);
2353 break;
2355 case INTERNET_OPTION_CONNECT_RETRIES:
2357 ULONG retries = *(ULONG *)lpBuffer;
2358 FIXME("INTERNET_OPTION_CONNECT_RETRIES %d\n", retries);
2359 break;
2361 case INTERNET_OPTION_CONTEXT_VALUE:
2362 FIXME("Option INTERNET_OPTION_CONTEXT_VALUE; STUB\n");
2363 break;
2364 case INTERNET_OPTION_SECURITY_FLAGS:
2365 FIXME("Option INTERNET_OPTION_SECURITY_FLAGS; STUB\n");
2366 break;
2367 case INTERNET_OPTION_DISABLE_AUTODIAL:
2368 FIXME("Option INTERNET_OPTION_DISABLE_AUTODIAL; STUB\n");
2369 break;
2370 case INTERNET_OPTION_HTTP_DECODING:
2371 FIXME("INTERNET_OPTION_HTTP_DECODING; STUB\n");
2372 INTERNET_SetLastError(ERROR_INTERNET_INVALID_OPTION);
2373 ret = FALSE;
2374 break;
2375 case INTERNET_OPTION_COOKIES_3RD_PARTY:
2376 FIXME("INTERNET_OPTION_COOKIES_3RD_PARTY; STUB\n");
2377 INTERNET_SetLastError(ERROR_INTERNET_INVALID_OPTION);
2378 ret = FALSE;
2379 break;
2380 case INTERNET_OPTION_SEND_UTF8_SERVERNAME_TO_PROXY:
2381 FIXME("INTERNET_OPTION_SEND_UTF8_SERVERNAME_TO_PROXY; STUB\n");
2382 INTERNET_SetLastError(ERROR_INTERNET_INVALID_OPTION);
2383 ret = FALSE;
2384 break;
2385 case INTERNET_OPTION_CODEPAGE_PATH:
2386 FIXME("INTERNET_OPTION_CODEPAGE_PATH; STUB\n");
2387 INTERNET_SetLastError(ERROR_INTERNET_INVALID_OPTION);
2388 ret = FALSE;
2389 break;
2390 case INTERNET_OPTION_CODEPAGE_EXTRA:
2391 FIXME("INTERNET_OPTION_CODEPAGE_EXTRA; STUB\n");
2392 INTERNET_SetLastError(ERROR_INTERNET_INVALID_OPTION);
2393 ret = FALSE;
2394 break;
2395 case INTERNET_OPTION_IDN:
2396 FIXME("INTERNET_OPTION_IDN; STUB\n");
2397 INTERNET_SetLastError(ERROR_INTERNET_INVALID_OPTION);
2398 ret = FALSE;
2399 break;
2400 default:
2401 FIXME("Option %d STUB\n",dwOption);
2402 INTERNET_SetLastError(ERROR_INTERNET_INVALID_OPTION);
2403 ret = FALSE;
2404 break;
2407 if(lpwhh)
2408 WININET_Release( lpwhh );
2410 return ret;
2414 /***********************************************************************
2415 * InternetSetOptionA (WININET.@)
2417 * Sets an options on the specified handle.
2419 * RETURNS
2420 * TRUE on success
2421 * FALSE on failure
2424 BOOL WINAPI InternetSetOptionA(HINTERNET hInternet, DWORD dwOption,
2425 LPVOID lpBuffer, DWORD dwBufferLength)
2427 LPVOID wbuffer;
2428 DWORD wlen;
2429 BOOL r;
2431 switch( dwOption )
2433 case INTERNET_OPTION_CALLBACK:
2435 LPWININETHANDLEHEADER lpwh;
2437 if (!(lpwh = WININET_GetObject(hInternet)))
2439 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
2440 return FALSE;
2442 WININET_Release(lpwh);
2443 INTERNET_SetLastError(ERROR_INTERNET_OPTION_NOT_SETTABLE);
2444 return FALSE;
2446 case INTERNET_OPTION_PROXY:
2448 LPINTERNET_PROXY_INFOA pi = (LPINTERNET_PROXY_INFOA) lpBuffer;
2449 LPINTERNET_PROXY_INFOW piw;
2450 DWORD proxlen, prbylen;
2451 LPWSTR prox, prby;
2453 proxlen = MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, NULL, 0);
2454 prbylen= MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, NULL, 0);
2455 wlen = sizeof(*piw) + proxlen + prbylen;
2456 wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2457 piw = (LPINTERNET_PROXY_INFOW) wbuffer;
2458 piw->dwAccessType = pi->dwAccessType;
2459 prox = (LPWSTR) &piw[1];
2460 prby = &prox[proxlen+1];
2461 MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, prox, proxlen);
2462 MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, prby, prbylen);
2463 piw->lpszProxy = prox;
2464 piw->lpszProxyBypass = prby;
2466 break;
2467 case INTERNET_OPTION_USER_AGENT:
2468 case INTERNET_OPTION_USERNAME:
2469 case INTERNET_OPTION_PASSWORD:
2470 wlen = MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2471 NULL, 0 );
2472 wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
2473 MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
2474 wbuffer, wlen );
2475 break;
2476 default:
2477 wbuffer = lpBuffer;
2478 wlen = dwBufferLength;
2481 r = InternetSetOptionW(hInternet,dwOption, wbuffer, wlen);
2483 if( lpBuffer != wbuffer )
2484 HeapFree( GetProcessHeap(), 0, wbuffer );
2486 return r;
2490 /***********************************************************************
2491 * InternetSetOptionExA (WININET.@)
2493 BOOL WINAPI InternetSetOptionExA(HINTERNET hInternet, DWORD dwOption,
2494 LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2496 FIXME("Flags %08x ignored\n", dwFlags);
2497 return InternetSetOptionA( hInternet, dwOption, lpBuffer, dwBufferLength );
2500 /***********************************************************************
2501 * InternetSetOptionExW (WININET.@)
2503 BOOL WINAPI InternetSetOptionExW(HINTERNET hInternet, DWORD dwOption,
2504 LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
2506 FIXME("Flags %08x ignored\n", dwFlags);
2507 if( dwFlags & ~ISO_VALID_FLAGS )
2509 INTERNET_SetLastError( ERROR_INVALID_PARAMETER );
2510 return FALSE;
2512 return InternetSetOptionW( hInternet, dwOption, lpBuffer, dwBufferLength );
2515 static const WCHAR WININET_wkday[7][4] =
2516 { { 'S','u','n', 0 }, { 'M','o','n', 0 }, { 'T','u','e', 0 }, { 'W','e','d', 0 },
2517 { 'T','h','u', 0 }, { 'F','r','i', 0 }, { 'S','a','t', 0 } };
2518 static const WCHAR WININET_month[12][4] =
2519 { { 'J','a','n', 0 }, { 'F','e','b', 0 }, { 'M','a','r', 0 }, { 'A','p','r', 0 },
2520 { 'M','a','y', 0 }, { 'J','u','n', 0 }, { 'J','u','l', 0 }, { 'A','u','g', 0 },
2521 { 'S','e','p', 0 }, { 'O','c','t', 0 }, { 'N','o','v', 0 }, { 'D','e','c', 0 } };
2523 /***********************************************************************
2524 * InternetTimeFromSystemTimeA (WININET.@)
2526 BOOL WINAPI InternetTimeFromSystemTimeA( const SYSTEMTIME* time, DWORD format, LPSTR string, DWORD size )
2528 BOOL ret;
2529 WCHAR stringW[INTERNET_RFC1123_BUFSIZE];
2531 TRACE( "%p 0x%08x %p 0x%08x\n", time, format, string, size );
2533 if (!time || !string || format != INTERNET_RFC1123_FORMAT)
2535 SetLastError(ERROR_INVALID_PARAMETER);
2536 return FALSE;
2539 if (size < INTERNET_RFC1123_BUFSIZE * sizeof(*string))
2541 SetLastError(ERROR_INSUFFICIENT_BUFFER);
2542 return FALSE;
2545 ret = InternetTimeFromSystemTimeW( time, format, stringW, sizeof(stringW) );
2546 if (ret) WideCharToMultiByte( CP_ACP, 0, stringW, -1, string, size, NULL, NULL );
2548 return ret;
2551 /***********************************************************************
2552 * InternetTimeFromSystemTimeW (WININET.@)
2554 BOOL WINAPI InternetTimeFromSystemTimeW( const SYSTEMTIME* time, DWORD format, LPWSTR string, DWORD size )
2556 static const WCHAR date[] =
2557 { '%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
2558 '2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0 };
2560 TRACE( "%p 0x%08x %p 0x%08x\n", time, format, string, size );
2562 if (!time || !string || format != INTERNET_RFC1123_FORMAT)
2564 SetLastError(ERROR_INVALID_PARAMETER);
2565 return FALSE;
2568 if (size < INTERNET_RFC1123_BUFSIZE * sizeof(*string))
2570 SetLastError(ERROR_INSUFFICIENT_BUFFER);
2571 return FALSE;
2574 sprintfW( string, date,
2575 WININET_wkday[time->wDayOfWeek],
2576 time->wDay,
2577 WININET_month[time->wMonth - 1],
2578 time->wYear,
2579 time->wHour,
2580 time->wMinute,
2581 time->wSecond );
2583 return TRUE;
2586 /***********************************************************************
2587 * InternetTimeToSystemTimeA (WININET.@)
2589 BOOL WINAPI InternetTimeToSystemTimeA( LPCSTR string, SYSTEMTIME* time, DWORD reserved )
2591 BOOL ret = FALSE;
2592 WCHAR *stringW;
2593 int len;
2595 TRACE( "%s %p 0x%08x\n", debugstr_a(string), time, reserved );
2597 len = MultiByteToWideChar( CP_ACP, 0, string, -1, NULL, 0 );
2598 stringW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
2600 if (stringW)
2602 MultiByteToWideChar( CP_ACP, 0, string, -1, stringW, len );
2603 ret = InternetTimeToSystemTimeW( stringW, time, reserved );
2604 HeapFree( GetProcessHeap(), 0, stringW );
2606 return ret;
2609 /***********************************************************************
2610 * InternetTimeToSystemTimeW (WININET.@)
2612 BOOL WINAPI InternetTimeToSystemTimeW( LPCWSTR string, SYSTEMTIME* time, DWORD reserved )
2614 unsigned int i;
2615 const WCHAR *s = string;
2616 WCHAR *end;
2618 TRACE( "%s %p 0x%08x\n", debugstr_w(string), time, reserved );
2620 if (!string || !time) return FALSE;
2622 /* Windows does this too */
2623 GetSystemTime( time );
2625 /* Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
2626 * a SYSTEMTIME structure.
2629 while (*s && !isalphaW( *s )) s++;
2630 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2631 time->wDayOfWeek = 7;
2633 for (i = 0; i < 7; i++)
2635 if (toupperW( WININET_wkday[i][0] ) == toupperW( s[0] ) &&
2636 toupperW( WININET_wkday[i][1] ) == toupperW( s[1] ) &&
2637 toupperW( WININET_wkday[i][2] ) == toupperW( s[2] ) )
2639 time->wDayOfWeek = i;
2640 break;
2644 if (time->wDayOfWeek > 6) return TRUE;
2645 while (*s && !isdigitW( *s )) s++;
2646 time->wDay = strtolW( s, &end, 10 );
2647 s = end;
2649 while (*s && !isalphaW( *s )) s++;
2650 if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
2651 time->wMonth = 0;
2653 for (i = 0; i < 12; i++)
2655 if (toupperW( WININET_month[i][0]) == toupperW( s[0] ) &&
2656 toupperW( WININET_month[i][1]) == toupperW( s[1] ) &&
2657 toupperW( WININET_month[i][2]) == toupperW( s[2] ) )
2659 time->wMonth = i + 1;
2660 break;
2663 if (time->wMonth == 0) return TRUE;
2665 while (*s && !isdigitW( *s )) s++;
2666 if (*s == '\0') return TRUE;
2667 time->wYear = strtolW( s, &end, 10 );
2668 s = end;
2670 while (*s && !isdigitW( *s )) s++;
2671 if (*s == '\0') return TRUE;
2672 time->wHour = strtolW( s, &end, 10 );
2673 s = end;
2675 while (*s && !isdigitW( *s )) s++;
2676 if (*s == '\0') return TRUE;
2677 time->wMinute = strtolW( s, &end, 10 );
2678 s = end;
2680 while (*s && !isdigitW( *s )) s++;
2681 if (*s == '\0') return TRUE;
2682 time->wSecond = strtolW( s, &end, 10 );
2683 s = end;
2685 time->wMilliseconds = 0;
2686 return TRUE;
2689 /***********************************************************************
2690 * InternetCheckConnectionW (WININET.@)
2692 * Pings a requested host to check internet connection
2694 * RETURNS
2695 * TRUE on success and FALSE on failure. If a failure then
2696 * ERROR_NOT_CONNECTED is placed into GetLastError
2699 BOOL WINAPI InternetCheckConnectionW( LPCWSTR lpszUrl, DWORD dwFlags, DWORD dwReserved )
2702 * this is a kludge which runs the resident ping program and reads the output.
2704 * Anyone have a better idea?
2707 BOOL rc = FALSE;
2708 static const CHAR ping[] = "ping -c 1 ";
2709 static const CHAR redirect[] = " >/dev/null 2>/dev/null";
2710 CHAR *command = NULL;
2711 WCHAR hostW[1024];
2712 DWORD len;
2713 INTERNET_PORT port;
2714 int status = -1;
2716 FIXME("\n");
2719 * Crack or set the Address
2721 if (lpszUrl == NULL)
2724 * According to the doc we are supposed to use the ip for the next
2725 * server in the WnInet internal server database. I have
2726 * no idea what that is or how to get it.
2728 * So someone needs to implement this.
2730 FIXME("Unimplemented with URL of NULL\n");
2731 return TRUE;
2733 else
2735 URL_COMPONENTSW components;
2737 ZeroMemory(&components,sizeof(URL_COMPONENTSW));
2738 components.lpszHostName = (LPWSTR)hostW;
2739 components.dwHostNameLength = 1024;
2741 if (!InternetCrackUrlW(lpszUrl,0,0,&components))
2742 goto End;
2744 TRACE("host name : %s\n",debugstr_w(components.lpszHostName));
2745 port = components.nPort;
2746 TRACE("port: %d\n", port);
2749 if (dwFlags & FLAG_ICC_FORCE_CONNECTION)
2751 struct sockaddr_in sin;
2752 int fd;
2754 if (!GetAddress(hostW, port, &sin))
2755 goto End;
2756 fd = socket(sin.sin_family, SOCK_STREAM, 0);
2757 if (fd != -1)
2759 if (connect(fd, (struct sockaddr *)&sin, sizeof(sin)) == 0)
2760 rc = TRUE;
2761 close(fd);
2764 else
2767 * Build our ping command
2769 len = WideCharToMultiByte(CP_UNIXCP, 0, hostW, -1, NULL, 0, NULL, NULL);
2770 command = HeapAlloc( GetProcessHeap(), 0, strlen(ping)+len+strlen(redirect) );
2771 strcpy(command,ping);
2772 WideCharToMultiByte(CP_UNIXCP, 0, hostW, -1, command+strlen(ping), len, NULL, NULL);
2773 strcat(command,redirect);
2775 TRACE("Ping command is : %s\n",command);
2777 status = system(command);
2779 TRACE("Ping returned a code of %i\n",status);
2781 /* Ping return code of 0 indicates success */
2782 if (status == 0)
2783 rc = TRUE;
2786 End:
2788 HeapFree( GetProcessHeap(), 0, command );
2789 if (rc == FALSE)
2790 INTERNET_SetLastError(ERROR_NOT_CONNECTED);
2792 return rc;
2796 /***********************************************************************
2797 * InternetCheckConnectionA (WININET.@)
2799 * Pings a requested host to check internet connection
2801 * RETURNS
2802 * TRUE on success and FALSE on failure. If a failure then
2803 * ERROR_NOT_CONNECTED is placed into GetLastError
2806 BOOL WINAPI InternetCheckConnectionA(LPCSTR lpszUrl, DWORD dwFlags, DWORD dwReserved)
2808 WCHAR *szUrl;
2809 INT len;
2810 BOOL rc;
2812 len = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0);
2813 if (!(szUrl = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR))))
2814 return FALSE;
2815 MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, len);
2816 rc = InternetCheckConnectionW(szUrl, dwFlags, dwReserved);
2817 HeapFree(GetProcessHeap(), 0, szUrl);
2819 return rc;
2823 /**********************************************************
2824 * INTERNET_InternetOpenUrlW (internal)
2826 * Opens an URL
2828 * RETURNS
2829 * handle of connection or NULL on failure
2831 static HINTERNET INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
2832 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext)
2834 URL_COMPONENTSW urlComponents;
2835 WCHAR protocol[32], hostName[MAXHOSTNAME], userName[1024];
2836 WCHAR password[1024], path[2048], extra[1024];
2837 HINTERNET client = NULL, client1 = NULL;
2839 TRACE("(%p, %s, %s, %08x, %08x, %08lx)\n", hIC, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
2840 dwHeadersLength, dwFlags, dwContext);
2842 urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
2843 urlComponents.lpszScheme = protocol;
2844 urlComponents.dwSchemeLength = 32;
2845 urlComponents.lpszHostName = hostName;
2846 urlComponents.dwHostNameLength = MAXHOSTNAME;
2847 urlComponents.lpszUserName = userName;
2848 urlComponents.dwUserNameLength = 1024;
2849 urlComponents.lpszPassword = password;
2850 urlComponents.dwPasswordLength = 1024;
2851 urlComponents.lpszUrlPath = path;
2852 urlComponents.dwUrlPathLength = 2048;
2853 urlComponents.lpszExtraInfo = extra;
2854 urlComponents.dwExtraInfoLength = 1024;
2855 if(!InternetCrackUrlW(lpszUrl, strlenW(lpszUrl), 0, &urlComponents))
2856 return NULL;
2857 switch(urlComponents.nScheme) {
2858 case INTERNET_SCHEME_FTP:
2859 if(urlComponents.nPort == 0)
2860 urlComponents.nPort = INTERNET_DEFAULT_FTP_PORT;
2861 client = FTP_Connect(hIC, hostName, urlComponents.nPort,
2862 userName, password, dwFlags, dwContext, INET_OPENURL);
2863 if(client == NULL)
2864 break;
2865 client1 = FtpOpenFileW(client, path, GENERIC_READ, dwFlags, dwContext);
2866 if(client1 == NULL) {
2867 InternetCloseHandle(client);
2868 break;
2870 break;
2872 case INTERNET_SCHEME_HTTP:
2873 case INTERNET_SCHEME_HTTPS: {
2874 static const WCHAR szStars[] = { '*','/','*', 0 };
2875 LPCWSTR accept[2] = { szStars, NULL };
2876 if(urlComponents.nPort == 0) {
2877 if(urlComponents.nScheme == INTERNET_SCHEME_HTTP)
2878 urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
2879 else
2880 urlComponents.nPort = INTERNET_DEFAULT_HTTPS_PORT;
2882 if (urlComponents.nScheme == INTERNET_SCHEME_HTTPS) dwFlags |= INTERNET_FLAG_SECURE;
2884 /* FIXME: should use pointers, not handles, as handles are not thread-safe */
2885 client = HTTP_Connect(hIC, hostName, urlComponents.nPort,
2886 userName, password, dwFlags, dwContext, INET_OPENURL);
2887 if(client == NULL)
2888 break;
2890 if (urlComponents.dwExtraInfoLength) {
2891 WCHAR *path_extra;
2892 DWORD len = urlComponents.dwUrlPathLength + urlComponents.dwExtraInfoLength + 1;
2894 if (!(path_extra = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR))))
2896 InternetCloseHandle(client);
2897 break;
2899 strcpyW(path_extra, urlComponents.lpszUrlPath);
2900 strcatW(path_extra, urlComponents.lpszExtraInfo);
2901 client1 = HttpOpenRequestW(client, NULL, path_extra, NULL, NULL, accept, dwFlags, dwContext);
2902 HeapFree(GetProcessHeap(), 0, path_extra);
2904 else
2905 client1 = HttpOpenRequestW(client, NULL, path, NULL, NULL, accept, dwFlags, dwContext);
2907 if(client1 == NULL) {
2908 InternetCloseHandle(client);
2909 break;
2911 HttpAddRequestHeadersW(client1, lpszHeaders, dwHeadersLength, HTTP_ADDREQ_FLAG_ADD);
2912 if (!HttpSendRequestW(client1, NULL, 0, NULL, 0) &&
2913 GetLastError() != ERROR_IO_PENDING) {
2914 InternetCloseHandle(client1);
2915 client1 = NULL;
2916 break;
2919 case INTERNET_SCHEME_GOPHER:
2920 /* gopher doesn't seem to be implemented in wine, but it's supposed
2921 * to be supported by InternetOpenUrlA. */
2922 default:
2923 INTERNET_SetLastError(ERROR_INTERNET_UNRECOGNIZED_SCHEME);
2924 break;
2927 TRACE(" %p <--\n", client1);
2929 return client1;
2932 /**********************************************************
2933 * InternetOpenUrlW (WININET.@)
2935 * Opens an URL
2937 * RETURNS
2938 * handle of connection or NULL on failure
2940 static void AsyncInternetOpenUrlProc(WORKREQUEST *workRequest)
2942 struct WORKREQ_INTERNETOPENURLW const *req = &workRequest->u.InternetOpenUrlW;
2943 LPWININETAPPINFOW hIC = (LPWININETAPPINFOW) workRequest->hdr;
2945 TRACE("%p\n", hIC);
2947 INTERNET_InternetOpenUrlW(hIC, req->lpszUrl,
2948 req->lpszHeaders, req->dwHeadersLength, req->dwFlags, req->dwContext);
2949 HeapFree(GetProcessHeap(), 0, req->lpszUrl);
2950 HeapFree(GetProcessHeap(), 0, req->lpszHeaders);
2953 HINTERNET WINAPI InternetOpenUrlW(HINTERNET hInternet, LPCWSTR lpszUrl,
2954 LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext)
2956 HINTERNET ret = NULL;
2957 LPWININETAPPINFOW hIC = NULL;
2959 if (TRACE_ON(wininet)) {
2960 TRACE("(%p, %s, %s, %08x, %08x, %08lx)\n", hInternet, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
2961 dwHeadersLength, dwFlags, dwContext);
2962 TRACE(" flags :");
2963 dump_INTERNET_FLAGS(dwFlags);
2966 if (!lpszUrl)
2968 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2969 goto lend;
2972 hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
2973 if (NULL == hIC || hIC->hdr.htype != WH_HINIT) {
2974 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
2975 goto lend;
2978 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC) {
2979 WORKREQUEST workRequest;
2980 struct WORKREQ_INTERNETOPENURLW *req;
2982 workRequest.asyncproc = AsyncInternetOpenUrlProc;
2983 workRequest.hdr = WININET_AddRef( &hIC->hdr );
2984 req = &workRequest.u.InternetOpenUrlW;
2985 req->lpszUrl = WININET_strdupW(lpszUrl);
2986 if (lpszHeaders)
2987 req->lpszHeaders = WININET_strdupW(lpszHeaders);
2988 else
2989 req->lpszHeaders = 0;
2990 req->dwHeadersLength = dwHeadersLength;
2991 req->dwFlags = dwFlags;
2992 req->dwContext = dwContext;
2994 INTERNET_AsyncCall(&workRequest);
2996 * This is from windows.
2998 INTERNET_SetLastError(ERROR_IO_PENDING);
2999 } else {
3000 ret = INTERNET_InternetOpenUrlW(hIC, lpszUrl, lpszHeaders, dwHeadersLength, dwFlags, dwContext);
3003 lend:
3004 if( hIC )
3005 WININET_Release( &hIC->hdr );
3006 TRACE(" %p <--\n", ret);
3008 return ret;
3011 /**********************************************************
3012 * InternetOpenUrlA (WININET.@)
3014 * Opens an URL
3016 * RETURNS
3017 * handle of connection or NULL on failure
3019 HINTERNET WINAPI InternetOpenUrlA(HINTERNET hInternet, LPCSTR lpszUrl,
3020 LPCSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext)
3022 HINTERNET rc = NULL;
3024 INT lenUrl;
3025 INT lenHeaders = 0;
3026 LPWSTR szUrl = NULL;
3027 LPWSTR szHeaders = NULL;
3029 TRACE("\n");
3031 if(lpszUrl) {
3032 lenUrl = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0 );
3033 szUrl = HeapAlloc(GetProcessHeap(), 0, lenUrl*sizeof(WCHAR));
3034 if(!szUrl)
3035 return NULL;
3036 MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, lenUrl);
3039 if(lpszHeaders) {
3040 lenHeaders = MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, NULL, 0 );
3041 szHeaders = HeapAlloc(GetProcessHeap(), 0, lenHeaders*sizeof(WCHAR));
3042 if(!szHeaders) {
3043 HeapFree(GetProcessHeap(), 0, szUrl);
3044 return NULL;
3046 MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, szHeaders, lenHeaders);
3049 rc = InternetOpenUrlW(hInternet, szUrl, szHeaders,
3050 lenHeaders, dwFlags, dwContext);
3052 HeapFree(GetProcessHeap(), 0, szUrl);
3053 HeapFree(GetProcessHeap(), 0, szHeaders);
3055 return rc;
3059 static LPWITHREADERROR INTERNET_AllocThreadError(void)
3061 LPWITHREADERROR lpwite = HeapAlloc(GetProcessHeap(), 0, sizeof(*lpwite));
3063 if (lpwite)
3065 lpwite->dwError = 0;
3066 lpwite->response[0] = '\0';
3069 if (!TlsSetValue(g_dwTlsErrIndex, lpwite))
3071 HeapFree(GetProcessHeap(), 0, lpwite);
3072 return NULL;
3075 return lpwite;
3079 /***********************************************************************
3080 * INTERNET_SetLastError (internal)
3082 * Set last thread specific error
3084 * RETURNS
3087 void INTERNET_SetLastError(DWORD dwError)
3089 LPWITHREADERROR lpwite = TlsGetValue(g_dwTlsErrIndex);
3091 if (!lpwite)
3092 lpwite = INTERNET_AllocThreadError();
3094 SetLastError(dwError);
3095 if(lpwite)
3096 lpwite->dwError = dwError;
3100 /***********************************************************************
3101 * INTERNET_GetLastError (internal)
3103 * Get last thread specific error
3105 * RETURNS
3108 DWORD INTERNET_GetLastError(void)
3110 LPWITHREADERROR lpwite = TlsGetValue(g_dwTlsErrIndex);
3111 if (!lpwite) return 0;
3112 /* TlsGetValue clears last error, so set it again here */
3113 SetLastError(lpwite->dwError);
3114 return lpwite->dwError;
3118 /***********************************************************************
3119 * INTERNET_WorkerThreadFunc (internal)
3121 * Worker thread execution function
3123 * RETURNS
3126 static DWORD CALLBACK INTERNET_WorkerThreadFunc(LPVOID lpvParam)
3128 LPWORKREQUEST lpRequest = lpvParam;
3129 WORKREQUEST workRequest;
3131 TRACE("\n");
3133 workRequest = *lpRequest;
3134 HeapFree(GetProcessHeap(), 0, lpRequest);
3136 workRequest.asyncproc(&workRequest);
3138 WININET_Release( workRequest.hdr );
3139 return TRUE;
3143 /***********************************************************************
3144 * INTERNET_AsyncCall (internal)
3146 * Retrieves work request from queue
3148 * RETURNS
3151 BOOL INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest)
3153 BOOL bSuccess;
3154 LPWORKREQUEST lpNewRequest;
3156 TRACE("\n");
3158 lpNewRequest = HeapAlloc(GetProcessHeap(), 0, sizeof(WORKREQUEST));
3159 if (!lpNewRequest)
3160 return FALSE;
3162 *lpNewRequest = *lpWorkRequest;
3164 bSuccess = QueueUserWorkItem(INTERNET_WorkerThreadFunc, lpNewRequest, WT_EXECUTELONGFUNCTION);
3165 if (!bSuccess)
3167 HeapFree(GetProcessHeap(), 0, lpNewRequest);
3168 INTERNET_SetLastError(ERROR_INTERNET_ASYNC_THREAD_FAILED);
3171 return bSuccess;
3175 /***********************************************************************
3176 * INTERNET_GetResponseBuffer (internal)
3178 * RETURNS
3181 LPSTR INTERNET_GetResponseBuffer(void)
3183 LPWITHREADERROR lpwite = TlsGetValue(g_dwTlsErrIndex);
3184 if (!lpwite)
3185 lpwite = INTERNET_AllocThreadError();
3186 TRACE("\n");
3187 return lpwite->response;
3190 /***********************************************************************
3191 * INTERNET_GetNextLine (internal)
3193 * Parse next line in directory string listing
3195 * RETURNS
3196 * Pointer to beginning of next line
3197 * NULL on failure
3201 LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen)
3203 struct pollfd pfd;
3204 BOOL bSuccess = FALSE;
3205 INT nRecv = 0;
3206 LPSTR lpszBuffer = INTERNET_GetResponseBuffer();
3208 TRACE("\n");
3210 pfd.fd = nSocket;
3211 pfd.events = POLLIN;
3213 while (nRecv < MAX_REPLY_LEN)
3215 if (poll(&pfd,1, RESPONSE_TIMEOUT * 1000) > 0)
3217 if (recv(nSocket, &lpszBuffer[nRecv], 1, 0) <= 0)
3219 INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS);
3220 goto lend;
3223 if (lpszBuffer[nRecv] == '\n')
3225 bSuccess = TRUE;
3226 break;
3228 if (lpszBuffer[nRecv] != '\r')
3229 nRecv++;
3231 else
3233 INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT);
3234 goto lend;
3238 lend:
3239 if (bSuccess)
3241 lpszBuffer[nRecv] = '\0';
3242 *dwLen = nRecv - 1;
3243 TRACE(":%d %s\n", nRecv, lpszBuffer);
3244 return lpszBuffer;
3246 else
3248 return NULL;
3252 /**********************************************************
3253 * InternetQueryDataAvailable (WININET.@)
3255 * Determines how much data is available to be read.
3257 * RETURNS
3258 * TRUE on success, FALSE if an error occurred. If
3259 * INTERNET_FLAG_ASYNC was specified in InternetOpen, and
3260 * no data is presently available, FALSE is returned with
3261 * the last error ERROR_IO_PENDING; a callback with status
3262 * INTERNET_STATUS_REQUEST_COMPLETE will be sent when more
3263 * data is available.
3265 BOOL WINAPI InternetQueryDataAvailable( HINTERNET hFile,
3266 LPDWORD lpdwNumberOfBytesAvailble,
3267 DWORD dwFlags, DWORD_PTR dwContext)
3269 WININETHANDLEHEADER *hdr;
3270 DWORD res;
3272 TRACE("(%p %p %x %lx)\n", hFile, lpdwNumberOfBytesAvailble, dwFlags, dwContext);
3274 hdr = WININET_GetObject( hFile );
3275 if (!hdr) {
3276 INTERNET_SetLastError(ERROR_INVALID_HANDLE);
3277 return FALSE;
3280 if(hdr->vtbl->QueryDataAvailable) {
3281 res = hdr->vtbl->QueryDataAvailable(hdr, lpdwNumberOfBytesAvailble, dwFlags, dwContext);
3282 }else {
3283 WARN("wrong handle\n");
3284 res = ERROR_INTERNET_INCORRECT_HANDLE_TYPE;
3287 WININET_Release(hdr);
3289 if(res != ERROR_SUCCESS)
3290 SetLastError(res);
3291 return res == ERROR_SUCCESS;
3295 /***********************************************************************
3296 * InternetLockRequestFile (WININET.@)
3298 BOOL WINAPI InternetLockRequestFile( HINTERNET hInternet, HANDLE
3299 *lphLockReqHandle)
3301 FIXME("STUB\n");
3302 return FALSE;
3305 BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
3307 FIXME("STUB\n");
3308 return FALSE;
3312 /***********************************************************************
3313 * InternetAutodial (WININET.@)
3315 * On windows this function is supposed to dial the default internet
3316 * connection. We don't want to have Wine dial out to the internet so
3317 * we return TRUE by default. It might be nice to check if we are connected.
3319 * RETURNS
3320 * TRUE on success
3321 * FALSE on failure
3324 BOOL WINAPI InternetAutodial(DWORD dwFlags, HWND hwndParent)
3326 FIXME("STUB\n");
3328 /* Tell that we are connected to the internet. */
3329 return TRUE;
3332 /***********************************************************************
3333 * InternetAutodialHangup (WININET.@)
3335 * Hangs up a connection made with InternetAutodial
3337 * PARAM
3338 * dwReserved
3339 * RETURNS
3340 * TRUE on success
3341 * FALSE on failure
3344 BOOL WINAPI InternetAutodialHangup(DWORD dwReserved)
3346 FIXME("STUB\n");
3348 /* we didn't dial, we don't disconnect */
3349 return TRUE;
3352 /***********************************************************************
3353 * InternetCombineUrlA (WININET.@)
3355 * Combine a base URL with a relative URL
3357 * RETURNS
3358 * TRUE on success
3359 * FALSE on failure
3363 BOOL WINAPI InternetCombineUrlA(LPCSTR lpszBaseUrl, LPCSTR lpszRelativeUrl,
3364 LPSTR lpszBuffer, LPDWORD lpdwBufferLength,
3365 DWORD dwFlags)
3367 HRESULT hr=S_OK;
3369 TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_a(lpszBaseUrl), debugstr_a(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3371 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3372 dwFlags ^= ICU_NO_ENCODE;
3373 hr=UrlCombineA(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3375 return (hr==S_OK);
3378 /***********************************************************************
3379 * InternetCombineUrlW (WININET.@)
3381 * Combine a base URL with a relative URL
3383 * RETURNS
3384 * TRUE on success
3385 * FALSE on failure
3389 BOOL WINAPI InternetCombineUrlW(LPCWSTR lpszBaseUrl, LPCWSTR lpszRelativeUrl,
3390 LPWSTR lpszBuffer, LPDWORD lpdwBufferLength,
3391 DWORD dwFlags)
3393 HRESULT hr=S_OK;
3395 TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_w(lpszBaseUrl), debugstr_w(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
3397 /* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
3398 dwFlags ^= ICU_NO_ENCODE;
3399 hr=UrlCombineW(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
3401 return (hr==S_OK);
3404 /* max port num is 65535 => 5 digits */
3405 #define MAX_WORD_DIGITS 5
3407 #define URL_GET_COMP_LENGTH(url, component) ((url)->dw##component##Length ? \
3408 (url)->dw##component##Length : strlenW((url)->lpsz##component))
3409 #define URL_GET_COMP_LENGTHA(url, component) ((url)->dw##component##Length ? \
3410 (url)->dw##component##Length : strlen((url)->lpsz##component))
3412 static BOOL url_uses_default_port(INTERNET_SCHEME nScheme, INTERNET_PORT nPort)
3414 if ((nScheme == INTERNET_SCHEME_HTTP) &&
3415 (nPort == INTERNET_DEFAULT_HTTP_PORT))
3416 return TRUE;
3417 if ((nScheme == INTERNET_SCHEME_HTTPS) &&
3418 (nPort == INTERNET_DEFAULT_HTTPS_PORT))
3419 return TRUE;
3420 if ((nScheme == INTERNET_SCHEME_FTP) &&
3421 (nPort == INTERNET_DEFAULT_FTP_PORT))
3422 return TRUE;
3423 if ((nScheme == INTERNET_SCHEME_GOPHER) &&
3424 (nPort == INTERNET_DEFAULT_GOPHER_PORT))
3425 return TRUE;
3427 if (nPort == INTERNET_INVALID_PORT_NUMBER)
3428 return TRUE;
3430 return FALSE;
3433 /* opaque urls do not fit into the standard url hierarchy and don't have
3434 * two following slashes */
3435 static inline BOOL scheme_is_opaque(INTERNET_SCHEME nScheme)
3437 return (nScheme != INTERNET_SCHEME_FTP) &&
3438 (nScheme != INTERNET_SCHEME_GOPHER) &&
3439 (nScheme != INTERNET_SCHEME_HTTP) &&
3440 (nScheme != INTERNET_SCHEME_HTTPS) &&
3441 (nScheme != INTERNET_SCHEME_FILE);
3444 static LPCWSTR INTERNET_GetSchemeString(INTERNET_SCHEME scheme)
3446 int index;
3447 if (scheme < INTERNET_SCHEME_FIRST)
3448 return NULL;
3449 index = scheme - INTERNET_SCHEME_FIRST;
3450 if (index >= sizeof(url_schemes)/sizeof(url_schemes[0]))
3451 return NULL;
3452 return (LPCWSTR)url_schemes[index];
3455 /* we can calculate using ansi strings because we're just
3456 * calculating string length, not size
3458 static BOOL calc_url_length(LPURL_COMPONENTSW lpUrlComponents,
3459 LPDWORD lpdwUrlLength)
3461 INTERNET_SCHEME nScheme;
3463 *lpdwUrlLength = 0;
3465 if (lpUrlComponents->lpszScheme)
3467 DWORD dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Scheme);
3468 *lpdwUrlLength += dwLen;
3469 nScheme = GetInternetSchemeW(lpUrlComponents->lpszScheme, dwLen);
3471 else
3473 LPCWSTR scheme;
3475 nScheme = lpUrlComponents->nScheme;
3477 if (nScheme == INTERNET_SCHEME_DEFAULT)
3478 nScheme = INTERNET_SCHEME_HTTP;
3479 scheme = INTERNET_GetSchemeString(nScheme);
3480 *lpdwUrlLength += strlenW(scheme);
3483 (*lpdwUrlLength)++; /* ':' */
3484 if (!scheme_is_opaque(nScheme) || lpUrlComponents->lpszHostName)
3485 *lpdwUrlLength += strlen("//");
3487 if (lpUrlComponents->lpszUserName)
3489 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, UserName);
3490 *lpdwUrlLength += strlen("@");
3492 else
3494 if (lpUrlComponents->lpszPassword)
3496 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3497 return FALSE;
3501 if (lpUrlComponents->lpszPassword)
3503 *lpdwUrlLength += strlen(":");
3504 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, Password);
3507 if (lpUrlComponents->lpszHostName)
3509 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, HostName);
3511 if (!url_uses_default_port(nScheme, lpUrlComponents->nPort))
3513 char szPort[MAX_WORD_DIGITS+1];
3515 sprintf(szPort, "%d", lpUrlComponents->nPort);
3516 *lpdwUrlLength += strlen(szPort);
3517 *lpdwUrlLength += strlen(":");
3520 if (lpUrlComponents->lpszUrlPath && *lpUrlComponents->lpszUrlPath != '/')
3521 (*lpdwUrlLength)++; /* '/' */
3524 if (lpUrlComponents->lpszUrlPath)
3525 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, UrlPath);
3527 if (lpUrlComponents->lpszExtraInfo)
3528 *lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, ExtraInfo);
3530 return TRUE;
3533 static void convert_urlcomp_atow(LPURL_COMPONENTSA lpUrlComponents, LPURL_COMPONENTSW urlCompW)
3535 INT len;
3537 ZeroMemory(urlCompW, sizeof(URL_COMPONENTSW));
3539 urlCompW->dwStructSize = sizeof(URL_COMPONENTSW);
3540 urlCompW->dwSchemeLength = lpUrlComponents->dwSchemeLength;
3541 urlCompW->nScheme = lpUrlComponents->nScheme;
3542 urlCompW->dwHostNameLength = lpUrlComponents->dwHostNameLength;
3543 urlCompW->nPort = lpUrlComponents->nPort;
3544 urlCompW->dwUserNameLength = lpUrlComponents->dwUserNameLength;
3545 urlCompW->dwPasswordLength = lpUrlComponents->dwPasswordLength;
3546 urlCompW->dwUrlPathLength = lpUrlComponents->dwUrlPathLength;
3547 urlCompW->dwExtraInfoLength = lpUrlComponents->dwExtraInfoLength;
3549 if (lpUrlComponents->lpszScheme)
3551 len = URL_GET_COMP_LENGTHA(lpUrlComponents, Scheme) + 1;
3552 urlCompW->lpszScheme = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3553 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszScheme,
3554 -1, urlCompW->lpszScheme, len);
3557 if (lpUrlComponents->lpszHostName)
3559 len = URL_GET_COMP_LENGTHA(lpUrlComponents, HostName) + 1;
3560 urlCompW->lpszHostName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3561 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszHostName,
3562 -1, urlCompW->lpszHostName, len);
3565 if (lpUrlComponents->lpszUserName)
3567 len = URL_GET_COMP_LENGTHA(lpUrlComponents, UserName) + 1;
3568 urlCompW->lpszUserName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3569 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszUserName,
3570 -1, urlCompW->lpszUserName, len);
3573 if (lpUrlComponents->lpszPassword)
3575 len = URL_GET_COMP_LENGTHA(lpUrlComponents, Password) + 1;
3576 urlCompW->lpszPassword = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3577 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszPassword,
3578 -1, urlCompW->lpszPassword, len);
3581 if (lpUrlComponents->lpszUrlPath)
3583 len = URL_GET_COMP_LENGTHA(lpUrlComponents, UrlPath) + 1;
3584 urlCompW->lpszUrlPath = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3585 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszUrlPath,
3586 -1, urlCompW->lpszUrlPath, len);
3589 if (lpUrlComponents->lpszExtraInfo)
3591 len = URL_GET_COMP_LENGTHA(lpUrlComponents, ExtraInfo) + 1;
3592 urlCompW->lpszExtraInfo = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
3593 MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszExtraInfo,
3594 -1, urlCompW->lpszExtraInfo, len);
3598 /***********************************************************************
3599 * InternetCreateUrlA (WININET.@)
3601 * See InternetCreateUrlW.
3603 BOOL WINAPI InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents, DWORD dwFlags,
3604 LPSTR lpszUrl, LPDWORD lpdwUrlLength)
3606 BOOL ret;
3607 LPWSTR urlW = NULL;
3608 URL_COMPONENTSW urlCompW;
3610 TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
3612 if (!lpUrlComponents || lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSW) || !lpdwUrlLength)
3614 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3615 return FALSE;
3618 convert_urlcomp_atow(lpUrlComponents, &urlCompW);
3620 if (lpszUrl)
3621 urlW = HeapAlloc(GetProcessHeap(), 0, *lpdwUrlLength * sizeof(WCHAR));
3623 ret = InternetCreateUrlW(&urlCompW, dwFlags, urlW, lpdwUrlLength);
3625 if (!ret && (GetLastError() == ERROR_INSUFFICIENT_BUFFER))
3626 *lpdwUrlLength /= sizeof(WCHAR);
3628 /* on success, lpdwUrlLength points to the size of urlW in WCHARS
3629 * minus one, so add one to leave room for NULL terminator
3631 if (ret)
3632 WideCharToMultiByte(CP_ACP, 0, urlW, -1, lpszUrl, *lpdwUrlLength + 1, NULL, NULL);
3634 HeapFree(GetProcessHeap(), 0, urlCompW.lpszScheme);
3635 HeapFree(GetProcessHeap(), 0, urlCompW.lpszHostName);
3636 HeapFree(GetProcessHeap(), 0, urlCompW.lpszUserName);
3637 HeapFree(GetProcessHeap(), 0, urlCompW.lpszPassword);
3638 HeapFree(GetProcessHeap(), 0, urlCompW.lpszUrlPath);
3639 HeapFree(GetProcessHeap(), 0, urlCompW.lpszExtraInfo);
3640 HeapFree(GetProcessHeap(), 0, urlW);
3642 return ret;
3645 /***********************************************************************
3646 * InternetCreateUrlW (WININET.@)
3648 * Creates a URL from its component parts.
3650 * PARAMS
3651 * lpUrlComponents [I] URL Components.
3652 * dwFlags [I] Flags. See notes.
3653 * lpszUrl [I] Buffer in which to store the created URL.
3654 * lpdwUrlLength [I/O] On input, the length of the buffer pointed to by
3655 * lpszUrl in characters. On output, the number of bytes
3656 * required to store the URL including terminator.
3658 * NOTES
3660 * The dwFlags parameter can be zero or more of the following:
3661 *|ICU_ESCAPE - Generates escape sequences for unsafe characters in the path and extra info of the URL.
3663 * RETURNS
3664 * TRUE on success
3665 * FALSE on failure
3668 BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
3669 LPWSTR lpszUrl, LPDWORD lpdwUrlLength)
3671 DWORD dwLen;
3672 INTERNET_SCHEME nScheme;
3674 static const WCHAR slashSlashW[] = {'/','/'};
3675 static const WCHAR percentD[] = {'%','d',0};
3677 TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
3679 if (!lpUrlComponents || lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSW) || !lpdwUrlLength)
3681 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3682 return FALSE;
3685 if (!calc_url_length(lpUrlComponents, &dwLen))
3686 return FALSE;
3688 if (!lpszUrl || *lpdwUrlLength < dwLen)
3690 *lpdwUrlLength = (dwLen + 1) * sizeof(WCHAR);
3691 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
3692 return FALSE;
3695 *lpdwUrlLength = dwLen;
3696 lpszUrl[0] = 0x00;
3698 dwLen = 0;
3700 if (lpUrlComponents->lpszScheme)
3702 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Scheme);
3703 memcpy(lpszUrl, lpUrlComponents->lpszScheme, dwLen * sizeof(WCHAR));
3704 lpszUrl += dwLen;
3706 nScheme = GetInternetSchemeW(lpUrlComponents->lpszScheme, dwLen);
3708 else
3710 LPCWSTR scheme;
3711 nScheme = lpUrlComponents->nScheme;
3713 if (nScheme == INTERNET_SCHEME_DEFAULT)
3714 nScheme = INTERNET_SCHEME_HTTP;
3716 scheme = INTERNET_GetSchemeString(nScheme);
3717 dwLen = strlenW(scheme);
3718 memcpy(lpszUrl, scheme, dwLen * sizeof(WCHAR));
3719 lpszUrl += dwLen;
3722 /* all schemes are followed by at least a colon */
3723 *lpszUrl = ':';
3724 lpszUrl++;
3726 if (!scheme_is_opaque(nScheme) || lpUrlComponents->lpszHostName)
3728 memcpy(lpszUrl, slashSlashW, sizeof(slashSlashW));
3729 lpszUrl += sizeof(slashSlashW)/sizeof(slashSlashW[0]);
3732 if (lpUrlComponents->lpszUserName)
3734 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, UserName);
3735 memcpy(lpszUrl, lpUrlComponents->lpszUserName, dwLen * sizeof(WCHAR));
3736 lpszUrl += dwLen;
3738 if (lpUrlComponents->lpszPassword)
3740 *lpszUrl = ':';
3741 lpszUrl++;
3743 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Password);
3744 memcpy(lpszUrl, lpUrlComponents->lpszPassword, dwLen * sizeof(WCHAR));
3745 lpszUrl += dwLen;
3748 *lpszUrl = '@';
3749 lpszUrl++;
3752 if (lpUrlComponents->lpszHostName)
3754 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, HostName);
3755 memcpy(lpszUrl, lpUrlComponents->lpszHostName, dwLen * sizeof(WCHAR));
3756 lpszUrl += dwLen;
3758 if (!url_uses_default_port(nScheme, lpUrlComponents->nPort))
3760 WCHAR szPort[MAX_WORD_DIGITS+1];
3762 sprintfW(szPort, percentD, lpUrlComponents->nPort);
3763 *lpszUrl = ':';
3764 lpszUrl++;
3765 dwLen = strlenW(szPort);
3766 memcpy(lpszUrl, szPort, dwLen * sizeof(WCHAR));
3767 lpszUrl += dwLen;
3770 /* add slash between hostname and path if necessary */
3771 if (lpUrlComponents->lpszUrlPath && *lpUrlComponents->lpszUrlPath != '/')
3773 *lpszUrl = '/';
3774 lpszUrl++;
3778 if (lpUrlComponents->lpszUrlPath)
3780 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, UrlPath);
3781 memcpy(lpszUrl, lpUrlComponents->lpszUrlPath, dwLen * sizeof(WCHAR));
3782 lpszUrl += dwLen;
3785 if (lpUrlComponents->lpszExtraInfo)
3787 dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, ExtraInfo);
3788 memcpy(lpszUrl, lpUrlComponents->lpszExtraInfo, dwLen * sizeof(WCHAR));
3789 lpszUrl += dwLen;
3792 *lpszUrl = '\0';
3794 return TRUE;
3797 /***********************************************************************
3798 * InternetConfirmZoneCrossingA (WININET.@)
3801 DWORD WINAPI InternetConfirmZoneCrossingA( HWND hWnd, LPSTR szUrlPrev, LPSTR szUrlNew, BOOL bPost )
3803 FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_a(szUrlPrev), debugstr_a(szUrlNew), bPost);
3804 return ERROR_SUCCESS;
3807 /***********************************************************************
3808 * InternetConfirmZoneCrossingW (WININET.@)
3811 DWORD WINAPI InternetConfirmZoneCrossingW( HWND hWnd, LPWSTR szUrlPrev, LPWSTR szUrlNew, BOOL bPost )
3813 FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_w(szUrlPrev), debugstr_w(szUrlNew), bPost);
3814 return ERROR_SUCCESS;
3817 DWORD WINAPI InternetDialA( HWND hwndParent, LPSTR lpszConnectoid, DWORD dwFlags,
3818 DWORD_PTR* lpdwConnection, DWORD dwReserved )
3820 FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent, lpszConnectoid, dwFlags,
3821 lpdwConnection, dwReserved);
3822 return ERROR_SUCCESS;
3825 DWORD WINAPI InternetDialW( HWND hwndParent, LPWSTR lpszConnectoid, DWORD dwFlags,
3826 DWORD_PTR* lpdwConnection, DWORD dwReserved )
3828 FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent, lpszConnectoid, dwFlags,
3829 lpdwConnection, dwReserved);
3830 return ERROR_SUCCESS;
3833 BOOL WINAPI InternetGoOnlineA( LPSTR lpszURL, HWND hwndParent, DWORD dwReserved )
3835 FIXME("(%s, %p, 0x%08x) stub\n", debugstr_a(lpszURL), hwndParent, dwReserved);
3836 return TRUE;
3839 BOOL WINAPI InternetGoOnlineW( LPWSTR lpszURL, HWND hwndParent, DWORD dwReserved )
3841 FIXME("(%s, %p, 0x%08x) stub\n", debugstr_w(lpszURL), hwndParent, dwReserved);
3842 return TRUE;
3845 DWORD WINAPI InternetHangUp( DWORD_PTR dwConnection, DWORD dwReserved )
3847 FIXME("(0x%08lx, 0x%08x) stub\n", dwConnection, dwReserved);
3848 return ERROR_SUCCESS;
3851 BOOL WINAPI CreateMD5SSOHash( PWSTR pszChallengeInfo, PWSTR pwszRealm, PWSTR pwszTarget,
3852 PBYTE pbHexHash )
3854 FIXME("(%s, %s, %s, %p) stub\n", debugstr_w(pszChallengeInfo), debugstr_w(pwszRealm),
3855 debugstr_w(pwszTarget), pbHexHash);
3856 return FALSE;
3859 BOOL WINAPI ResumeSuspendedDownload( HINTERNET hInternet, DWORD dwError )
3861 FIXME("(%p, 0x%08x) stub\n", hInternet, dwError);
3862 return FALSE;
3865 BOOL WINAPI InternetQueryFortezzaStatus(DWORD *a, DWORD_PTR b)
3867 FIXME("(%p, %08lx) stub\n", a, b);
3868 return 0;