2000-04-11 20:07:00 +00:00
|
|
|
/*
|
|
|
|
* Wininet
|
|
|
|
*
|
|
|
|
* Copyright 1999 Corel Corporation
|
2002-06-21 23:59:49 +00:00
|
|
|
* Copyright 2002 CodeWeavers Inc.
|
2003-06-20 23:26:56 +00:00
|
|
|
* Copyright 2002 Jaco Greeff
|
|
|
|
* Copyright 2002 TransGaming Technologies Inc.
|
2004-02-09 22:07:42 +00:00
|
|
|
* Copyright 2004 Mike McCormack for CodeWeavers
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* Ulrich Czekalla
|
2002-06-21 23:59:49 +00:00
|
|
|
* Aric Stewart
|
2003-06-20 23:26:56 +00:00
|
|
|
* David Hammerton
|
2002-10-28 18:48:24 +00:00
|
|
|
*
|
2002-03-09 23:29:33 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2000-04-11 20:07:00 +00:00
|
|
|
*/
|
|
|
|
|
2000-04-15 20:44:21 +00:00
|
|
|
#include "config.h"
|
2003-11-27 00:59:36 +00:00
|
|
|
#include "wine/port.h"
|
2000-04-15 20:44:21 +00:00
|
|
|
|
2002-03-20 00:56:49 +00:00
|
|
|
#define MAXHOSTNAME 100 /* from http.c */
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
#include <string.h>
|
2003-09-05 23:08:26 +00:00
|
|
|
#include <stdarg.h>
|
2002-03-20 00:56:49 +00:00
|
|
|
#include <stdio.h>
|
2000-04-11 20:07:00 +00:00
|
|
|
#include <sys/types.h>
|
2000-04-15 20:44:21 +00:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
# include <sys/socket.h>
|
|
|
|
#endif
|
2002-08-17 00:43:16 +00:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
2000-04-11 20:07:00 +00:00
|
|
|
#include <stdlib.h>
|
2000-06-11 20:04:44 +00:00
|
|
|
#include <ctype.h>
|
2002-08-17 00:43:16 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2004-07-19 21:49:39 +00:00
|
|
|
#include <assert.h>
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2000-11-30 01:31:28 +00:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2001-11-06 22:31:19 +00:00
|
|
|
#include "winreg.h"
|
2004-11-21 15:42:57 +00:00
|
|
|
#include "winuser.h"
|
2000-04-11 20:07:00 +00:00
|
|
|
#include "wininet.h"
|
2002-10-28 18:48:24 +00:00
|
|
|
#include "winnls.h"
|
2002-03-09 23:29:33 +00:00
|
|
|
#include "wine/debug.h"
|
2000-04-11 20:07:00 +00:00
|
|
|
#include "winerror.h"
|
2001-12-11 00:30:17 +00:00
|
|
|
#define NO_SHLWAPI_STREAM
|
2001-01-06 00:36:43 +00:00
|
|
|
#include "shlwapi.h"
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2002-07-19 03:12:18 +00:00
|
|
|
#include "wine/exception.h"
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
#include "internet.h"
|
2004-11-21 15:42:57 +00:00
|
|
|
#include "resource.h"
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
#include "wine/unicode.h"
|
2006-01-20 19:16:56 +00:00
|
|
|
#include "wincrypt.h"
|
2003-01-02 23:08:22 +00:00
|
|
|
|
2002-03-09 23:29:33 +00:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wininet);
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2000-06-11 20:04:44 +00:00
|
|
|
#define RESPONSE_TIMEOUT 30
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DWORD dwError;
|
|
|
|
CHAR response[MAX_REPLY_LEN];
|
|
|
|
} WITHREADERROR, *LPWITHREADERROR;
|
|
|
|
|
2004-07-19 21:49:39 +00:00
|
|
|
static VOID INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr);
|
|
|
|
HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
|
|
|
|
LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext);
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2004-11-29 18:00:10 +00:00
|
|
|
static DWORD g_dwTlsErrIndex = TLS_OUT_OF_INDEXES;
|
|
|
|
static HMODULE WININET_hModule;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2004-02-07 01:03:41 +00:00
|
|
|
#define HANDLE_CHUNK_SIZE 0x10
|
|
|
|
|
|
|
|
static CRITICAL_SECTION WININET_cs;
|
|
|
|
static CRITICAL_SECTION_DEBUG WININET_cs_debug =
|
|
|
|
{
|
|
|
|
0, 0, &WININET_cs,
|
|
|
|
{ &WININET_cs_debug.ProcessLocksList, &WININET_cs_debug.ProcessLocksList },
|
2005-09-09 10:19:44 +00:00
|
|
|
0, 0, { (DWORD_PTR)(__FILE__ ": WININET_cs") }
|
2004-02-07 01:03:41 +00:00
|
|
|
};
|
|
|
|
static CRITICAL_SECTION WININET_cs = { &WININET_cs_debug, -1, 0, 0, 0, 0 };
|
|
|
|
|
|
|
|
static LPWININETHANDLEHEADER *WININET_Handles;
|
|
|
|
static UINT WININET_dwNextHandle;
|
|
|
|
static UINT WININET_dwMaxHandles;
|
|
|
|
|
|
|
|
HINTERNET WININET_AllocHandle( LPWININETHANDLEHEADER info )
|
|
|
|
{
|
|
|
|
LPWININETHANDLEHEADER *p;
|
|
|
|
UINT handle = 0, num;
|
|
|
|
|
|
|
|
EnterCriticalSection( &WININET_cs );
|
|
|
|
if( !WININET_dwMaxHandles )
|
|
|
|
{
|
|
|
|
num = HANDLE_CHUNK_SIZE;
|
|
|
|
p = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
sizeof (UINT)* num);
|
|
|
|
if( !p )
|
|
|
|
goto end;
|
|
|
|
WININET_Handles = p;
|
|
|
|
WININET_dwMaxHandles = num;
|
|
|
|
}
|
|
|
|
if( WININET_dwMaxHandles == WININET_dwNextHandle )
|
|
|
|
{
|
|
|
|
num = WININET_dwMaxHandles + HANDLE_CHUNK_SIZE;
|
|
|
|
p = HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
WININET_Handles, sizeof (UINT)* num);
|
|
|
|
if( !p )
|
|
|
|
goto end;
|
|
|
|
WININET_Handles = p;
|
|
|
|
WININET_dwMaxHandles = num;
|
|
|
|
}
|
|
|
|
|
|
|
|
handle = WININET_dwNextHandle;
|
|
|
|
if( WININET_Handles[handle] )
|
|
|
|
ERR("handle isn't free but should be\n");
|
2004-07-19 21:49:39 +00:00
|
|
|
WININET_Handles[handle] = WININET_AddRef( info );
|
2004-02-07 01:03:41 +00:00
|
|
|
|
|
|
|
while( WININET_Handles[WININET_dwNextHandle] &&
|
|
|
|
(WININET_dwNextHandle < WININET_dwMaxHandles ) )
|
|
|
|
WININET_dwNextHandle++;
|
|
|
|
|
|
|
|
end:
|
|
|
|
LeaveCriticalSection( &WININET_cs );
|
|
|
|
|
2006-10-29 17:57:11 +00:00
|
|
|
return info->hInternet = (HINTERNET) (handle+1);
|
2004-02-07 01:03:41 +00:00
|
|
|
}
|
|
|
|
|
2004-07-19 21:49:39 +00:00
|
|
|
LPWININETHANDLEHEADER WININET_AddRef( LPWININETHANDLEHEADER info )
|
|
|
|
{
|
|
|
|
info->dwRefCount++;
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("%p -> refcount = %d\n", info, info->dwRefCount );
|
2004-07-19 21:49:39 +00:00
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2004-02-07 01:03:41 +00:00
|
|
|
LPWININETHANDLEHEADER WININET_GetObject( HINTERNET hinternet )
|
|
|
|
{
|
|
|
|
LPWININETHANDLEHEADER info = NULL;
|
|
|
|
UINT handle = (UINT) hinternet;
|
|
|
|
|
|
|
|
EnterCriticalSection( &WININET_cs );
|
|
|
|
|
2004-09-23 22:53:04 +00:00
|
|
|
if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) &&
|
|
|
|
WININET_Handles[handle-1] )
|
2004-07-19 21:49:39 +00:00
|
|
|
info = WININET_AddRef( WININET_Handles[handle-1] );
|
2004-02-07 01:03:41 +00:00
|
|
|
|
|
|
|
LeaveCriticalSection( &WININET_cs );
|
|
|
|
|
|
|
|
TRACE("handle %d -> %p\n", handle, info);
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2004-07-19 21:49:39 +00:00
|
|
|
BOOL WININET_Release( LPWININETHANDLEHEADER info )
|
|
|
|
{
|
|
|
|
info->dwRefCount--;
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE( "object %p refcount = %d\n", info, info->dwRefCount );
|
2004-07-19 21:49:39 +00:00
|
|
|
if( !info->dwRefCount )
|
|
|
|
{
|
|
|
|
TRACE( "destroying object %p\n", info);
|
|
|
|
info->destroy( info );
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2004-02-07 01:03:41 +00:00
|
|
|
BOOL WININET_FreeHandle( HINTERNET hinternet )
|
|
|
|
{
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
UINT handle = (UINT) hinternet;
|
2004-07-19 21:49:39 +00:00
|
|
|
LPWININETHANDLEHEADER info = NULL;
|
2004-02-07 01:03:41 +00:00
|
|
|
|
|
|
|
EnterCriticalSection( &WININET_cs );
|
|
|
|
|
2004-07-19 21:49:39 +00:00
|
|
|
if( (handle > 0) && ( handle <= WININET_dwMaxHandles ) )
|
2004-02-07 01:03:41 +00:00
|
|
|
{
|
|
|
|
handle--;
|
|
|
|
if( WININET_Handles[handle] )
|
|
|
|
{
|
2004-07-19 21:49:39 +00:00
|
|
|
info = WININET_Handles[handle];
|
|
|
|
TRACE( "destroying handle %d for object %p\n", handle+1, info);
|
2004-02-07 01:03:41 +00:00
|
|
|
WININET_Handles[handle] = NULL;
|
|
|
|
ret = TRUE;
|
|
|
|
if( WININET_dwNextHandle > handle )
|
|
|
|
WININET_dwNextHandle = handle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LeaveCriticalSection( &WININET_cs );
|
|
|
|
|
2004-07-19 21:49:39 +00:00
|
|
|
if( info )
|
|
|
|
WININET_Release( info );
|
|
|
|
|
2004-02-07 01:03:41 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/***********************************************************************
|
2002-11-04 23:53:41 +00:00
|
|
|
* DllMain [Internal] Initializes the internal 'WININET.DLL'.
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* PARAMS
|
2000-07-16 15:44:22 +00:00
|
|
|
* hinstDLL [I] handle to the DLL's instance
|
2000-04-11 20:07:00 +00:00
|
|
|
* fdwReason [I]
|
2000-07-16 15:44:22 +00:00
|
|
|
* lpvReserved [I] reserved, must be NULL
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*/
|
|
|
|
|
2002-11-04 23:53:41 +00:00
|
|
|
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
switch (fdwReason) {
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
|
|
|
|
g_dwTlsErrIndex = TlsAlloc();
|
|
|
|
|
|
|
|
if (g_dwTlsErrIndex == TLS_OUT_OF_INDEXES)
|
|
|
|
return FALSE;
|
|
|
|
|
2003-12-12 06:01:20 +00:00
|
|
|
URLCacheContainers_CreateDefaults();
|
|
|
|
|
2004-11-21 15:42:57 +00:00
|
|
|
WININET_hModule = (HMODULE)hinstDLL;
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
case DLL_THREAD_ATTACH:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DLL_THREAD_DETACH:
|
|
|
|
if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
|
2000-06-11 20:04:44 +00:00
|
|
|
{
|
|
|
|
LPVOID lpwite = TlsGetValue(g_dwTlsErrIndex);
|
2004-12-21 14:42:35 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwite);
|
2000-06-11 20:04:44 +00:00
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
|
2003-12-12 06:01:20 +00:00
|
|
|
URLCacheContainers_DeleteAll();
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
if (g_dwTlsErrIndex != TLS_OUT_OF_INDEXES)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, TlsGetValue(g_dwTlsErrIndex));
|
|
|
|
TlsFree(g_dwTlsErrIndex);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-28 18:48:24 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* InternetInitializeAutoProxyDll (WININET.@)
|
|
|
|
*
|
|
|
|
* Setup the internal proxy
|
|
|
|
*
|
|
|
|
* PARAMETERS
|
|
|
|
* dwReserved
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2002-10-29 21:31:26 +00:00
|
|
|
BOOL WINAPI InternetInitializeAutoProxyDll(DWORD dwReserved)
|
2002-10-28 18:48:24 +00:00
|
|
|
{
|
|
|
|
FIXME("STUB\n");
|
|
|
|
INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-04-21 23:24:46 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* DetectAutoProxyUrl (WININET.@)
|
|
|
|
*
|
|
|
|
* Auto detect the proxy url
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DetectAutoProxyUrl(LPSTR lpszAutoProxyUrl,
|
|
|
|
DWORD dwAutoProxyUrlLength, DWORD dwDetectFlags)
|
|
|
|
{
|
|
|
|
FIXME("STUB\n");
|
|
|
|
INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-10-28 18:48:24 +00:00
|
|
|
|
2003-07-22 03:17:52 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* INTERNET_ConfigureProxyFromReg
|
|
|
|
*
|
|
|
|
* FIXME:
|
|
|
|
* The proxy may be specified in the form 'http=proxy.my.org'
|
|
|
|
* Presumably that means there can be ftp=ftpproxy.my.org too.
|
|
|
|
*/
|
2004-03-25 05:29:47 +00:00
|
|
|
static BOOL INTERNET_ConfigureProxyFromReg( LPWININETAPPINFOW lpwai )
|
2003-07-22 03:17:52 +00:00
|
|
|
{
|
|
|
|
HKEY key;
|
|
|
|
DWORD r, keytype, len, enabled;
|
2005-06-13 19:05:42 +00:00
|
|
|
LPCSTR lpszInternetSettings =
|
2003-07-22 03:17:52 +00:00
|
|
|
"Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings";
|
2004-04-19 20:12:14 +00:00
|
|
|
static const WCHAR szProxyServer[] = { 'P','r','o','x','y','S','e','r','v','e','r', 0 };
|
2003-07-22 03:17:52 +00:00
|
|
|
|
|
|
|
r = RegOpenKeyA(HKEY_CURRENT_USER, lpszInternetSettings, &key);
|
|
|
|
if ( r != ERROR_SUCCESS )
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
len = sizeof enabled;
|
|
|
|
r = RegQueryValueExA( key, "ProxyEnable", NULL, &keytype,
|
|
|
|
(BYTE*)&enabled, &len);
|
|
|
|
if( (r == ERROR_SUCCESS) && enabled )
|
|
|
|
{
|
|
|
|
TRACE("Proxy is enabled.\n");
|
|
|
|
|
|
|
|
/* figure out how much memory the proxy setting takes */
|
2004-03-25 05:29:47 +00:00
|
|
|
r = RegQueryValueExW( key, szProxyServer, NULL, &keytype,
|
2003-07-22 03:17:52 +00:00
|
|
|
NULL, &len);
|
|
|
|
if( (r == ERROR_SUCCESS) && len && (keytype == REG_SZ) )
|
|
|
|
{
|
2004-03-25 05:29:47 +00:00
|
|
|
LPWSTR szProxy, p;
|
2004-04-19 20:12:14 +00:00
|
|
|
static const WCHAR szHttp[] = {'h','t','t','p','=',0};
|
2003-07-22 03:17:52 +00:00
|
|
|
|
2004-03-25 05:29:47 +00:00
|
|
|
szProxy=HeapAlloc( GetProcessHeap(), 0, len );
|
|
|
|
RegQueryValueExW( key, szProxyServer, NULL, &keytype,
|
2003-07-22 03:17:52 +00:00
|
|
|
(BYTE*)szProxy, &len);
|
|
|
|
|
|
|
|
/* find the http proxy, and strip away everything else */
|
2004-03-25 05:29:47 +00:00
|
|
|
p = strstrW( szProxy, szHttp );
|
2003-07-22 03:17:52 +00:00
|
|
|
if( p )
|
|
|
|
{
|
2004-03-25 05:29:47 +00:00
|
|
|
p += lstrlenW(szHttp);
|
|
|
|
lstrcpyW( szProxy, p );
|
2003-07-22 03:17:52 +00:00
|
|
|
}
|
2004-03-25 05:29:47 +00:00
|
|
|
p = strchrW( szProxy, ' ' );
|
2003-07-22 03:17:52 +00:00
|
|
|
if( p )
|
|
|
|
*p = 0;
|
|
|
|
|
|
|
|
lpwai->dwAccessType = INTERNET_OPEN_TYPE_PROXY;
|
|
|
|
lpwai->lpszProxy = szProxy;
|
|
|
|
|
2004-03-25 05:29:47 +00:00
|
|
|
TRACE("http proxy = %s\n", debugstr_w(lpwai->lpszProxy));
|
2003-07-22 03:17:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ERR("Couldn't read proxy server settings.\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
TRACE("Proxy is not enabled.\n");
|
|
|
|
RegCloseKey(key);
|
|
|
|
|
|
|
|
return enabled;
|
|
|
|
}
|
|
|
|
|
2005-12-03 17:03:08 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* dump_INTERNET_FLAGS
|
|
|
|
*
|
|
|
|
* Helper function to TRACE the internet flags.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static void dump_INTERNET_FLAGS(DWORD dwFlags)
|
|
|
|
{
|
|
|
|
#define FE(x) { x, #x }
|
|
|
|
static const wininet_flag_info flag[] = {
|
|
|
|
FE(INTERNET_FLAG_RELOAD),
|
|
|
|
FE(INTERNET_FLAG_RAW_DATA),
|
|
|
|
FE(INTERNET_FLAG_EXISTING_CONNECT),
|
|
|
|
FE(INTERNET_FLAG_ASYNC),
|
|
|
|
FE(INTERNET_FLAG_PASSIVE),
|
|
|
|
FE(INTERNET_FLAG_NO_CACHE_WRITE),
|
|
|
|
FE(INTERNET_FLAG_MAKE_PERSISTENT),
|
|
|
|
FE(INTERNET_FLAG_FROM_CACHE),
|
|
|
|
FE(INTERNET_FLAG_SECURE),
|
|
|
|
FE(INTERNET_FLAG_KEEP_CONNECTION),
|
|
|
|
FE(INTERNET_FLAG_NO_AUTO_REDIRECT),
|
|
|
|
FE(INTERNET_FLAG_READ_PREFETCH),
|
|
|
|
FE(INTERNET_FLAG_NO_COOKIES),
|
|
|
|
FE(INTERNET_FLAG_NO_AUTH),
|
|
|
|
FE(INTERNET_FLAG_CACHE_IF_NET_FAIL),
|
|
|
|
FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP),
|
|
|
|
FE(INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS),
|
|
|
|
FE(INTERNET_FLAG_IGNORE_CERT_DATE_INVALID),
|
|
|
|
FE(INTERNET_FLAG_IGNORE_CERT_CN_INVALID),
|
|
|
|
FE(INTERNET_FLAG_RESYNCHRONIZE),
|
|
|
|
FE(INTERNET_FLAG_HYPERLINK),
|
|
|
|
FE(INTERNET_FLAG_NO_UI),
|
|
|
|
FE(INTERNET_FLAG_PRAGMA_NOCACHE),
|
|
|
|
FE(INTERNET_FLAG_CACHE_ASYNC),
|
|
|
|
FE(INTERNET_FLAG_FORMS_SUBMIT),
|
|
|
|
FE(INTERNET_FLAG_NEED_FILE),
|
|
|
|
FE(INTERNET_FLAG_TRANSFER_ASCII),
|
|
|
|
FE(INTERNET_FLAG_TRANSFER_BINARY)
|
|
|
|
};
|
|
|
|
#undef FE
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < (sizeof(flag) / sizeof(flag[0])); i++) {
|
|
|
|
if (flag[i].val & dwFlags) {
|
|
|
|
TRACE(" %s", flag[i].name);
|
|
|
|
dwFlags &= ~flag[i].val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dwFlags)
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE(" Unknown flags (%08x)\n", dwFlags);
|
2005-12-03 17:03:08 +00:00
|
|
|
else
|
|
|
|
TRACE("\n");
|
|
|
|
}
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/***********************************************************************
|
2004-06-28 20:28:38 +00:00
|
|
|
* InternetOpenW (WININET.@)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* Per-application initialization of wininet
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-03-25 05:29:47 +00:00
|
|
|
HINTERNET WINAPI InternetOpenW(LPCWSTR lpszAgent, DWORD dwAccessType,
|
|
|
|
LPCWSTR lpszProxy, LPCWSTR lpszProxyBypass, DWORD dwFlags)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2004-03-25 05:29:47 +00:00
|
|
|
LPWININETAPPINFOW lpwai = NULL;
|
2004-02-09 22:01:49 +00:00
|
|
|
HINTERNET handle = NULL;
|
|
|
|
|
|
|
|
if (TRACE_ON(wininet)) {
|
|
|
|
#define FE(x) { x, #x }
|
|
|
|
static const wininet_flag_info access_type[] = {
|
|
|
|
FE(INTERNET_OPEN_TYPE_PRECONFIG),
|
|
|
|
FE(INTERNET_OPEN_TYPE_DIRECT),
|
|
|
|
FE(INTERNET_OPEN_TYPE_PROXY),
|
|
|
|
FE(INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY)
|
|
|
|
};
|
|
|
|
#undef FE
|
2004-08-09 18:54:23 +00:00
|
|
|
DWORD i;
|
2004-02-09 22:01:49 +00:00
|
|
|
const char *access_type_str = "Unknown";
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%s, %i, %s, %s, %i)\n", debugstr_w(lpszAgent), dwAccessType,
|
2004-03-25 05:29:47 +00:00
|
|
|
debugstr_w(lpszProxy), debugstr_w(lpszProxyBypass), dwFlags);
|
2004-02-09 22:01:49 +00:00
|
|
|
for (i = 0; i < (sizeof(access_type) / sizeof(access_type[0])); i++) {
|
|
|
|
if (access_type[i].val == dwAccessType) {
|
|
|
|
access_type_str = access_type[i].name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TRACE(" access type : %s\n", access_type_str);
|
|
|
|
TRACE(" flags :");
|
2004-12-23 11:18:29 +00:00
|
|
|
dump_INTERNET_FLAGS(dwFlags);
|
2004-02-09 22:01:49 +00:00
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
|
|
|
|
2007-04-24 22:57:55 +00:00
|
|
|
lpwai = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETAPPINFOW));
|
2000-04-11 20:07:00 +00:00
|
|
|
if (NULL == lpwai)
|
2003-07-22 03:17:52 +00:00
|
|
|
{
|
2000-04-11 20:07:00 +00:00
|
|
|
INTERNET_SetLastError(ERROR_OUTOFMEMORY);
|
2004-02-09 22:01:49 +00:00
|
|
|
goto lend;
|
2003-07-22 03:17:52 +00:00
|
|
|
}
|
2007-04-24 22:57:55 +00:00
|
|
|
|
2003-07-22 03:17:52 +00:00
|
|
|
lpwai->hdr.htype = WH_HINIT;
|
|
|
|
lpwai->hdr.dwFlags = dwFlags;
|
2004-07-19 21:49:39 +00:00
|
|
|
lpwai->hdr.dwRefCount = 1;
|
|
|
|
lpwai->hdr.destroy = INTERNET_CloseHandle;
|
2003-07-22 03:17:52 +00:00
|
|
|
lpwai->dwAccessType = dwAccessType;
|
|
|
|
lpwai->lpszProxyUsername = NULL;
|
|
|
|
lpwai->lpszProxyPassword = NULL;
|
|
|
|
|
2004-02-07 01:03:41 +00:00
|
|
|
handle = WININET_AllocHandle( &lpwai->hdr );
|
|
|
|
if( !handle )
|
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, lpwai );
|
|
|
|
INTERNET_SetLastError(ERROR_OUTOFMEMORY);
|
2004-02-09 22:01:49 +00:00
|
|
|
goto lend;
|
2004-02-07 01:03:41 +00:00
|
|
|
}
|
|
|
|
|
2003-07-22 03:17:52 +00:00
|
|
|
if (NULL != lpszAgent)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2003-07-22 03:17:52 +00:00
|
|
|
lpwai->lpszAgent = HeapAlloc( GetProcessHeap(),0,
|
2004-03-25 05:29:47 +00:00
|
|
|
(strlenW(lpszAgent)+1)*sizeof(WCHAR));
|
2003-07-22 03:17:52 +00:00
|
|
|
if (lpwai->lpszAgent)
|
2004-03-25 05:29:47 +00:00
|
|
|
lstrcpyW( lpwai->lpszAgent, lpszAgent );
|
2003-07-22 03:17:52 +00:00
|
|
|
}
|
|
|
|
if(dwAccessType == INTERNET_OPEN_TYPE_PRECONFIG)
|
|
|
|
INTERNET_ConfigureProxyFromReg( lpwai );
|
|
|
|
else if (NULL != lpszProxy)
|
|
|
|
{
|
|
|
|
lpwai->lpszProxy = HeapAlloc( GetProcessHeap(), 0,
|
2004-03-25 05:29:47 +00:00
|
|
|
(strlenW(lpszProxy)+1)*sizeof(WCHAR));
|
2003-07-22 03:17:52 +00:00
|
|
|
if (lpwai->lpszProxy)
|
2004-03-25 05:29:47 +00:00
|
|
|
lstrcpyW( lpwai->lpszProxy, lpszProxy );
|
2003-07-22 03:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (NULL != lpszProxyBypass)
|
|
|
|
{
|
|
|
|
lpwai->lpszProxyBypass = HeapAlloc( GetProcessHeap(), 0,
|
2004-03-25 05:29:47 +00:00
|
|
|
(strlenW(lpszProxyBypass)+1)*sizeof(WCHAR));
|
2003-07-22 03:17:52 +00:00
|
|
|
if (lpwai->lpszProxyBypass)
|
2004-03-25 05:29:47 +00:00
|
|
|
lstrcpyW( lpwai->lpszProxyBypass, lpszProxyBypass );
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
|
2004-07-19 21:49:39 +00:00
|
|
|
lend:
|
|
|
|
if( lpwai )
|
|
|
|
WININET_Release( &lpwai->hdr );
|
|
|
|
|
|
|
|
TRACE("returning %p\n", lpwai);
|
2004-02-07 01:03:41 +00:00
|
|
|
|
|
|
|
return handle;
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-28 18:48:24 +00:00
|
|
|
/***********************************************************************
|
2004-06-28 20:28:38 +00:00
|
|
|
* InternetOpenA (WININET.@)
|
2002-10-28 18:48:24 +00:00
|
|
|
*
|
|
|
|
* Per-application initialization of wininet
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-03-25 05:29:47 +00:00
|
|
|
HINTERNET WINAPI InternetOpenA(LPCSTR lpszAgent, DWORD dwAccessType,
|
|
|
|
LPCSTR lpszProxy, LPCSTR lpszProxyBypass, DWORD dwFlags)
|
2002-10-28 18:48:24 +00:00
|
|
|
{
|
|
|
|
HINTERNET rc = (HINTERNET)NULL;
|
2004-03-25 05:29:47 +00:00
|
|
|
INT len;
|
|
|
|
WCHAR *szAgent = NULL, *szProxy = NULL, *szBypass = NULL;
|
2002-10-28 18:48:24 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%s, 0x%08x, %s, %s, 0x%08x)\n", debugstr_a(lpszAgent),
|
2004-03-25 05:29:47 +00:00
|
|
|
dwAccessType, debugstr_a(lpszProxy), debugstr_a(lpszProxyBypass), dwFlags);
|
2003-12-12 06:01:20 +00:00
|
|
|
|
2004-03-25 05:29:47 +00:00
|
|
|
if( lpszAgent )
|
2002-10-28 18:48:24 +00:00
|
|
|
{
|
2004-03-25 05:29:47 +00:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, NULL, 0);
|
|
|
|
szAgent = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpszAgent, -1, szAgent, len);
|
2002-10-28 18:48:24 +00:00
|
|
|
}
|
|
|
|
|
2004-03-25 05:29:47 +00:00
|
|
|
if( lpszProxy )
|
|
|
|
{
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, NULL, 0);
|
|
|
|
szProxy = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpszProxy, -1, szProxy, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if( lpszProxyBypass )
|
|
|
|
{
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, NULL, 0);
|
|
|
|
szBypass = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpszProxyBypass, -1, szBypass, len);
|
|
|
|
}
|
2002-10-28 18:48:24 +00:00
|
|
|
|
2004-03-25 05:29:47 +00:00
|
|
|
rc = InternetOpenW(szAgent, dwAccessType, szProxy, szBypass, dwFlags);
|
2002-10-28 18:48:24 +00:00
|
|
|
|
2004-12-21 14:42:35 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, szAgent);
|
|
|
|
HeapFree(GetProcessHeap(), 0, szProxy);
|
|
|
|
HeapFree(GetProcessHeap(), 0, szBypass);
|
2002-10-28 18:48:24 +00:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/***********************************************************************
|
2001-06-19 18:20:47 +00:00
|
|
|
* InternetGetLastResponseInfoA (WININET.@)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* Return last wininet error description on the calling thread
|
|
|
|
*
|
|
|
|
* RETURNS
|
2003-11-18 20:41:24 +00:00
|
|
|
* TRUE on success of writing to buffer
|
2000-04-11 20:07:00 +00:00
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 20:44:21 +00:00
|
|
|
BOOL WINAPI InternetGetLastResponseInfoA(LPDWORD lpdwError,
|
2000-04-11 20:07:00 +00:00
|
|
|
LPSTR lpszBuffer, LPDWORD lpdwBufferLength)
|
|
|
|
{
|
|
|
|
LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2006-04-20 10:46:38 +00:00
|
|
|
if (lpwite)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2006-04-20 10:46:38 +00:00
|
|
|
*lpdwError = lpwite->dwError;
|
|
|
|
if (lpwite->dwError)
|
|
|
|
{
|
|
|
|
memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
|
|
|
|
*lpdwBufferLength = strlen(lpszBuffer);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*lpdwBufferLength = 0;
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
else
|
2006-04-20 10:46:38 +00:00
|
|
|
{
|
|
|
|
*lpdwError = 0;
|
2000-04-11 20:07:00 +00:00
|
|
|
*lpdwBufferLength = 0;
|
2006-04-20 10:46:38 +00:00
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* InternetGetLastResponseInfoW (WININET.@)
|
|
|
|
*
|
|
|
|
* Return last wininet error description on the calling thread
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success of writing to buffer
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetGetLastResponseInfoW(LPDWORD lpdwError,
|
|
|
|
LPWSTR lpszBuffer, LPDWORD lpdwBufferLength)
|
|
|
|
{
|
|
|
|
LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2006-04-20 10:46:38 +00:00
|
|
|
if (lpwite)
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
{
|
2006-04-20 10:46:38 +00:00
|
|
|
*lpdwError = lpwite->dwError;
|
|
|
|
if (lpwite->dwError)
|
|
|
|
{
|
|
|
|
memcpy(lpszBuffer, lpwite->response, *lpdwBufferLength);
|
|
|
|
*lpdwBufferLength = lstrlenW(lpszBuffer);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*lpdwBufferLength = 0;
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
}
|
|
|
|
else
|
2006-04-20 10:46:38 +00:00
|
|
|
{
|
|
|
|
*lpdwError = 0;
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
*lpdwBufferLength = 0;
|
2006-04-20 10:46:38 +00:00
|
|
|
}
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2000-04-23 19:55:26 +00:00
|
|
|
/***********************************************************************
|
2001-06-19 18:20:47 +00:00
|
|
|
* InternetGetConnectedState (WININET.@)
|
2000-04-23 19:55:26 +00:00
|
|
|
*
|
|
|
|
* Return connected state
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE if connected
|
2002-05-31 23:06:46 +00:00
|
|
|
* if lpdwStatus is not null, return the status (off line,
|
2000-04-23 19:55:26 +00:00
|
|
|
* modem, lan...) in it.
|
|
|
|
* FALSE if not connected
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetGetConnectedState(LPDWORD lpdwStatus, DWORD dwReserved)
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%p, 0x%08x)\n", lpdwStatus, dwReserved);
|
2003-12-12 06:01:20 +00:00
|
|
|
|
2001-07-11 17:24:39 +00:00
|
|
|
if (lpdwStatus) {
|
|
|
|
FIXME("always returning LAN connection.\n");
|
|
|
|
*lpdwStatus = INTERNET_CONNECTION_LAN;
|
|
|
|
}
|
|
|
|
return TRUE;
|
2000-04-23 19:55:26 +00:00
|
|
|
}
|
|
|
|
|
2004-11-04 21:05:03 +00:00
|
|
|
|
2003-06-06 18:17:00 +00:00
|
|
|
/***********************************************************************
|
2004-11-04 21:05:03 +00:00
|
|
|
* InternetGetConnectedStateExW (WININET.@)
|
2003-06-06 18:17:00 +00:00
|
|
|
*
|
|
|
|
* Return connected state
|
|
|
|
*
|
2004-11-21 15:42:57 +00:00
|
|
|
* PARAMS
|
|
|
|
*
|
|
|
|
* lpdwStatus [O] Flags specifying the status of the internet connection.
|
|
|
|
* lpszConnectionName [O] Pointer to buffer to receive the friendly name of the internet connection.
|
|
|
|
* dwNameLen [I] Size of the buffer, in characters.
|
|
|
|
* dwReserved [I] Reserved. Must be set to 0.
|
|
|
|
*
|
2003-06-06 18:17:00 +00:00
|
|
|
* RETURNS
|
|
|
|
* TRUE if connected
|
|
|
|
* if lpdwStatus is not null, return the status (off line,
|
|
|
|
* modem, lan...) in it.
|
|
|
|
* FALSE if not connected
|
2004-11-21 15:42:57 +00:00
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* If the system has no available network connections, an empty string is
|
|
|
|
* stored in lpszConnectionName. If there is a LAN connection, a localized
|
|
|
|
* "LAN Connection" string is stored. Presumably, if only a dial-up
|
|
|
|
* connection is available then the name of the dial-up connection is
|
|
|
|
* returned. Why any application, other than the "Internet Settings" CPL,
|
|
|
|
* would want to use this function instead of the simpler InternetGetConnectedStateW
|
|
|
|
* function is beyond me.
|
2003-06-06 18:17:00 +00:00
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetGetConnectedStateExW(LPDWORD lpdwStatus, LPWSTR lpszConnectionName,
|
|
|
|
DWORD dwNameLen, DWORD dwReserved)
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
|
2003-12-12 06:01:20 +00:00
|
|
|
|
2003-06-06 18:17:00 +00:00
|
|
|
/* Must be zero */
|
|
|
|
if(dwReserved)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (lpdwStatus) {
|
|
|
|
FIXME("always returning LAN connection.\n");
|
|
|
|
*lpdwStatus = INTERNET_CONNECTION_LAN;
|
|
|
|
}
|
2004-11-21 15:42:57 +00:00
|
|
|
return LoadStringW(WININET_hModule, IDS_LANCONNECTION, lpszConnectionName, dwNameLen);
|
2003-06-06 18:17:00 +00:00
|
|
|
}
|
2000-04-23 19:55:26 +00:00
|
|
|
|
2004-11-04 21:05:03 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetGetConnectedStateExA (WININET.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetGetConnectedStateExA(LPDWORD lpdwStatus, LPSTR lpszConnectionName,
|
|
|
|
DWORD dwNameLen, DWORD dwReserved)
|
|
|
|
{
|
|
|
|
LPWSTR lpwszConnectionName = NULL;
|
|
|
|
BOOL rc;
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%p, %p, %d, 0x%08x)\n", lpdwStatus, lpszConnectionName, dwNameLen, dwReserved);
|
2004-11-04 21:05:03 +00:00
|
|
|
|
|
|
|
if (lpszConnectionName && dwNameLen > 0)
|
|
|
|
lpwszConnectionName= HeapAlloc(GetProcessHeap(), 0, dwNameLen * sizeof(WCHAR));
|
|
|
|
|
|
|
|
rc = InternetGetConnectedStateExW(lpdwStatus,lpwszConnectionName, dwNameLen,
|
|
|
|
dwReserved);
|
|
|
|
if (rc && lpwszConnectionName)
|
|
|
|
{
|
|
|
|
WideCharToMultiByte(CP_ACP,0,lpwszConnectionName,-1,lpszConnectionName,
|
|
|
|
dwNameLen, NULL, NULL);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(),0,lpwszConnectionName);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/***********************************************************************
|
2004-06-28 20:28:38 +00:00
|
|
|
* InternetConnectW (WININET.@)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* Open a ftp, gopher or http session
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET a session handle on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-03-30 04:36:09 +00:00
|
|
|
HINTERNET WINAPI InternetConnectW(HINTERNET hInternet,
|
|
|
|
LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
|
|
|
|
LPCWSTR lpszUserName, LPCWSTR lpszPassword,
|
2000-04-11 20:07:00 +00:00
|
|
|
DWORD dwService, DWORD dwFlags, DWORD dwContext)
|
|
|
|
{
|
2004-07-19 21:49:39 +00:00
|
|
|
LPWININETAPPINFOW hIC;
|
2006-05-15 13:01:55 +00:00
|
|
|
HINTERNET rc = NULL;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%p, %s, %i, %s, %s, %i, %i, %i)\n", hInternet, debugstr_w(lpszServerName),
|
2004-03-30 04:36:09 +00:00
|
|
|
nServerPort, debugstr_w(lpszUserName), debugstr_w(lpszPassword),
|
2003-06-20 23:26:56 +00:00
|
|
|
dwService, dwFlags, dwContext);
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2006-05-15 13:01:55 +00:00
|
|
|
if (!lpszServerName)
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
2006-05-15 13:01:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/* Clear any error information */
|
|
|
|
INTERNET_SetLastError(0);
|
2004-07-19 21:49:39 +00:00
|
|
|
hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
|
|
|
|
if ( (hIC == NULL) || (hIC->hdr.htype != WH_HINIT) )
|
2006-05-15 13:01:55 +00:00
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_HANDLE);
|
2004-07-19 21:49:39 +00:00
|
|
|
goto lend;
|
2006-05-15 13:01:55 +00:00
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
switch (dwService)
|
|
|
|
{
|
|
|
|
case INTERNET_SERVICE_FTP:
|
2004-07-19 21:49:39 +00:00
|
|
|
rc = FTP_Connect(hIC, lpszServerName, nServerPort,
|
2004-05-13 05:17:25 +00:00
|
|
|
lpszUserName, lpszPassword, dwFlags, dwContext, 0);
|
2000-04-11 20:07:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case INTERNET_SERVICE_HTTP:
|
2004-07-19 21:49:39 +00:00
|
|
|
rc = HTTP_Connect(hIC, lpszServerName, nServerPort,
|
2004-05-13 05:17:25 +00:00
|
|
|
lpszUserName, lpszPassword, dwFlags, dwContext, 0);
|
2000-04-11 20:07:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case INTERNET_SERVICE_GOPHER:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2004-07-19 21:49:39 +00:00
|
|
|
lend:
|
|
|
|
if( hIC )
|
|
|
|
WININET_Release( &hIC->hdr );
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2003-06-20 23:26:56 +00:00
|
|
|
TRACE("returning %p\n", rc);
|
2000-04-11 20:07:00 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2002-10-28 18:48:24 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
2004-03-30 04:36:09 +00:00
|
|
|
* InternetConnectA (WININET.@)
|
2002-10-28 18:48:24 +00:00
|
|
|
*
|
|
|
|
* Open a ftp, gopher or http session
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* HINTERNET a session handle on success
|
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-03-30 04:36:09 +00:00
|
|
|
HINTERNET WINAPI InternetConnectA(HINTERNET hInternet,
|
|
|
|
LPCSTR lpszServerName, INTERNET_PORT nServerPort,
|
|
|
|
LPCSTR lpszUserName, LPCSTR lpszPassword,
|
2002-10-28 18:48:24 +00:00
|
|
|
DWORD dwService, DWORD dwFlags, DWORD dwContext)
|
|
|
|
{
|
|
|
|
HINTERNET rc = (HINTERNET)NULL;
|
2004-03-30 04:36:09 +00:00
|
|
|
INT len = 0;
|
|
|
|
LPWSTR szServerName = NULL;
|
|
|
|
LPWSTR szUserName = NULL;
|
|
|
|
LPWSTR szPassword = NULL;
|
2003-06-20 23:26:56 +00:00
|
|
|
|
|
|
|
if (lpszServerName)
|
2002-10-28 18:48:24 +00:00
|
|
|
{
|
2004-03-30 04:36:09 +00:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, NULL, 0);
|
|
|
|
szServerName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpszServerName, -1, szServerName, len);
|
2003-06-20 23:26:56 +00:00
|
|
|
}
|
|
|
|
if (lpszUserName)
|
|
|
|
{
|
2004-03-30 04:36:09 +00:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, NULL, 0);
|
|
|
|
szUserName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpszUserName, -1, szUserName, len);
|
2003-06-20 23:26:56 +00:00
|
|
|
}
|
|
|
|
if (lpszPassword)
|
|
|
|
{
|
2004-03-30 04:36:09 +00:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, NULL, 0);
|
|
|
|
szPassword = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpszPassword, -1, szPassword, len);
|
2002-10-28 18:48:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-30 04:36:09 +00:00
|
|
|
rc = InternetConnectW(hInternet, szServerName, nServerPort,
|
2002-10-28 18:48:24 +00:00
|
|
|
szUserName, szPassword, dwService, dwFlags, dwContext);
|
|
|
|
|
2004-12-21 14:42:35 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, szServerName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, szUserName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, szPassword);
|
2002-10-28 18:48:24 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/***********************************************************************
|
2001-06-19 18:20:47 +00:00
|
|
|
* InternetFindNextFileA (WININET.@)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* Continues a file search from a previous call to FindFirstFile
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 20:44:21 +00:00
|
|
|
BOOL WINAPI InternetFindNextFileA(HINTERNET hFind, LPVOID lpvFindData)
|
2004-05-25 04:02:05 +00:00
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
WIN32_FIND_DATAW fd;
|
|
|
|
|
|
|
|
ret = InternetFindNextFileW(hFind, lpvFindData?&fd:NULL);
|
|
|
|
if(lpvFindData)
|
|
|
|
WININET_find_data_WtoA(&fd, (LPWIN32_FIND_DATAA)lpvFindData);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetFindNextFileW (WININET.@)
|
|
|
|
*
|
|
|
|
* Continues a file search from a previous call to FindFirstFile
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2006-12-25 20:36:46 +00:00
|
|
|
static void AsyncFtpFindNextFileProc(WORKREQUEST *workRequest)
|
|
|
|
{
|
|
|
|
struct WORKREQ_FTPFINDNEXTW *req = &workRequest->u.FtpFindNextW;
|
|
|
|
LPWININETFTPFINDNEXTW lpwh = (LPWININETFTPFINDNEXTW) workRequest->hdr;
|
|
|
|
|
|
|
|
TRACE("%p\n", lpwh);
|
|
|
|
|
|
|
|
FTP_FindNextFileW(lpwh, req->lpFindFileData);
|
|
|
|
}
|
|
|
|
|
2004-05-25 04:02:05 +00:00
|
|
|
BOOL WINAPI InternetFindNextFileW(HINTERNET hFind, LPVOID lpvFindData)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2004-03-25 05:29:47 +00:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2006-10-29 17:53:41 +00:00
|
|
|
LPWININETFTPFINDNEXTW lpwh;
|
2004-07-19 21:49:39 +00:00
|
|
|
BOOL bSuccess = FALSE;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2006-10-29 17:53:41 +00:00
|
|
|
lpwh = (LPWININETFTPFINDNEXTW) WININET_GetObject( hFind );
|
|
|
|
if (NULL == lpwh || lpwh->hdr.htype != WH_HFTPFINDNEXT)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2006-10-29 17:53:41 +00:00
|
|
|
FIXME("Only FTP supported\n");
|
2000-04-11 20:07:00 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
2004-07-19 21:49:39 +00:00
|
|
|
goto lend;
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
|
2006-10-29 17:54:29 +00:00
|
|
|
hIC = lpwh->lpFtpSession->lpAppInfo;
|
2000-04-11 20:07:00 +00:00
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
2006-10-29 17:53:41 +00:00
|
|
|
struct WORKREQ_FTPFINDNEXTW *req;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2006-12-25 20:36:46 +00:00
|
|
|
workRequest.asyncproc = AsyncFtpFindNextFileProc;
|
|
|
|
workRequest.hdr = WININET_AddRef( &lpwh->hdr );
|
2006-10-29 17:53:41 +00:00
|
|
|
req = &workRequest.u.FtpFindNextW;
|
2006-12-25 20:36:46 +00:00
|
|
|
req->lpFindFileData = lpvFindData;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2004-07-19 21:49:39 +00:00
|
|
|
bSuccess = INTERNET_AsyncCall(&workRequest);
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-10-29 17:53:41 +00:00
|
|
|
bSuccess = FTP_FindNextFileW(lpwh, lpvFindData);
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
2004-07-19 21:49:39 +00:00
|
|
|
lend:
|
|
|
|
if( lpwh )
|
|
|
|
WININET_Release( &lpwh->hdr );
|
|
|
|
return bSuccess;
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
|
2000-06-11 20:04:44 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* INTERNET_CloseHandle (internal)
|
|
|
|
*
|
|
|
|
* Close internet handle
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Void
|
|
|
|
*
|
|
|
|
*/
|
2004-07-19 21:49:39 +00:00
|
|
|
static VOID INTERNET_CloseHandle(LPWININETHANDLEHEADER hdr)
|
2000-06-11 20:04:44 +00:00
|
|
|
{
|
2004-07-19 21:49:39 +00:00
|
|
|
LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW) hdr;
|
2002-06-21 23:59:49 +00:00
|
|
|
|
2004-07-19 21:49:39 +00:00
|
|
|
TRACE("%p\n",lpwai);
|
2002-06-21 23:59:49 +00:00
|
|
|
|
2004-12-23 17:06:43 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwai->lpszAgent);
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwai->lpszProxy);
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyBypass);
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyUsername);
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwai->lpszProxyPassword);
|
2000-06-11 20:04:44 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpwai);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/***********************************************************************
|
2001-06-19 18:20:47 +00:00
|
|
|
* InternetCloseHandle (WININET.@)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
2000-06-11 20:04:44 +00:00
|
|
|
* Generic close handle function
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 20:44:21 +00:00
|
|
|
BOOL WINAPI InternetCloseHandle(HINTERNET hInternet)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2004-09-20 19:10:31 +00:00
|
|
|
LPWININETHANDLEHEADER lpwh;
|
2004-07-19 21:49:39 +00:00
|
|
|
|
2002-06-21 23:59:49 +00:00
|
|
|
TRACE("%p\n",hInternet);
|
2004-02-07 01:03:41 +00:00
|
|
|
|
|
|
|
lpwh = WININET_GetObject( hInternet );
|
2000-04-11 20:07:00 +00:00
|
|
|
if (NULL == lpwh)
|
2004-02-07 01:03:41 +00:00
|
|
|
{
|
2005-11-16 11:21:41 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_HANDLE);
|
2000-04-11 20:07:00 +00:00
|
|
|
return FALSE;
|
2004-02-07 01:03:41 +00:00
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2006-11-02 16:27:06 +00:00
|
|
|
/* FIXME: native appears to send this from the equivalent of
|
|
|
|
* WININET_Release */
|
|
|
|
INTERNET_SendCallback(lpwh, lpwh->dwContext,
|
|
|
|
INTERNET_STATUS_HANDLE_CLOSING, &hInternet,
|
|
|
|
sizeof(HINTERNET));
|
|
|
|
|
2004-07-19 21:49:39 +00:00
|
|
|
WININET_FreeHandle( hInternet );
|
|
|
|
WININET_Release( lpwh );
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2004-07-19 21:49:39 +00:00
|
|
|
return TRUE;
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-11 20:04:44 +00:00
|
|
|
/***********************************************************************
|
2003-01-02 23:08:22 +00:00
|
|
|
* ConvertUrlComponentValue (Internal)
|
2000-06-11 20:04:44 +00:00
|
|
|
*
|
2003-04-14 21:32:36 +00:00
|
|
|
* Helper function for InternetCrackUrlW
|
2000-06-11 20:04:44 +00:00
|
|
|
*
|
|
|
|
*/
|
2004-11-29 18:00:10 +00:00
|
|
|
static void ConvertUrlComponentValue(LPSTR* lppszComponent, LPDWORD dwComponentLen,
|
|
|
|
LPWSTR lpwszComponent, DWORD dwwComponentLen,
|
|
|
|
LPCSTR lpszStart, LPCWSTR lpwszStart)
|
2000-06-11 20:04:44 +00:00
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("%p %d %p %d %p %p\n", lppszComponent, *dwComponentLen, lpwszComponent, dwwComponentLen, lpszStart, lpwszStart);
|
2000-06-11 20:04:44 +00:00
|
|
|
if (*dwComponentLen != 0)
|
|
|
|
{
|
2004-08-09 18:54:23 +00:00
|
|
|
DWORD nASCIILength=WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,NULL,0,NULL,NULL);
|
2003-01-02 23:08:22 +00:00
|
|
|
if (*lppszComponent == NULL)
|
|
|
|
{
|
|
|
|
int nASCIIOffset=WideCharToMultiByte(CP_ACP,0,lpwszStart,lpwszComponent-lpwszStart,NULL,0,NULL,NULL);
|
2006-03-11 18:11:25 +00:00
|
|
|
if (lpwszComponent)
|
|
|
|
*lppszComponent = (LPSTR)lpszStart+nASCIIOffset;
|
|
|
|
else
|
|
|
|
*lppszComponent = NULL;
|
2003-01-02 23:08:22 +00:00
|
|
|
*dwComponentLen = nASCIILength;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-08-09 18:54:23 +00:00
|
|
|
DWORD ncpylen = min((*dwComponentLen)-1, nASCIILength);
|
2003-01-02 23:08:22 +00:00
|
|
|
WideCharToMultiByte(CP_ACP,0,lpwszComponent,dwwComponentLen,*lppszComponent,ncpylen+1,NULL,NULL);
|
|
|
|
(*lppszComponent)[ncpylen]=0;
|
|
|
|
*dwComponentLen = ncpylen;
|
|
|
|
}
|
2000-06-11 20:04:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/***********************************************************************
|
2001-06-19 18:20:47 +00:00
|
|
|
* InternetCrackUrlA (WININET.@)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
2006-03-21 13:45:03 +00:00
|
|
|
* See InternetCrackUrlW.
|
2000-04-11 20:07:00 +00:00
|
|
|
*/
|
2002-05-31 23:06:46 +00:00
|
|
|
BOOL WINAPI InternetCrackUrlA(LPCSTR lpszUrl, DWORD dwUrlLength, DWORD dwFlags,
|
2002-10-28 18:48:24 +00:00
|
|
|
LPURL_COMPONENTSA lpUrlComponents)
|
2003-01-02 23:08:22 +00:00
|
|
|
{
|
|
|
|
DWORD nLength;
|
|
|
|
URL_COMPONENTSW UCW;
|
|
|
|
WCHAR* lpwszUrl;
|
2004-07-04 00:06:44 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%s %u %x %p)\n", debugstr_a(lpszUrl), dwUrlLength, dwFlags, lpUrlComponents);
|
2007-05-22 09:59:36 +00:00
|
|
|
|
|
|
|
if (!lpszUrl || !*lpszUrl)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2004-07-04 00:06:44 +00:00
|
|
|
if(dwUrlLength<=0)
|
|
|
|
dwUrlLength=-1;
|
|
|
|
nLength=MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,NULL,0);
|
2005-04-11 16:10:50 +00:00
|
|
|
|
|
|
|
/* if dwUrlLength=-1 then nLength includes null but length to
|
|
|
|
InternetCrackUrlW should not include it */
|
|
|
|
if (dwUrlLength == -1) nLength--;
|
|
|
|
|
2004-07-04 00:06:44 +00:00
|
|
|
lpwszUrl=HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WCHAR)*nLength);
|
|
|
|
MultiByteToWideChar(CP_ACP,0,lpszUrl,dwUrlLength,lpwszUrl,nLength);
|
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
memset(&UCW,0,sizeof(UCW));
|
|
|
|
if(lpUrlComponents->dwHostNameLength!=0)
|
2005-05-24 11:43:35 +00:00
|
|
|
UCW.dwHostNameLength= lpUrlComponents->dwHostNameLength;
|
2003-01-02 23:08:22 +00:00
|
|
|
if(lpUrlComponents->dwUserNameLength!=0)
|
2005-05-24 11:43:35 +00:00
|
|
|
UCW.dwUserNameLength=lpUrlComponents->dwUserNameLength;
|
2003-01-02 23:08:22 +00:00
|
|
|
if(lpUrlComponents->dwPasswordLength!=0)
|
2005-05-24 11:43:35 +00:00
|
|
|
UCW.dwPasswordLength=lpUrlComponents->dwPasswordLength;
|
2003-01-02 23:08:22 +00:00
|
|
|
if(lpUrlComponents->dwUrlPathLength!=0)
|
2005-05-24 11:43:35 +00:00
|
|
|
UCW.dwUrlPathLength=lpUrlComponents->dwUrlPathLength;
|
2003-01-02 23:08:22 +00:00
|
|
|
if(lpUrlComponents->dwSchemeLength!=0)
|
2005-05-24 11:43:35 +00:00
|
|
|
UCW.dwSchemeLength=lpUrlComponents->dwSchemeLength;
|
2003-01-02 23:08:22 +00:00
|
|
|
if(lpUrlComponents->dwExtraInfoLength!=0)
|
2005-05-24 11:43:35 +00:00
|
|
|
UCW.dwExtraInfoLength=lpUrlComponents->dwExtraInfoLength;
|
2003-01-02 23:08:22 +00:00
|
|
|
if(!InternetCrackUrlW(lpwszUrl,nLength,dwFlags,&UCW))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwszUrl);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2004-11-29 18:00:10 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
ConvertUrlComponentValue(&lpUrlComponents->lpszHostName, &lpUrlComponents->dwHostNameLength,
|
|
|
|
UCW.lpszHostName, UCW.dwHostNameLength,
|
|
|
|
lpszUrl, lpwszUrl);
|
|
|
|
ConvertUrlComponentValue(&lpUrlComponents->lpszUserName, &lpUrlComponents->dwUserNameLength,
|
|
|
|
UCW.lpszUserName, UCW.dwUserNameLength,
|
|
|
|
lpszUrl, lpwszUrl);
|
|
|
|
ConvertUrlComponentValue(&lpUrlComponents->lpszPassword, &lpUrlComponents->dwPasswordLength,
|
|
|
|
UCW.lpszPassword, UCW.dwPasswordLength,
|
|
|
|
lpszUrl, lpwszUrl);
|
|
|
|
ConvertUrlComponentValue(&lpUrlComponents->lpszUrlPath, &lpUrlComponents->dwUrlPathLength,
|
|
|
|
UCW.lpszUrlPath, UCW.dwUrlPathLength,
|
|
|
|
lpszUrl, lpwszUrl);
|
|
|
|
ConvertUrlComponentValue(&lpUrlComponents->lpszScheme, &lpUrlComponents->dwSchemeLength,
|
|
|
|
UCW.lpszScheme, UCW.dwSchemeLength,
|
|
|
|
lpszUrl, lpwszUrl);
|
|
|
|
ConvertUrlComponentValue(&lpUrlComponents->lpszExtraInfo, &lpUrlComponents->dwExtraInfoLength,
|
|
|
|
UCW.lpszExtraInfo, UCW.dwExtraInfoLength,
|
|
|
|
lpszUrl, lpwszUrl);
|
|
|
|
lpUrlComponents->nScheme=UCW.nScheme;
|
|
|
|
lpUrlComponents->nPort=UCW.nPort;
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwszUrl);
|
|
|
|
|
|
|
|
TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", lpszUrl,
|
|
|
|
debugstr_an(lpUrlComponents->lpszScheme,lpUrlComponents->dwSchemeLength),
|
|
|
|
debugstr_an(lpUrlComponents->lpszHostName,lpUrlComponents->dwHostNameLength),
|
|
|
|
debugstr_an(lpUrlComponents->lpszUrlPath,lpUrlComponents->dwUrlPathLength),
|
|
|
|
debugstr_an(lpUrlComponents->lpszExtraInfo,lpUrlComponents->dwExtraInfoLength));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-03-09 15:14:21 +00:00
|
|
|
static const WCHAR url_schemes[][7] =
|
|
|
|
{
|
|
|
|
{'f','t','p',0},
|
|
|
|
{'g','o','p','h','e','r',0},
|
|
|
|
{'h','t','t','p',0},
|
|
|
|
{'h','t','t','p','s',0},
|
|
|
|
{'f','i','l','e',0},
|
|
|
|
{'n','e','w','s',0},
|
|
|
|
{'m','a','i','l','t','o',0},
|
|
|
|
{'r','e','s',0},
|
|
|
|
};
|
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* GetInternetSchemeW (internal)
|
|
|
|
*
|
|
|
|
* Get scheme of url
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* scheme on success
|
|
|
|
* INTERNET_SCHEME_UNKNOWN on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-08-09 18:54:23 +00:00
|
|
|
static INTERNET_SCHEME GetInternetSchemeW(LPCWSTR lpszScheme, DWORD nMaxCmp)
|
2003-01-02 23:08:22 +00:00
|
|
|
{
|
2006-03-09 15:14:21 +00:00
|
|
|
int i;
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("%s %d\n",debugstr_wn(lpszScheme, nMaxCmp), nMaxCmp);
|
2006-03-09 15:14:21 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
if(lpszScheme==NULL)
|
|
|
|
return INTERNET_SCHEME_UNKNOWN;
|
|
|
|
|
2006-03-09 15:14:21 +00:00
|
|
|
for (i = 0; i < sizeof(url_schemes)/sizeof(url_schemes[0]); i++)
|
|
|
|
if (!strncmpW(lpszScheme, url_schemes[i], nMaxCmp))
|
|
|
|
return INTERNET_SCHEME_FIRST + i;
|
|
|
|
|
|
|
|
return INTERNET_SCHEME_UNKNOWN;
|
2003-01-02 23:08:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* SetUrlComponentValueW (Internal)
|
|
|
|
*
|
|
|
|
* Helper function for InternetCrackUrlW
|
|
|
|
*
|
2005-04-18 10:30:55 +00:00
|
|
|
* PARAMS
|
|
|
|
* lppszComponent [O] Holds the returned string
|
|
|
|
* dwComponentLen [I] Holds the size of lppszComponent
|
|
|
|
* [O] Holds the length of the string in lppszComponent without '\0'
|
|
|
|
* lpszStart [I] Holds the string to copy from
|
|
|
|
* len [I] Holds the length of lpszStart without '\0'
|
|
|
|
*
|
2003-01-02 23:08:22 +00:00
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2004-08-09 18:54:23 +00:00
|
|
|
static BOOL SetUrlComponentValueW(LPWSTR* lppszComponent, LPDWORD dwComponentLen, LPCWSTR lpszStart, DWORD len)
|
2003-01-02 23:08:22 +00:00
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("%s (%d)\n", debugstr_wn(lpszStart,len), len);
|
2003-01-02 23:08:22 +00:00
|
|
|
|
2004-08-06 18:57:53 +00:00
|
|
|
if ( (*dwComponentLen == 0) && (*lppszComponent == NULL) )
|
|
|
|
return FALSE;
|
|
|
|
|
2003-06-20 23:26:56 +00:00
|
|
|
if (*dwComponentLen != 0 || *lppszComponent == NULL)
|
2003-01-02 23:08:22 +00:00
|
|
|
{
|
|
|
|
if (*lppszComponent == NULL)
|
|
|
|
{
|
|
|
|
*lppszComponent = (LPWSTR)lpszStart;
|
|
|
|
*dwComponentLen = len;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-08-09 18:54:23 +00:00
|
|
|
DWORD ncpylen = min((*dwComponentLen)-1, len);
|
2005-04-18 10:30:55 +00:00
|
|
|
memcpy(*lppszComponent, lpszStart, ncpylen*sizeof(WCHAR));
|
2003-01-02 23:08:22 +00:00
|
|
|
(*lppszComponent)[ncpylen] = '\0';
|
|
|
|
*dwComponentLen = ncpylen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetCrackUrlW (WININET.@)
|
2006-03-21 13:45:03 +00:00
|
|
|
*
|
|
|
|
* Break up URL into its components
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
2003-01-02 23:08:22 +00:00
|
|
|
*/
|
2005-05-24 11:43:35 +00:00
|
|
|
BOOL WINAPI InternetCrackUrlW(LPCWSTR lpszUrl_orig, DWORD dwUrlLength_orig, DWORD dwFlags,
|
2003-01-02 23:08:22 +00:00
|
|
|
LPURL_COMPONENTSW lpUC)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* RFC 1808
|
|
|
|
* <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
|
|
|
|
*
|
|
|
|
*/
|
2004-06-01 20:19:56 +00:00
|
|
|
LPCWSTR lpszParam = NULL;
|
2000-04-11 20:07:00 +00:00
|
|
|
BOOL bIsAbsolute = FALSE;
|
2005-05-24 11:43:35 +00:00
|
|
|
LPCWSTR lpszap, lpszUrl = lpszUrl_orig;
|
2004-06-01 20:19:56 +00:00
|
|
|
LPCWSTR lpszcp = NULL;
|
2005-05-24 11:43:35 +00:00
|
|
|
LPWSTR lpszUrl_decode = NULL;
|
|
|
|
DWORD dwUrlLength = dwUrlLength_orig;
|
2004-04-12 23:13:53 +00:00
|
|
|
const WCHAR lpszSeparators[3]={';','?',0};
|
|
|
|
const WCHAR lpszSlash[2]={'/',0};
|
2003-01-02 23:08:22 +00:00
|
|
|
if(dwUrlLength==0)
|
|
|
|
dwUrlLength=strlenW(lpszUrl);
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%s %u %x %p)\n", debugstr_w(lpszUrl), dwUrlLength, dwFlags, lpUC);
|
2006-07-14 23:45:46 +00:00
|
|
|
|
|
|
|
if (!lpszUrl_orig || !*lpszUrl_orig)
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
2006-07-14 23:45:46 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2005-05-24 11:43:35 +00:00
|
|
|
if (dwFlags & ICU_DECODE)
|
|
|
|
{
|
|
|
|
lpszUrl_decode=HeapAlloc( GetProcessHeap(), 0, dwUrlLength * sizeof (WCHAR) );
|
|
|
|
if( InternetCanonicalizeUrlW(lpszUrl_orig, lpszUrl_decode, &dwUrlLength, dwFlags))
|
|
|
|
{
|
|
|
|
lpszUrl = lpszUrl_decode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lpszap = lpszUrl;
|
|
|
|
|
2000-06-11 20:04:44 +00:00
|
|
|
/* Determine if the URI is absolute. */
|
|
|
|
while (*lpszap != '\0')
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2003-01-02 23:08:22 +00:00
|
|
|
if (isalnumW(*lpszap))
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2000-06-11 20:04:44 +00:00
|
|
|
lpszap++;
|
2000-04-11 20:07:00 +00:00
|
|
|
continue;
|
|
|
|
}
|
2000-06-11 20:04:44 +00:00
|
|
|
if ((*lpszap == ':') && (lpszap - lpszUrl >= 2))
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
|
|
|
bIsAbsolute = TRUE;
|
2000-06-11 20:04:44 +00:00
|
|
|
lpszcp = lpszap;
|
|
|
|
}
|
2003-01-02 23:08:22 +00:00
|
|
|
else
|
|
|
|
{
|
2004-06-01 20:19:56 +00:00
|
|
|
lpszcp = lpszUrl; /* Relative url */
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-03-14 14:35:37 +00:00
|
|
|
lpUC->nScheme = INTERNET_SCHEME_UNKNOWN;
|
|
|
|
lpUC->nPort = INTERNET_INVALID_PORT_NUMBER;
|
|
|
|
|
2000-06-11 20:04:44 +00:00
|
|
|
/* Parse <params> */
|
2003-01-02 23:08:22 +00:00
|
|
|
lpszParam = strpbrkW(lpszap, lpszSeparators);
|
2006-03-14 14:35:37 +00:00
|
|
|
SetUrlComponentValueW(&lpUC->lpszExtraInfo, &lpUC->dwExtraInfoLength,
|
|
|
|
lpszParam, lpszParam ? dwUrlLength-(lpszParam-lpszUrl) : 0);
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2000-06-11 20:04:44 +00:00
|
|
|
if (bIsAbsolute) /* Parse <protocol>:[//<net_loc>] */
|
2003-01-02 23:08:22 +00:00
|
|
|
{
|
2004-06-01 20:19:56 +00:00
|
|
|
LPCWSTR lpszNetLoc;
|
2000-06-11 20:04:44 +00:00
|
|
|
|
|
|
|
/* Get scheme first. */
|
2003-01-02 23:08:22 +00:00
|
|
|
lpUC->nScheme = GetInternetSchemeW(lpszUrl, lpszcp - lpszUrl);
|
2004-08-06 18:57:53 +00:00
|
|
|
SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength,
|
|
|
|
lpszUrl, lpszcp - lpszUrl);
|
2000-06-11 20:04:44 +00:00
|
|
|
|
|
|
|
/* Eat ':' in protocol. */
|
|
|
|
lpszcp++;
|
|
|
|
|
2006-03-11 18:10:57 +00:00
|
|
|
/* double slash indicates the net_loc portion is present */
|
|
|
|
if ((lpszcp[0] == '/') && (lpszcp[1] == '/'))
|
2000-06-11 20:04:44 +00:00
|
|
|
{
|
2006-03-11 18:10:57 +00:00
|
|
|
lpszcp += 2;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
lpszNetLoc = strpbrkW(lpszcp, lpszSlash);
|
|
|
|
if (lpszParam)
|
|
|
|
{
|
|
|
|
if (lpszNetLoc)
|
|
|
|
lpszNetLoc = min(lpszNetLoc, lpszParam);
|
|
|
|
else
|
|
|
|
lpszNetLoc = lpszParam;
|
|
|
|
}
|
|
|
|
else if (!lpszNetLoc)
|
|
|
|
lpszNetLoc = lpszcp + dwUrlLength-(lpszcp-lpszUrl);
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
/* Parse net-loc */
|
|
|
|
if (lpszNetLoc)
|
|
|
|
{
|
2004-06-01 20:19:56 +00:00
|
|
|
LPCWSTR lpszHost;
|
|
|
|
LPCWSTR lpszPort;
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/* [<user>[<:password>]@]<host>[:<port>] */
|
2003-01-02 23:08:22 +00:00
|
|
|
/* First find the user and password if they exist */
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
lpszHost = strchrW(lpszcp, '@');
|
|
|
|
if (lpszHost == NULL || lpszHost > lpszNetLoc)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2003-01-02 23:08:22 +00:00
|
|
|
/* username and password not specified. */
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
2003-01-02 23:08:22 +00:00
|
|
|
else /* Parse out username and password */
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2004-06-01 20:19:56 +00:00
|
|
|
LPCWSTR lpszUser = lpszcp;
|
|
|
|
LPCWSTR lpszPasswd = lpszHost;
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
while (lpszcp < lpszHost)
|
|
|
|
{
|
|
|
|
if (*lpszcp == ':')
|
|
|
|
lpszPasswd = lpszcp;
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
lpszcp++;
|
2002-05-31 23:06:46 +00:00
|
|
|
}
|
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength,
|
|
|
|
lpszUser, lpszPasswd - lpszUser);
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
if (lpszPasswd != lpszHost)
|
|
|
|
lpszPasswd++;
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength,
|
|
|
|
lpszPasswd == lpszHost ? NULL : lpszPasswd,
|
|
|
|
lpszHost - lpszPasswd);
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
lpszcp++; /* Advance to beginning of host */
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
/* Parse <host><:port> */
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
lpszHost = lpszcp;
|
|
|
|
lpszPort = lpszNetLoc;
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
/* special case for res:// URLs: there is no port here, so the host is the
|
|
|
|
entire string up to the first '/' */
|
|
|
|
if(lpUC->nScheme==INTERNET_SCHEME_RES)
|
|
|
|
{
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
|
|
|
|
lpszHost, lpszPort - lpszHost);
|
|
|
|
lpszcp=lpszNetLoc;
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
2003-01-02 23:08:22 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
while (lpszcp < lpszNetLoc)
|
|
|
|
{
|
|
|
|
if (*lpszcp == ':')
|
|
|
|
lpszPort = lpszcp;
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
lpszcp++;
|
|
|
|
}
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2003-01-02 23:08:22 +00:00
|
|
|
/* If the scheme is "file" and the host is just one letter, it's not a host */
|
|
|
|
if(lpUC->nScheme==INTERNET_SCHEME_FILE && (lpszPort-lpszHost)==1)
|
|
|
|
{
|
|
|
|
lpszcp=lpszHost;
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
|
|
|
|
NULL, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength,
|
|
|
|
lpszHost, lpszPort - lpszHost);
|
|
|
|
if (lpszPort != lpszNetLoc)
|
|
|
|
lpUC->nPort = atoiW(++lpszPort);
|
2006-03-11 18:09:21 +00:00
|
|
|
else switch (lpUC->nScheme)
|
|
|
|
{
|
|
|
|
case INTERNET_SCHEME_HTTP:
|
|
|
|
lpUC->nPort = INTERNET_DEFAULT_HTTP_PORT;
|
|
|
|
break;
|
|
|
|
case INTERNET_SCHEME_HTTPS:
|
|
|
|
lpUC->nPort = INTERNET_DEFAULT_HTTPS_PORT;
|
|
|
|
break;
|
|
|
|
case INTERNET_SCHEME_FTP:
|
|
|
|
lpUC->nPort = INTERNET_DEFAULT_FTP_PORT;
|
|
|
|
break;
|
|
|
|
case INTERNET_SCHEME_GOPHER:
|
|
|
|
lpUC->nPort = INTERNET_DEFAULT_GOPHER_PORT;
|
|
|
|
break;
|
|
|
|
default:
|
2006-03-14 14:35:37 +00:00
|
|
|
break;
|
2006-03-11 18:09:21 +00:00
|
|
|
}
|
2003-01-02 23:08:22 +00:00
|
|
|
}
|
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
}
|
2006-03-11 18:10:57 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
|
|
|
|
}
|
2003-01-02 23:08:22 +00:00
|
|
|
}
|
2006-03-14 14:35:37 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszScheme, &lpUC->dwSchemeLength, NULL, 0);
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszUserName, &lpUC->dwUserNameLength, NULL, 0);
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszPassword, &lpUC->dwPasswordLength, NULL, 0);
|
|
|
|
SetUrlComponentValueW(&lpUC->lpszHostName, &lpUC->dwHostNameLength, NULL, 0);
|
|
|
|
}
|
2000-06-11 20:04:44 +00:00
|
|
|
|
|
|
|
/* Here lpszcp points to:
|
|
|
|
*
|
|
|
|
* <protocol>:[//<net_loc>][/path][;<params>][?<query>][#<fragment>]
|
|
|
|
* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
*/
|
|
|
|
if (lpszcp != 0 && *lpszcp != '\0' && (!lpszParam || lpszcp < lpszParam))
|
|
|
|
{
|
2000-07-23 13:34:21 +00:00
|
|
|
INT len;
|
|
|
|
|
|
|
|
/* Only truncate the parameter list if it's already been saved
|
2003-01-02 23:08:22 +00:00
|
|
|
* in lpUC->lpszExtraInfo.
|
2000-07-23 13:34:21 +00:00
|
|
|
*/
|
2004-08-06 18:57:53 +00:00
|
|
|
if (lpszParam && lpUC->dwExtraInfoLength && lpUC->lpszExtraInfo)
|
2000-07-23 13:34:21 +00:00
|
|
|
len = lpszParam - lpszcp;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Leave the parameter list in lpszUrlPath. Strip off any trailing
|
|
|
|
* newlines if necessary.
|
|
|
|
*/
|
2003-01-02 23:08:22 +00:00
|
|
|
LPWSTR lpsznewline = strchrW(lpszcp, '\n');
|
2000-07-23 13:34:21 +00:00
|
|
|
if (lpsznewline != NULL)
|
|
|
|
len = lpsznewline - lpszcp;
|
|
|
|
else
|
2003-01-02 23:08:22 +00:00
|
|
|
len = dwUrlLength-(lpszcp-lpszUrl);
|
2000-07-23 13:34:21 +00:00
|
|
|
}
|
2004-08-06 18:57:53 +00:00
|
|
|
SetUrlComponentValueW(&lpUC->lpszUrlPath, &lpUC->dwUrlPathLength,
|
|
|
|
lpszcp, len);
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
else
|
2000-06-11 20:04:44 +00:00
|
|
|
{
|
2003-01-02 23:08:22 +00:00
|
|
|
lpUC->dwUrlPathLength = 0;
|
2000-06-11 20:04:44 +00:00
|
|
|
}
|
|
|
|
|
2005-05-24 11:43:35 +00:00
|
|
|
TRACE("%s: scheme(%s) host(%s) path(%s) extra(%s)\n", debugstr_wn(lpszUrl,dwUrlLength),
|
|
|
|
debugstr_wn(lpUC->lpszScheme,lpUC->dwSchemeLength),
|
2003-01-02 23:08:22 +00:00
|
|
|
debugstr_wn(lpUC->lpszHostName,lpUC->dwHostNameLength),
|
|
|
|
debugstr_wn(lpUC->lpszUrlPath,lpUC->dwUrlPathLength),
|
|
|
|
debugstr_wn(lpUC->lpszExtraInfo,lpUC->dwExtraInfoLength));
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2006-05-09 22:33:53 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpszUrl_decode );
|
2000-04-11 20:07:00 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 18:20:47 +00:00
|
|
|
* InternetAttemptConnect (WININET.@)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* Attempt to make a connection to the internet
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* ERROR_SUCCESS on success
|
|
|
|
* Error value on failure
|
|
|
|
*
|
|
|
|
*/
|
2001-09-11 00:32:32 +00:00
|
|
|
DWORD WINAPI InternetAttemptConnect(DWORD dwReserved)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
|
|
|
FIXME("Stub\n");
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 18:20:47 +00:00
|
|
|
* InternetCanonicalizeUrlA (WININET.@)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* Escape unsafe characters and spaces
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 20:44:21 +00:00
|
|
|
BOOL WINAPI InternetCanonicalizeUrlA(LPCSTR lpszUrl, LPSTR lpszBuffer,
|
2000-04-11 20:07:00 +00:00
|
|
|
LPDWORD lpdwBufferLength, DWORD dwFlags)
|
|
|
|
{
|
2001-01-06 00:36:43 +00:00
|
|
|
HRESULT hr;
|
2005-05-24 11:43:35 +00:00
|
|
|
DWORD dwURLFlags= 0x80000000; /* Don't know what this means */
|
|
|
|
if(dwFlags & ICU_DECODE)
|
|
|
|
{
|
|
|
|
dwURLFlags |= URL_UNESCAPE;
|
|
|
|
dwFlags &= ~ICU_DECODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dwFlags & ICU_ESCAPE)
|
|
|
|
{
|
|
|
|
dwURLFlags |= URL_UNESCAPE;
|
|
|
|
dwFlags &= ~ICU_ESCAPE;
|
|
|
|
}
|
2005-09-29 13:33:39 +00:00
|
|
|
if(dwFlags & ICU_BROWSER_MODE)
|
|
|
|
{
|
|
|
|
dwURLFlags |= URL_BROWSER_MODE;
|
|
|
|
dwFlags &= ~ICU_BROWSER_MODE;
|
|
|
|
}
|
2005-05-24 11:43:35 +00:00
|
|
|
if(dwFlags)
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("Unhandled flags 0x%08x\n", dwFlags);
|
|
|
|
TRACE("%s %p %p %08x\n", debugstr_a(lpszUrl), lpszBuffer,
|
2005-05-24 11:43:35 +00:00
|
|
|
lpdwBufferLength, dwURLFlags);
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2001-01-06 00:36:43 +00:00
|
|
|
/* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
|
|
|
|
dwFlags ^= ICU_NO_ENCODE;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2005-05-24 11:43:35 +00:00
|
|
|
hr = UrlCanonicalizeA(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2001-01-06 00:36:43 +00:00
|
|
|
return (hr == S_OK) ? TRUE : FALSE;
|
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2002-10-28 18:48:24 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* InternetCanonicalizeUrlW (WININET.@)
|
|
|
|
*
|
|
|
|
* Escape unsafe characters and spaces
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetCanonicalizeUrlW(LPCWSTR lpszUrl, LPWSTR lpszBuffer,
|
|
|
|
LPDWORD lpdwBufferLength, DWORD dwFlags)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
2005-05-24 11:43:35 +00:00
|
|
|
DWORD dwURLFlags= 0x80000000; /* Don't know what this means */
|
|
|
|
if(dwFlags & ICU_DECODE)
|
|
|
|
{
|
|
|
|
dwURLFlags |= URL_UNESCAPE;
|
|
|
|
dwFlags &= ~ICU_DECODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dwFlags & ICU_ESCAPE)
|
|
|
|
{
|
|
|
|
dwURLFlags |= URL_UNESCAPE;
|
|
|
|
dwFlags &= ~ICU_ESCAPE;
|
|
|
|
}
|
2005-09-29 13:33:39 +00:00
|
|
|
if(dwFlags & ICU_BROWSER_MODE)
|
|
|
|
{
|
|
|
|
dwURLFlags |= URL_BROWSER_MODE;
|
|
|
|
dwFlags &= ~ICU_BROWSER_MODE;
|
|
|
|
}
|
2005-05-24 11:43:35 +00:00
|
|
|
if(dwFlags)
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("Unhandled flags 0x%08x\n", dwFlags);
|
|
|
|
TRACE("%s %p %p %08x\n", debugstr_w(lpszUrl), lpszBuffer,
|
2005-05-24 11:43:35 +00:00
|
|
|
lpdwBufferLength, dwURLFlags);
|
2002-10-28 18:48:24 +00:00
|
|
|
|
|
|
|
/* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
|
|
|
|
dwFlags ^= ICU_NO_ENCODE;
|
|
|
|
|
2005-05-24 11:43:35 +00:00
|
|
|
hr = UrlCanonicalizeW(lpszUrl, lpszBuffer, lpdwBufferLength, dwURLFlags);
|
2002-10-28 18:48:24 +00:00
|
|
|
|
|
|
|
return (hr == S_OK) ? TRUE : FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/***********************************************************************
|
2003-03-28 19:30:55 +00:00
|
|
|
* InternetSetStatusCallbackA (WININET.@)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* Sets up a callback function which is called as progress is made
|
2002-05-31 23:06:46 +00:00
|
|
|
* during an operation.
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Previous callback or NULL on success
|
|
|
|
* INTERNET_INVALID_STATUS_CALLBACK on failure
|
|
|
|
*
|
|
|
|
*/
|
2003-03-28 19:30:55 +00:00
|
|
|
INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackA(
|
2000-04-11 20:07:00 +00:00
|
|
|
HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
|
|
|
|
{
|
2004-09-20 19:10:31 +00:00
|
|
|
INTERNET_STATUS_CALLBACK retVal;
|
|
|
|
LPWININETHANDLEHEADER lpwh;
|
2004-02-07 01:03:41 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("0x%08x\n", (ULONG)hInternet);
|
2004-05-25 04:02:05 +00:00
|
|
|
|
2004-09-20 19:10:31 +00:00
|
|
|
lpwh = WININET_GetObject(hInternet);
|
|
|
|
if (!lpwh)
|
|
|
|
return INTERNET_INVALID_STATUS_CALLBACK;
|
2004-05-25 04:02:05 +00:00
|
|
|
|
2004-09-20 19:10:31 +00:00
|
|
|
lpwh->dwInternalFlags &= ~INET_CALLBACKW;
|
|
|
|
retVal = lpwh->lpfnStatusCB;
|
|
|
|
lpwh->lpfnStatusCB = lpfnIntCB;
|
|
|
|
|
|
|
|
WININET_Release( lpwh );
|
2004-05-25 04:02:05 +00:00
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetSetStatusCallbackW (WININET.@)
|
|
|
|
*
|
|
|
|
* Sets up a callback function which is called as progress is made
|
|
|
|
* during an operation.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Previous callback or NULL on success
|
|
|
|
* INTERNET_INVALID_STATUS_CALLBACK on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackW(
|
|
|
|
HINTERNET hInternet ,INTERNET_STATUS_CALLBACK lpfnIntCB)
|
|
|
|
{
|
2004-09-20 19:10:31 +00:00
|
|
|
INTERNET_STATUS_CALLBACK retVal;
|
|
|
|
LPWININETHANDLEHEADER lpwh;
|
2004-05-25 04:02:05 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("0x%08x\n", (ULONG)hInternet);
|
2004-05-25 04:02:05 +00:00
|
|
|
|
2004-09-20 19:10:31 +00:00
|
|
|
lpwh = WININET_GetObject(hInternet);
|
|
|
|
if (!lpwh)
|
|
|
|
return INTERNET_INVALID_STATUS_CALLBACK;
|
2004-05-25 04:02:05 +00:00
|
|
|
|
2004-09-20 19:10:31 +00:00
|
|
|
lpwh->dwInternalFlags |= INET_CALLBACKW;
|
|
|
|
retVal = lpwh->lpfnStatusCB;
|
|
|
|
lpwh->lpfnStatusCB = lpfnIntCB;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2004-09-20 19:10:31 +00:00
|
|
|
WININET_Release( lpwh );
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
2003-11-09 01:23:32 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* InternetSetFilePointer (WININET.@)
|
|
|
|
*/
|
2005-10-28 10:08:44 +00:00
|
|
|
DWORD WINAPI InternetSetFilePointer(HINTERNET hFile, LONG lDistanceToMove,
|
|
|
|
PVOID pReserved, DWORD dwMoveContext, DWORD dwContext)
|
2003-11-09 01:23:32 +00:00
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 18:20:47 +00:00
|
|
|
* InternetWriteFile (WININET.@)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
2002-05-31 23:06:46 +00:00
|
|
|
* Write data to an open internet file
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2000-04-15 20:44:21 +00:00
|
|
|
BOOL WINAPI InternetWriteFile(HINTERNET hFile, LPCVOID lpBuffer ,
|
2000-04-11 20:07:00 +00:00
|
|
|
DWORD dwNumOfBytesToWrite, LPDWORD lpdwNumOfBytesWritten)
|
|
|
|
{
|
|
|
|
BOOL retval = FALSE;
|
2001-08-24 19:13:36 +00:00
|
|
|
int nSocket = -1;
|
2004-02-07 01:03:41 +00:00
|
|
|
LPWININETHANDLEHEADER lpwh;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
TRACE("\n");
|
2004-02-07 01:03:41 +00:00
|
|
|
lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
|
2000-04-11 20:07:00 +00:00
|
|
|
if (NULL == lpwh)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
switch (lpwh->htype)
|
|
|
|
{
|
|
|
|
case WH_HHTTPREQ:
|
2005-11-21 11:57:33 +00:00
|
|
|
{
|
|
|
|
LPWININETHTTPREQW lpwhr;
|
|
|
|
lpwhr = (LPWININETHTTPREQW)lpwh;
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("HTTPREQ %i\n",dwNumOfBytesToWrite);
|
2005-11-21 11:57:33 +00:00
|
|
|
retval = NETCON_send(&lpwhr->netConnection, lpBuffer,
|
|
|
|
dwNumOfBytesToWrite, 0, (LPINT)lpdwNumOfBytesWritten);
|
|
|
|
|
|
|
|
WININET_Release( lpwh );
|
|
|
|
return retval;
|
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WH_HFILE:
|
2006-10-29 17:55:15 +00:00
|
|
|
nSocket = ((LPWININETFTPFILE)lpwh)->nDataSocket;
|
2000-04-11 20:07:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-08-24 19:13:36 +00:00
|
|
|
if (nSocket != -1)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2002-06-21 23:59:49 +00:00
|
|
|
int res = send(nSocket, lpBuffer, dwNumOfBytesToWrite, 0);
|
|
|
|
retval = (res >= 0);
|
|
|
|
*lpdwNumOfBytesWritten = retval ? res : 0;
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
2004-07-19 21:49:39 +00:00
|
|
|
WININET_Release( lpwh );
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-04 18:23:17 +00:00
|
|
|
BOOL INTERNET_ReadFile(LPWININETHANDLEHEADER lpwh, LPVOID lpBuffer,
|
|
|
|
DWORD dwNumOfBytesToRead, LPDWORD pdwNumOfBytesRead,
|
|
|
|
BOOL bWait, BOOL bSendCompletionStatus)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
|
|
|
BOOL retval = FALSE;
|
2001-08-24 19:13:36 +00:00
|
|
|
int nSocket = -1;
|
2007-01-04 18:21:49 +00:00
|
|
|
int bytes_read;
|
|
|
|
LPWININETHTTPREQW lpwhr;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2003-06-20 23:26:56 +00:00
|
|
|
/* FIXME: this should use NETCON functions! */
|
2000-04-11 20:07:00 +00:00
|
|
|
switch (lpwh->htype)
|
|
|
|
{
|
|
|
|
case WH_HHTTPREQ:
|
2007-01-04 18:21:49 +00:00
|
|
|
lpwhr = (LPWININETHTTPREQW)lpwh;
|
2007-01-04 18:23:17 +00:00
|
|
|
|
2007-01-04 18:21:49 +00:00
|
|
|
if (!NETCON_recv(&lpwhr->netConnection, lpBuffer,
|
|
|
|
min(dwNumOfBytesToRead, lpwhr->dwContentLength - lpwhr->dwContentRead),
|
|
|
|
bWait ? MSG_WAITALL : 0, &bytes_read))
|
2003-06-20 23:26:56 +00:00
|
|
|
{
|
2007-01-04 18:23:17 +00:00
|
|
|
|
|
|
|
if (((lpwhr->dwContentLength != -1) &&
|
|
|
|
(lpwhr->dwContentRead != lpwhr->dwContentLength)))
|
|
|
|
ERR("not all data received %d/%d\n", lpwhr->dwContentRead,
|
|
|
|
lpwhr->dwContentLength);
|
|
|
|
|
|
|
|
/* always returns TRUE, even if the network layer returns an
|
|
|
|
* error */
|
2005-11-12 19:10:56 +00:00
|
|
|
*pdwNumOfBytesRead = 0;
|
2007-01-04 18:23:17 +00:00
|
|
|
HTTP_FinishedReading(lpwhr);
|
|
|
|
retval = TRUE;
|
2003-06-20 23:26:56 +00:00
|
|
|
}
|
|
|
|
else
|
2007-01-04 18:21:49 +00:00
|
|
|
{
|
|
|
|
lpwhr->dwContentRead += bytes_read;
|
|
|
|
*pdwNumOfBytesRead = bytes_read;
|
2007-01-04 18:23:17 +00:00
|
|
|
if (!bytes_read)
|
|
|
|
retval = HTTP_FinishedReading(lpwhr);
|
|
|
|
else
|
|
|
|
retval = TRUE;
|
2007-01-04 18:21:49 +00:00
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WH_HFILE:
|
2003-06-20 23:26:56 +00:00
|
|
|
/* FIXME: FTP should use NETCON_ stuff */
|
2006-10-29 17:55:15 +00:00
|
|
|
nSocket = ((LPWININETFTPFILE)lpwh)->nDataSocket;
|
2003-06-20 23:26:56 +00:00
|
|
|
if (nSocket != -1)
|
|
|
|
{
|
2005-11-12 19:10:56 +00:00
|
|
|
int res = recv(nSocket, lpBuffer, dwNumOfBytesToRead, bWait ? MSG_WAITALL : 0);
|
2003-06-20 23:26:56 +00:00
|
|
|
retval = (res >= 0);
|
2005-11-12 19:10:56 +00:00
|
|
|
*pdwNumOfBytesRead = retval ? res : 0;
|
2003-06-20 23:26:56 +00:00
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2005-11-12 19:10:56 +00:00
|
|
|
|
|
|
|
if (bSendCompletionStatus)
|
|
|
|
{
|
|
|
|
INTERNET_ASYNC_RESULT iar;
|
|
|
|
|
|
|
|
iar.dwResult = retval;
|
|
|
|
iar.dwError = iar.dwError = retval ? ERROR_SUCCESS :
|
|
|
|
INTERNET_GetLastError();
|
|
|
|
|
2005-11-28 10:00:18 +00:00
|
|
|
INTERNET_SendCallback(lpwh, lpwh->dwContext,
|
|
|
|
INTERNET_STATUS_REQUEST_COMPLETE, &iar,
|
|
|
|
sizeof(INTERNET_ASYNC_RESULT));
|
2005-11-12 19:10:56 +00:00
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetReadFile (WININET.@)
|
|
|
|
*
|
|
|
|
* Read data from an open internet file
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetReadFile(HINTERNET hFile, LPVOID lpBuffer,
|
|
|
|
DWORD dwNumOfBytesToRead, LPDWORD pdwNumOfBytesRead)
|
|
|
|
{
|
|
|
|
LPWININETHANDLEHEADER lpwh;
|
|
|
|
BOOL retval;
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("%p %p %d %p\n", hFile, lpBuffer, dwNumOfBytesToRead, pdwNumOfBytesRead);
|
2005-11-12 19:10:56 +00:00
|
|
|
|
|
|
|
lpwh = WININET_GetObject( hFile );
|
|
|
|
if (!lpwh)
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_HANDLE);
|
2005-11-12 19:10:56 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = INTERNET_ReadFile(lpwh, lpBuffer, dwNumOfBytesToRead, pdwNumOfBytesRead, TRUE, FALSE);
|
2004-07-19 21:49:39 +00:00
|
|
|
WININET_Release( lpwh );
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("-- %s (bytes read: %d)\n", retval ? "TRUE": "FALSE", pdwNumOfBytesRead ? *pdwNumOfBytesRead : -1);
|
2000-04-11 20:07:00 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2002-09-27 22:05:23 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* InternetReadFileExA (WININET.@)
|
|
|
|
*
|
|
|
|
* Read data from an open internet file
|
|
|
|
*
|
2005-11-12 19:10:56 +00:00
|
|
|
* PARAMS
|
|
|
|
* hFile [I] Handle returned by InternetOpenUrl or HttpOpenRequest.
|
|
|
|
* lpBuffersOut [I/O] Buffer.
|
|
|
|
* dwFlags [I] Flags. See notes.
|
|
|
|
* dwContext [I] Context for callbacks.
|
|
|
|
*
|
2002-09-27 22:05:23 +00:00
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
2005-11-12 19:10:56 +00:00
|
|
|
* NOTES
|
|
|
|
* The parameter dwFlags include zero or more of the following flags:
|
|
|
|
*|IRF_ASYNC - Makes the call asynchronous.
|
|
|
|
*|IRF_SYNC - Makes the call synchronous.
|
|
|
|
*|IRF_USE_CONTEXT - Forces dwContext to be used.
|
|
|
|
*|IRF_NO_WAIT - Don't block if the data is not available, just return what is available.
|
|
|
|
*
|
|
|
|
* However, in testing IRF_USE_CONTEXT seems to have no effect - dwContext isn't used.
|
|
|
|
*
|
|
|
|
* SEE
|
|
|
|
* InternetOpenUrlA(), HttpOpenRequestA()
|
2002-09-27 22:05:23 +00:00
|
|
|
*/
|
2006-12-25 20:33:56 +00:00
|
|
|
void AsyncInternetReadFileExProc(WORKREQUEST *workRequest)
|
|
|
|
{
|
|
|
|
struct WORKREQ_INTERNETREADFILEEXA const *req = &workRequest->u.InternetReadFileExA;
|
|
|
|
|
|
|
|
TRACE("INTERNETREADFILEEXA %p\n", workRequest->hdr);
|
|
|
|
|
|
|
|
INTERNET_ReadFile(workRequest->hdr, req->lpBuffersOut->lpvBuffer,
|
|
|
|
req->lpBuffersOut->dwBufferLength,
|
|
|
|
&req->lpBuffersOut->dwBufferLength, TRUE, TRUE);
|
|
|
|
}
|
|
|
|
|
2005-11-12 19:10:56 +00:00
|
|
|
BOOL WINAPI InternetReadFileExA(HINTERNET hFile, LPINTERNET_BUFFERSA lpBuffersOut,
|
2002-09-27 22:05:23 +00:00
|
|
|
DWORD dwFlags, DWORD dwContext)
|
|
|
|
{
|
2005-11-12 19:10:56 +00:00
|
|
|
BOOL retval = FALSE;
|
|
|
|
LPWININETHANDLEHEADER lpwh;
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%p %p 0x%x 0x%x)\n", hFile, lpBuffersOut, dwFlags, dwContext);
|
2005-11-12 19:10:56 +00:00
|
|
|
|
|
|
|
if (dwFlags & ~(IRF_ASYNC|IRF_NO_WAIT))
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("these dwFlags aren't implemented: 0x%x\n", dwFlags & ~(IRF_ASYNC|IRF_NO_WAIT));
|
2005-11-12 19:10:56 +00:00
|
|
|
|
|
|
|
if (lpBuffersOut->dwStructSize != sizeof(*lpBuffersOut))
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
2005-11-12 19:10:56 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
lpwh = (LPWININETHANDLEHEADER) WININET_GetObject( hFile );
|
|
|
|
if (!lpwh)
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_HANDLE);
|
2005-11-12 19:10:56 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: native only does it asynchronously if the amount of data
|
|
|
|
* requested isn't available. See NtReadFile. */
|
|
|
|
/* FIXME: IRF_ASYNC may not be the right thing to test here;
|
|
|
|
* hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC is probably better, but
|
|
|
|
* we should implement the above first */
|
|
|
|
if (dwFlags & IRF_ASYNC)
|
|
|
|
{
|
|
|
|
WORKREQUEST workRequest;
|
|
|
|
struct WORKREQ_INTERNETREADFILEEXA *req;
|
|
|
|
|
2006-12-25 20:33:56 +00:00
|
|
|
workRequest.asyncproc = AsyncInternetReadFileExProc;
|
2005-11-12 19:10:56 +00:00
|
|
|
workRequest.hdr = WININET_AddRef( lpwh );
|
|
|
|
req = &workRequest.u.InternetReadFileExA;
|
|
|
|
req->lpBuffersOut = lpBuffersOut;
|
|
|
|
|
|
|
|
retval = INTERNET_AsyncCall(&workRequest);
|
|
|
|
if (!retval) return FALSE;
|
|
|
|
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_IO_PENDING);
|
2005-11-12 19:10:56 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = INTERNET_ReadFile(lpwh, lpBuffersOut->lpvBuffer,
|
|
|
|
lpBuffersOut->dwBufferLength, &lpBuffersOut->dwBufferLength,
|
|
|
|
!(dwFlags & IRF_NO_WAIT), FALSE);
|
|
|
|
|
|
|
|
WININET_Release( lpwh );
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("-- %s (bytes read: %d)\n", retval ? "TRUE": "FALSE", lpBuffersOut->dwBufferLength);
|
2005-11-12 19:10:56 +00:00
|
|
|
return retval;
|
2002-09-27 22:05:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetReadFileExW (WININET.@)
|
|
|
|
*
|
2005-11-12 19:10:56 +00:00
|
|
|
* Read data from an open internet file.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* hFile [I] Handle returned by InternetOpenUrl() or HttpOpenRequest().
|
|
|
|
* lpBuffersOut [I/O] Buffer.
|
|
|
|
* dwFlags [I] Flags.
|
|
|
|
* dwContext [I] Context for callbacks.
|
2002-09-27 22:05:23 +00:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-12 19:10:56 +00:00
|
|
|
* FALSE, last error is set to ERROR_CALL_NOT_IMPLEMENTED
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Not implemented in Wine or native either (as of IE6 SP2).
|
2002-09-27 22:05:23 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetReadFileExW(HINTERNET hFile, LPINTERNET_BUFFERSW lpBuffer,
|
|
|
|
DWORD dwFlags, DWORD dwContext)
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
ERR("(%p, %p, 0x%x, 0x%x): not implemented in native\n", hFile, lpBuffer, dwFlags, dwContext);
|
2002-09-27 22:05:23 +00:00
|
|
|
|
|
|
|
INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2000-06-11 20:04:44 +00:00
|
|
|
/***********************************************************************
|
2002-12-05 19:54:40 +00:00
|
|
|
* INET_QueryOptionHelper (internal)
|
2000-06-11 20:04:44 +00:00
|
|
|
*/
|
2002-12-05 19:54:40 +00:00
|
|
|
static BOOL INET_QueryOptionHelper(BOOL bIsUnicode, HINTERNET hInternet, DWORD dwOption,
|
|
|
|
LPVOID lpBuffer, LPDWORD lpdwBufferLength)
|
2000-06-11 20:04:44 +00:00
|
|
|
{
|
|
|
|
LPWININETHANDLEHEADER lpwhh;
|
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%p, 0x%08x, %p, %p)\n", hInternet, dwOption, lpBuffer, lpdwBufferLength);
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2004-02-07 01:03:41 +00:00
|
|
|
lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
|
2006-07-03 21:08:11 +00:00
|
|
|
if (!lpwhh)
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
2006-07-03 21:08:11 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2000-06-11 20:04:44 +00:00
|
|
|
|
|
|
|
switch (dwOption)
|
|
|
|
{
|
2002-06-21 23:59:49 +00:00
|
|
|
case INTERNET_OPTION_HANDLE_TYPE:
|
|
|
|
{
|
2004-07-23 23:00:07 +00:00
|
|
|
ULONG type;
|
|
|
|
|
|
|
|
if (!lpwhh)
|
|
|
|
{
|
|
|
|
WARN("Invalid hInternet handle\n");
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_HANDLE);
|
2004-07-23 23:00:07 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
type = lpwhh->htype;
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("INTERNET_OPTION_HANDLE_TYPE: %d\n", type);
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2002-06-21 23:59:49 +00:00
|
|
|
if (*lpdwBufferLength < sizeof(ULONG))
|
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy(lpBuffer, &type, sizeof(ULONG));
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
2005-04-11 14:26:18 +00:00
|
|
|
*lpdwBufferLength = sizeof(ULONG);
|
2002-06-21 23:59:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case INTERNET_OPTION_REQUEST_FLAGS:
|
|
|
|
{
|
|
|
|
ULONG flags = 4;
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("INTERNET_OPTION_REQUEST_FLAGS: %d\n", flags);
|
2002-06-21 23:59:49 +00:00
|
|
|
if (*lpdwBufferLength < sizeof(ULONG))
|
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy(lpBuffer, &flags, sizeof(ULONG));
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
2005-04-11 14:26:18 +00:00
|
|
|
*lpdwBufferLength = sizeof(ULONG);
|
2002-06-21 23:59:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case INTERNET_OPTION_URL:
|
|
|
|
case INTERNET_OPTION_DATAFILE_NAME:
|
|
|
|
{
|
2004-07-23 23:00:07 +00:00
|
|
|
if (!lpwhh)
|
|
|
|
{
|
|
|
|
WARN("Invalid hInternet handle\n");
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_HANDLE);
|
2004-07-23 23:00:07 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (lpwhh->htype == WH_HHTTPREQ)
|
2002-06-21 23:59:49 +00:00
|
|
|
{
|
2004-03-30 04:36:09 +00:00
|
|
|
LPWININETHTTPREQW lpreq = (LPWININETHTTPREQW) lpwhh;
|
|
|
|
WCHAR url[1023];
|
2004-04-19 20:12:14 +00:00
|
|
|
static const WCHAR szFmt[] = {'h','t','t','p',':','/','/','%','s','%','s',0};
|
2005-12-13 16:07:41 +00:00
|
|
|
static const WCHAR szHost[] = {'H','o','s','t',0};
|
2005-04-11 14:26:18 +00:00
|
|
|
DWORD sizeRequired;
|
2005-12-13 16:07:41 +00:00
|
|
|
LPHTTPHEADERW Host;
|
2002-06-21 23:59:49 +00:00
|
|
|
|
2005-12-13 16:07:41 +00:00
|
|
|
Host = HTTP_GetHeader(lpreq,szHost);
|
|
|
|
sprintfW(url,szFmt,Host->lpszValue,lpreq->lpszPath);
|
2004-03-30 04:36:09 +00:00
|
|
|
TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url));
|
2005-04-11 14:26:18 +00:00
|
|
|
if(!bIsUnicode)
|
|
|
|
{
|
|
|
|
sizeRequired = WideCharToMultiByte(CP_ACP,0,url,-1,
|
|
|
|
lpBuffer,*lpdwBufferLength,NULL,NULL);
|
|
|
|
if (sizeRequired > *lpdwBufferLength)
|
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
else
|
|
|
|
bSuccess = TRUE;
|
|
|
|
*lpdwBufferLength = sizeRequired;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sizeRequired = (lstrlenW(url)+1) * sizeof(WCHAR);
|
|
|
|
if (*lpdwBufferLength < sizeRequired)
|
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpyW(lpBuffer, url);
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
|
|
|
*lpdwBufferLength = sizeRequired;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case INTERNET_OPTION_HTTP_VERSION:
|
|
|
|
{
|
|
|
|
if (*lpdwBufferLength < sizeof(HTTP_VERSION_INFO))
|
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Presently hardcoded to 1.1
|
|
|
|
*/
|
|
|
|
((HTTP_VERSION_INFO*)lpBuffer)->dwMajorVersion = 1;
|
|
|
|
((HTTP_VERSION_INFO*)lpBuffer)->dwMinorVersion = 1;
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
|
|
|
*lpdwBufferLength = sizeof(HTTP_VERSION_INFO);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case INTERNET_OPTION_CONNECTED_STATE:
|
|
|
|
{
|
2005-08-03 19:13:27 +00:00
|
|
|
DWORD *pdwConnectedState = (DWORD *)lpBuffer;
|
2005-04-11 14:26:18 +00:00
|
|
|
FIXME("INTERNET_OPTION_CONNECTED_STATE: semi-stub\n");
|
|
|
|
|
2005-08-03 19:13:27 +00:00
|
|
|
if (*lpdwBufferLength < sizeof(*pdwConnectedState))
|
2005-04-11 14:26:18 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
else
|
|
|
|
{
|
2005-08-03 19:13:27 +00:00
|
|
|
*pdwConnectedState = INTERNET_STATE_CONNECTED;
|
2005-04-11 14:26:18 +00:00
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
2005-08-03 19:13:27 +00:00
|
|
|
*lpdwBufferLength = sizeof(*pdwConnectedState);
|
2005-04-11 14:26:18 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case INTERNET_OPTION_PROXY:
|
|
|
|
{
|
|
|
|
LPWININETAPPINFOW lpwai = (LPWININETAPPINFOW)lpwhh;
|
2005-04-14 11:31:39 +00:00
|
|
|
WININETAPPINFOW wai;
|
2005-04-11 14:26:18 +00:00
|
|
|
|
2005-04-14 11:31:39 +00:00
|
|
|
if (lpwai == NULL)
|
2005-04-13 16:11:36 +00:00
|
|
|
{
|
2005-04-14 11:31:39 +00:00
|
|
|
TRACE("Getting global proxy info\n");
|
|
|
|
memset(&wai, 0, sizeof(WININETAPPINFOW));
|
|
|
|
INTERNET_ConfigureProxyFromReg( &wai );
|
|
|
|
lpwai = &wai;
|
2005-04-13 16:11:36 +00:00
|
|
|
}
|
|
|
|
|
2005-04-11 14:26:18 +00:00
|
|
|
if (bIsUnicode)
|
|
|
|
{
|
|
|
|
INTERNET_PROXY_INFOW *pPI = (INTERNET_PROXY_INFOW *)lpBuffer;
|
|
|
|
DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
|
|
|
|
|
|
|
|
if (lpwai->lpszProxy)
|
|
|
|
proxyBytesRequired = (lstrlenW(lpwai->lpszProxy) + 1) *
|
|
|
|
sizeof(WCHAR);
|
|
|
|
if (lpwai->lpszProxyBypass)
|
|
|
|
proxyBypassBytesRequired =
|
|
|
|
(lstrlenW(lpwai->lpszProxyBypass) + 1) * sizeof(WCHAR);
|
|
|
|
if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOW) +
|
|
|
|
proxyBytesRequired + proxyBypassBytesRequired)
|
2002-06-21 23:59:49 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
else
|
|
|
|
{
|
2006-11-21 22:20:41 +00:00
|
|
|
LPWSTR proxy = (LPWSTR)((LPBYTE)lpBuffer +
|
|
|
|
sizeof(INTERNET_PROXY_INFOW));
|
|
|
|
LPWSTR proxy_bypass = (LPWSTR)((LPBYTE)lpBuffer +
|
|
|
|
sizeof(INTERNET_PROXY_INFOW) +
|
|
|
|
proxyBytesRequired);
|
|
|
|
|
2005-04-11 14:26:18 +00:00
|
|
|
pPI->dwAccessType = lpwai->dwAccessType;
|
|
|
|
if (lpwai->lpszProxy)
|
2002-12-05 19:54:40 +00:00
|
|
|
{
|
2006-11-21 22:20:41 +00:00
|
|
|
lstrcpyW(proxy, lpwai->lpszProxy);
|
2002-12-05 19:54:40 +00:00
|
|
|
}
|
|
|
|
else
|
2005-06-05 19:19:43 +00:00
|
|
|
{
|
2006-11-21 22:20:41 +00:00
|
|
|
*proxy = 0;
|
2005-06-05 19:19:43 +00:00
|
|
|
}
|
2006-11-21 22:20:41 +00:00
|
|
|
pPI->lpszProxy = proxy;
|
2005-06-05 19:19:43 +00:00
|
|
|
|
2005-04-11 14:26:18 +00:00
|
|
|
if (lpwai->lpszProxyBypass)
|
2002-12-05 19:54:40 +00:00
|
|
|
{
|
2006-11-21 22:20:41 +00:00
|
|
|
lstrcpyW(proxy_bypass, lpwai->lpszProxyBypass);
|
2005-04-11 14:26:18 +00:00
|
|
|
}
|
|
|
|
else
|
2005-06-05 19:19:43 +00:00
|
|
|
{
|
2006-11-21 22:20:41 +00:00
|
|
|
*proxy_bypass = 0;
|
2005-06-05 19:19:43 +00:00
|
|
|
}
|
2006-11-21 22:20:41 +00:00
|
|
|
pPI->lpszProxyBypass = proxy_bypass;
|
2005-04-11 14:26:18 +00:00
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
|
|
|
*lpdwBufferLength = sizeof(INTERNET_PROXY_INFOW) +
|
|
|
|
proxyBytesRequired + proxyBypassBytesRequired;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
INTERNET_PROXY_INFOA *pPI = (INTERNET_PROXY_INFOA *)lpBuffer;
|
|
|
|
DWORD proxyBytesRequired = 0, proxyBypassBytesRequired = 0;
|
|
|
|
|
|
|
|
if (lpwai->lpszProxy)
|
|
|
|
proxyBytesRequired = WideCharToMultiByte(CP_ACP, 0,
|
|
|
|
lpwai->lpszProxy, -1, NULL, 0, NULL, NULL);
|
|
|
|
if (lpwai->lpszProxyBypass)
|
|
|
|
proxyBypassBytesRequired = WideCharToMultiByte(CP_ACP, 0,
|
|
|
|
lpwai->lpszProxyBypass, -1, NULL, 0, NULL, NULL);
|
|
|
|
if (*lpdwBufferLength < sizeof(INTERNET_PROXY_INFOA) +
|
|
|
|
proxyBytesRequired + proxyBypassBytesRequired)
|
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
else
|
|
|
|
{
|
2006-11-21 22:20:41 +00:00
|
|
|
LPSTR proxy = (LPSTR)((LPBYTE)lpBuffer +
|
|
|
|
sizeof(INTERNET_PROXY_INFOA));
|
|
|
|
LPSTR proxy_bypass = (LPSTR)((LPBYTE)lpBuffer +
|
|
|
|
sizeof(INTERNET_PROXY_INFOA) +
|
|
|
|
proxyBytesRequired);
|
|
|
|
|
2005-04-11 14:26:18 +00:00
|
|
|
pPI->dwAccessType = lpwai->dwAccessType;
|
|
|
|
if (lpwai->lpszProxy)
|
|
|
|
{
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxy, -1,
|
2006-11-21 22:20:41 +00:00
|
|
|
proxy, proxyBytesRequired, NULL, NULL);
|
2002-12-05 19:54:40 +00:00
|
|
|
}
|
2005-04-11 14:26:18 +00:00
|
|
|
else
|
2005-06-05 19:19:43 +00:00
|
|
|
{
|
2006-11-21 22:20:41 +00:00
|
|
|
*proxy = '\0';
|
2005-06-05 19:19:43 +00:00
|
|
|
}
|
2006-11-21 22:20:41 +00:00
|
|
|
pPI->lpszProxy = proxy;
|
|
|
|
|
2005-04-11 14:26:18 +00:00
|
|
|
if (lpwai->lpszProxyBypass)
|
|
|
|
{
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, lpwai->lpszProxyBypass,
|
2006-11-21 22:20:41 +00:00
|
|
|
-1, proxy_bypass, proxyBypassBytesRequired,
|
|
|
|
NULL, NULL);
|
2005-04-11 14:26:18 +00:00
|
|
|
}
|
|
|
|
else
|
2005-06-05 19:19:43 +00:00
|
|
|
{
|
2006-11-21 22:20:41 +00:00
|
|
|
*proxy_bypass = '\0';
|
2005-06-05 19:19:43 +00:00
|
|
|
}
|
2006-11-21 22:20:41 +00:00
|
|
|
pPI->lpszProxyBypass = proxy_bypass;
|
2002-06-21 23:59:49 +00:00
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
2005-04-11 14:26:18 +00:00
|
|
|
*lpdwBufferLength = sizeof(INTERNET_PROXY_INFOA) +
|
|
|
|
proxyBytesRequired + proxyBypassBytesRequired;
|
2002-06-21 23:59:49 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-10-27 18:28:59 +00:00
|
|
|
case INTERNET_OPTION_MAX_CONNS_PER_SERVER:
|
|
|
|
{
|
|
|
|
ULONG conn = 2;
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("INTERNET_OPTION_MAX_CONNS_PER_SERVER: %d\n", conn);
|
2005-10-27 18:28:59 +00:00
|
|
|
if (*lpdwBufferLength < sizeof(ULONG))
|
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy(lpBuffer, &conn, sizeof(ULONG));
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
|
|
|
*lpdwBufferLength = sizeof(ULONG);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER:
|
|
|
|
{
|
|
|
|
ULONG conn = 4;
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("INTERNET_OPTION_MAX_CONNS_1_0_SERVER: %d\n", conn);
|
2005-10-27 18:28:59 +00:00
|
|
|
if (*lpdwBufferLength < sizeof(ULONG))
|
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy(lpBuffer, &conn, sizeof(ULONG));
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
|
|
|
*lpdwBufferLength = sizeof(ULONG);
|
|
|
|
break;
|
|
|
|
}
|
2005-04-11 14:26:18 +00:00
|
|
|
case INTERNET_OPTION_SECURITY_FLAGS:
|
|
|
|
FIXME("INTERNET_OPTION_SECURITY_FLAGS: Stub\n");
|
2004-07-23 23:00:07 +00:00
|
|
|
break;
|
2005-02-08 13:43:09 +00:00
|
|
|
|
2006-01-20 19:16:56 +00:00
|
|
|
case INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT:
|
|
|
|
if (*lpdwBufferLength < sizeof(INTERNET_CERTIFICATE_INFOW))
|
|
|
|
{
|
|
|
|
*lpdwBufferLength = sizeof(INTERNET_CERTIFICATE_INFOW);
|
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
|
|
|
}
|
|
|
|
else if (lpwhh->htype == WH_HHTTPREQ)
|
|
|
|
{
|
|
|
|
LPWININETHTTPREQW lpwhr;
|
|
|
|
PCCERT_CONTEXT context;
|
|
|
|
|
|
|
|
lpwhr = (LPWININETHTTPREQW)lpwhh;
|
|
|
|
context = (PCCERT_CONTEXT)NETCON_GetCert(&(lpwhr->netConnection));
|
|
|
|
if (context)
|
|
|
|
{
|
|
|
|
LPINTERNET_CERTIFICATE_INFOW info = (LPINTERNET_CERTIFICATE_INFOW)lpBuffer;
|
2006-02-16 11:19:00 +00:00
|
|
|
DWORD strLen;
|
|
|
|
|
2006-01-20 19:16:56 +00:00
|
|
|
memset(info,0,sizeof(INTERNET_CERTIFICATE_INFOW));
|
|
|
|
info->ftExpiry = context->pCertInfo->NotAfter;
|
|
|
|
info->ftStart = context->pCertInfo->NotBefore;
|
2006-02-16 11:19:00 +00:00
|
|
|
if (bIsUnicode)
|
|
|
|
{
|
|
|
|
strLen = CertNameToStrW(context->dwCertEncodingType,
|
|
|
|
&context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
|
|
|
|
NULL, 0);
|
|
|
|
info->lpszSubjectInfo = LocalAlloc(0,
|
|
|
|
strLen * sizeof(WCHAR));
|
|
|
|
if (info->lpszSubjectInfo)
|
|
|
|
CertNameToStrW(context->dwCertEncodingType,
|
|
|
|
&context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
|
|
|
|
info->lpszSubjectInfo, strLen);
|
|
|
|
strLen = CertNameToStrW(context->dwCertEncodingType,
|
|
|
|
&context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
|
|
|
|
NULL, 0);
|
|
|
|
info->lpszIssuerInfo = LocalAlloc(0,
|
|
|
|
strLen * sizeof(WCHAR));
|
|
|
|
if (info->lpszIssuerInfo)
|
|
|
|
CertNameToStrW(context->dwCertEncodingType,
|
|
|
|
&context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
|
|
|
|
info->lpszIssuerInfo, strLen);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LPINTERNET_CERTIFICATE_INFOA infoA =
|
|
|
|
(LPINTERNET_CERTIFICATE_INFOA)info;
|
|
|
|
|
|
|
|
strLen = CertNameToStrA(context->dwCertEncodingType,
|
|
|
|
&context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
|
|
|
|
NULL, 0);
|
|
|
|
infoA->lpszSubjectInfo = LocalAlloc(0, strLen);
|
|
|
|
if (infoA->lpszSubjectInfo)
|
|
|
|
CertNameToStrA(context->dwCertEncodingType,
|
|
|
|
&context->pCertInfo->Subject, CERT_SIMPLE_NAME_STR,
|
|
|
|
infoA->lpszSubjectInfo, strLen);
|
|
|
|
strLen = CertNameToStrA(context->dwCertEncodingType,
|
|
|
|
&context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
|
|
|
|
NULL, 0);
|
|
|
|
infoA->lpszIssuerInfo = LocalAlloc(0, strLen);
|
|
|
|
if (infoA->lpszIssuerInfo)
|
|
|
|
CertNameToStrA(context->dwCertEncodingType,
|
|
|
|
&context->pCertInfo->Issuer, CERT_SIMPLE_NAME_STR,
|
|
|
|
infoA->lpszIssuerInfo, strLen);
|
|
|
|
}
|
2006-01-20 19:16:56 +00:00
|
|
|
/*
|
2006-02-16 11:19:00 +00:00
|
|
|
* Contrary to MSDN, these do not appear to be set.
|
2006-01-20 19:16:56 +00:00
|
|
|
* lpszProtocolName
|
|
|
|
* lpszSignatureAlgName
|
|
|
|
* lpszEncryptionAlgName
|
|
|
|
* dwKeySize
|
|
|
|
*/
|
|
|
|
CertFreeCertificateContext(context);
|
|
|
|
bSuccess = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2005-04-11 14:26:18 +00:00
|
|
|
default:
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("Stub! %d\n", dwOption);
|
2005-04-11 14:26:18 +00:00
|
|
|
break;
|
2000-06-11 20:04:44 +00:00
|
|
|
}
|
2004-07-23 23:00:07 +00:00
|
|
|
if (lpwhh)
|
|
|
|
WININET_Release( lpwhh );
|
2000-06-11 20:04:44 +00:00
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
2002-12-05 19:54:40 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* InternetQueryOptionW (WININET.@)
|
|
|
|
*
|
|
|
|
* Queries an options on the specified handle
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetQueryOptionW(HINTERNET hInternet, DWORD dwOption,
|
|
|
|
LPVOID lpBuffer, LPDWORD lpdwBufferLength)
|
|
|
|
{
|
|
|
|
return INET_QueryOptionHelper(TRUE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetQueryOptionA (WININET.@)
|
|
|
|
*
|
|
|
|
* Queries an options on the specified handle
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
|
|
|
|
LPVOID lpBuffer, LPDWORD lpdwBufferLength)
|
|
|
|
{
|
|
|
|
return INET_QueryOptionHelper(FALSE, hInternet, dwOption, lpBuffer, lpdwBufferLength);
|
|
|
|
}
|
|
|
|
|
2000-06-11 20:04:44 +00:00
|
|
|
|
2002-03-11 01:09:25 +00:00
|
|
|
/***********************************************************************
|
2002-03-23 21:39:05 +00:00
|
|
|
* InternetSetOptionW (WININET.@)
|
2002-03-11 01:09:25 +00:00
|
|
|
*
|
|
|
|
* Sets an options on the specified handle
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2002-03-23 21:39:05 +00:00
|
|
|
BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
|
2002-03-11 01:09:25 +00:00
|
|
|
LPVOID lpBuffer, DWORD dwBufferLength)
|
|
|
|
{
|
|
|
|
LPWININETHANDLEHEADER lpwhh;
|
2004-07-19 21:49:39 +00:00
|
|
|
BOOL ret = TRUE;
|
2002-03-11 01:09:25 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("0x%08x\n", dwOption);
|
2002-03-11 01:09:25 +00:00
|
|
|
|
2004-02-07 01:03:41 +00:00
|
|
|
lpwhh = (LPWININETHANDLEHEADER) WININET_GetObject( hInternet );
|
|
|
|
if( !lpwhh )
|
|
|
|
return FALSE;
|
2002-03-11 01:09:25 +00:00
|
|
|
|
|
|
|
switch (dwOption)
|
|
|
|
{
|
2002-12-05 19:54:40 +00:00
|
|
|
case INTERNET_OPTION_HTTP_VERSION:
|
|
|
|
{
|
|
|
|
HTTP_VERSION_INFO* pVersion=(HTTP_VERSION_INFO*)lpBuffer;
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("Option INTERNET_OPTION_HTTP_VERSION(%d,%d): STUB\n",pVersion->dwMajorVersion,pVersion->dwMinorVersion);
|
2002-12-05 19:54:40 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INTERNET_OPTION_ERROR_MASK:
|
|
|
|
{
|
|
|
|
unsigned long flags=*(unsigned long*)lpBuffer;
|
|
|
|
FIXME("Option INTERNET_OPTION_ERROR_MASK(%ld): STUB\n",flags);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INTERNET_OPTION_CODEPAGE:
|
|
|
|
{
|
|
|
|
unsigned long codepage=*(unsigned long*)lpBuffer;
|
|
|
|
FIXME("Option INTERNET_OPTION_CODEPAGE (%ld): STUB\n",codepage);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INTERNET_OPTION_REQUEST_PRIORITY:
|
|
|
|
{
|
|
|
|
unsigned long priority=*(unsigned long*)lpBuffer;
|
|
|
|
FIXME("Option INTERNET_OPTION_REQUEST_PRIORITY (%ld): STUB\n",priority);
|
|
|
|
}
|
|
|
|
break;
|
2003-12-30 19:16:37 +00:00
|
|
|
case INTERNET_OPTION_CONNECT_TIMEOUT:
|
|
|
|
{
|
|
|
|
unsigned long connecttimeout=*(unsigned long*)lpBuffer;
|
|
|
|
FIXME("Option INTERNET_OPTION_CONNECT_TIMEOUT (%ld): STUB\n",connecttimeout);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INTERNET_OPTION_DATA_RECEIVE_TIMEOUT:
|
|
|
|
{
|
|
|
|
unsigned long receivetimeout=*(unsigned long*)lpBuffer;
|
|
|
|
FIXME("Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%ld): STUB\n",receivetimeout);
|
|
|
|
}
|
|
|
|
break;
|
2005-10-27 18:28:59 +00:00
|
|
|
case INTERNET_OPTION_MAX_CONNS_PER_SERVER:
|
|
|
|
{
|
|
|
|
unsigned long conns=*(unsigned long*)lpBuffer;
|
|
|
|
FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_SERVER (%ld): STUB\n",conns);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER:
|
|
|
|
{
|
|
|
|
unsigned long conns=*(unsigned long*)lpBuffer;
|
|
|
|
FIXME("Option INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER (%ld): STUB\n",conns);
|
|
|
|
}
|
|
|
|
break;
|
2003-12-12 06:01:20 +00:00
|
|
|
case INTERNET_OPTION_RESET_URLCACHE_SESSION:
|
|
|
|
FIXME("Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB\n");
|
|
|
|
break;
|
|
|
|
case INTERNET_OPTION_END_BROWSER_SESSION:
|
|
|
|
FIXME("Option INTERNET_OPTION_END_BROWSER_SESSION: STUB\n");
|
|
|
|
break;
|
|
|
|
case INTERNET_OPTION_CONNECTED_STATE:
|
|
|
|
FIXME("Option INTERNET_OPTION_CONNECTED_STATE: STUB\n");
|
|
|
|
break;
|
2005-06-21 20:02:21 +00:00
|
|
|
case INTERNET_OPTION_DISABLE_PASSPORT_AUTH:
|
|
|
|
TRACE("Option INTERNET_OPTION_DISABLE_PASSPORT_AUTH: harmless stub, since not enabled\n");
|
|
|
|
break;
|
2005-06-30 10:13:50 +00:00
|
|
|
case INTERNET_OPTION_SEND_TIMEOUT:
|
2006-03-14 14:36:11 +00:00
|
|
|
case INTERNET_OPTION_RECEIVE_TIMEOUT:
|
|
|
|
TRACE("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT\n");
|
|
|
|
if (dwBufferLength == sizeof(DWORD))
|
|
|
|
{
|
|
|
|
if (lpwhh->htype == WH_HHTTPREQ)
|
|
|
|
ret = NETCON_set_timeout(
|
|
|
|
&((LPWININETHTTPREQW)lpwhh)->netConnection,
|
|
|
|
dwOption == INTERNET_OPTION_SEND_TIMEOUT,
|
|
|
|
*(DWORD *)lpBuffer);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("INTERNET_OPTION_SEND/RECEIVE_TIMEOUT not supported on protocol %d\n",
|
|
|
|
lpwhh->htype);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
2005-06-30 10:13:50 +00:00
|
|
|
break;
|
|
|
|
case INTERNET_OPTION_CONNECT_RETRIES:
|
|
|
|
FIXME("Option INTERNET_OPTION_CONNECT_RETRIES: STUB\n");
|
|
|
|
break;
|
2006-03-06 13:04:47 +00:00
|
|
|
case INTERNET_OPTION_CONTEXT_VALUE:
|
|
|
|
FIXME("Option INTERNET_OPTION_CONTEXT_VALUE; STUB\n");
|
|
|
|
break;
|
2006-08-07 16:35:09 +00:00
|
|
|
case INTERNET_OPTION_SECURITY_FLAGS:
|
|
|
|
FIXME("Option INTERNET_OPTION_SECURITY_FLAGS; STUB\n");
|
|
|
|
break;
|
2002-03-11 01:09:25 +00:00
|
|
|
default:
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("Option %d STUB\n",dwOption);
|
2002-03-11 01:09:25 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
2004-07-19 21:49:39 +00:00
|
|
|
ret = FALSE;
|
|
|
|
break;
|
2002-03-11 01:09:25 +00:00
|
|
|
}
|
2004-07-19 21:49:39 +00:00
|
|
|
WININET_Release( lpwhh );
|
2002-03-11 01:09:25 +00:00
|
|
|
|
2005-06-21 20:02:21 +00:00
|
|
|
return ret;
|
2002-03-11 01:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2002-03-23 21:39:05 +00:00
|
|
|
* InternetSetOptionA (WININET.@)
|
2002-03-11 01:09:25 +00:00
|
|
|
*
|
|
|
|
* Sets an options on the specified handle.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2002-03-23 21:39:05 +00:00
|
|
|
BOOL WINAPI InternetSetOptionA(HINTERNET hInternet, DWORD dwOption,
|
2002-03-11 01:09:25 +00:00
|
|
|
LPVOID lpBuffer, DWORD dwBufferLength)
|
|
|
|
{
|
2003-05-11 02:59:52 +00:00
|
|
|
LPVOID wbuffer;
|
|
|
|
DWORD wlen;
|
|
|
|
BOOL r;
|
|
|
|
|
|
|
|
switch( dwOption )
|
|
|
|
{
|
|
|
|
case INTERNET_OPTION_PROXY:
|
|
|
|
{
|
|
|
|
LPINTERNET_PROXY_INFOA pi = (LPINTERNET_PROXY_INFOA) lpBuffer;
|
|
|
|
LPINTERNET_PROXY_INFOW piw;
|
|
|
|
DWORD proxlen, prbylen;
|
|
|
|
LPWSTR prox, prby;
|
|
|
|
|
|
|
|
proxlen = MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, NULL, 0);
|
|
|
|
prbylen= MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, NULL, 0);
|
2003-06-18 19:45:22 +00:00
|
|
|
wlen = sizeof(*piw) + proxlen + prbylen;
|
2003-07-09 22:15:33 +00:00
|
|
|
wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
|
2003-05-11 02:59:52 +00:00
|
|
|
piw = (LPINTERNET_PROXY_INFOW) wbuffer;
|
|
|
|
piw->dwAccessType = pi->dwAccessType;
|
|
|
|
prox = (LPWSTR) &piw[1];
|
|
|
|
prby = &prox[proxlen+1];
|
|
|
|
MultiByteToWideChar( CP_ACP, 0, pi->lpszProxy, -1, prox, proxlen);
|
|
|
|
MultiByteToWideChar( CP_ACP, 0, pi->lpszProxyBypass, -1, prby, prbylen);
|
|
|
|
piw->lpszProxy = prox;
|
|
|
|
piw->lpszProxyBypass = prby;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INTERNET_OPTION_USER_AGENT:
|
|
|
|
case INTERNET_OPTION_USERNAME:
|
|
|
|
case INTERNET_OPTION_PASSWORD:
|
|
|
|
wlen = MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
|
|
|
|
NULL, 0 );
|
2003-07-09 22:15:33 +00:00
|
|
|
wbuffer = HeapAlloc( GetProcessHeap(), 0, wlen*sizeof(WCHAR) );
|
2003-05-11 02:59:52 +00:00
|
|
|
MultiByteToWideChar( CP_ACP, 0, lpBuffer, dwBufferLength,
|
|
|
|
wbuffer, wlen );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wbuffer = lpBuffer;
|
|
|
|
wlen = dwBufferLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = InternetSetOptionW(hInternet,dwOption, wbuffer, wlen);
|
|
|
|
|
|
|
|
if( lpBuffer != wbuffer )
|
|
|
|
HeapFree( GetProcessHeap(), 0, wbuffer );
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetSetOptionExA (WININET.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetSetOptionExA(HINTERNET hInternet, DWORD dwOption,
|
|
|
|
LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("Flags %08x ignored\n", dwFlags);
|
2003-05-11 02:59:52 +00:00
|
|
|
return InternetSetOptionA( hInternet, dwOption, lpBuffer, dwBufferLength );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetSetOptionExW (WININET.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetSetOptionExW(HINTERNET hInternet, DWORD dwOption,
|
|
|
|
LPVOID lpBuffer, DWORD dwBufferLength, DWORD dwFlags)
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("Flags %08x ignored\n", dwFlags);
|
2003-05-11 02:59:52 +00:00
|
|
|
if( dwFlags & ~ISO_VALID_FLAGS )
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError( ERROR_INVALID_PARAMETER );
|
2003-05-11 02:59:52 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return InternetSetOptionW( hInternet, dwOption, lpBuffer, dwBufferLength );
|
2002-03-11 01:09:25 +00:00
|
|
|
}
|
|
|
|
|
2005-01-18 11:43:40 +00:00
|
|
|
static const WCHAR WININET_wkday[7][4] =
|
|
|
|
{ { 'S','u','n', 0 }, { 'M','o','n', 0 }, { 'T','u','e', 0 }, { 'W','e','d', 0 },
|
|
|
|
{ 'T','h','u', 0 }, { 'F','r','i', 0 }, { 'S','a','t', 0 } };
|
|
|
|
static const WCHAR WININET_month[12][4] =
|
|
|
|
{ { 'J','a','n', 0 }, { 'F','e','b', 0 }, { 'M','a','r', 0 }, { 'A','p','r', 0 },
|
|
|
|
{ 'M','a','y', 0 }, { 'J','u','n', 0 }, { 'J','u','l', 0 }, { 'A','u','g', 0 },
|
|
|
|
{ 'S','e','p', 0 }, { 'O','c','t', 0 }, { 'N','o','v', 0 }, { 'D','e','c', 0 } };
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetTimeFromSystemTimeA (WININET.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetTimeFromSystemTimeA( const SYSTEMTIME* time, DWORD format, LPSTR string, DWORD size )
|
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
WCHAR stringW[INTERNET_RFC1123_BUFSIZE];
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE( "%p 0x%08x %p 0x%08x\n", time, format, string, size );
|
2005-01-18 11:43:40 +00:00
|
|
|
|
|
|
|
ret = InternetTimeFromSystemTimeW( time, format, stringW, sizeof(stringW) );
|
|
|
|
if (ret) WideCharToMultiByte( CP_ACP, 0, stringW, -1, string, size, NULL, NULL );
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetTimeFromSystemTimeW (WININET.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetTimeFromSystemTimeW( const SYSTEMTIME* time, DWORD format, LPWSTR string, DWORD size )
|
|
|
|
{
|
|
|
|
static const WCHAR date[] =
|
|
|
|
{ '%','s',',',' ','%','0','2','d',' ','%','s',' ','%','4','d',' ','%','0',
|
|
|
|
'2','d',':','%','0','2','d',':','%','0','2','d',' ','G','M','T', 0 };
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE( "%p 0x%08x %p 0x%08x\n", time, format, string, size );
|
2005-01-18 11:43:40 +00:00
|
|
|
|
|
|
|
if (!time || !string) return FALSE;
|
|
|
|
|
|
|
|
if (format != INTERNET_RFC1123_FORMAT || size < INTERNET_RFC1123_BUFSIZE * sizeof(WCHAR))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
sprintfW( string, date,
|
|
|
|
WININET_wkday[time->wDayOfWeek],
|
|
|
|
time->wDay,
|
|
|
|
WININET_month[time->wMonth - 1],
|
|
|
|
time->wYear,
|
|
|
|
time->wHour,
|
|
|
|
time->wMinute,
|
|
|
|
time->wSecond );
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetTimeToSystemTimeA (WININET.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetTimeToSystemTimeA( LPCSTR string, SYSTEMTIME* time, DWORD reserved )
|
|
|
|
{
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
WCHAR *stringW;
|
|
|
|
int len;
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE( "%s %p 0x%08x\n", debugstr_a(string), time, reserved );
|
2005-01-18 11:43:40 +00:00
|
|
|
|
|
|
|
len = MultiByteToWideChar( CP_ACP, 0, string, -1, NULL, 0 );
|
|
|
|
stringW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
|
|
|
|
|
|
|
|
if (stringW)
|
|
|
|
{
|
|
|
|
MultiByteToWideChar( CP_ACP, 0, string, -1, stringW, len );
|
|
|
|
ret = InternetTimeToSystemTimeW( stringW, time, reserved );
|
|
|
|
HeapFree( GetProcessHeap(), 0, stringW );
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* InternetTimeToSystemTimeW (WININET.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetTimeToSystemTimeW( LPCWSTR string, SYSTEMTIME* time, DWORD reserved )
|
|
|
|
{
|
|
|
|
unsigned int i;
|
2006-11-21 22:20:41 +00:00
|
|
|
const WCHAR *s = string;
|
|
|
|
WCHAR *end;
|
2005-01-18 11:43:40 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE( "%s %p 0x%08x\n", debugstr_w(string), time, reserved );
|
2005-01-18 11:43:40 +00:00
|
|
|
|
2005-03-17 18:55:41 +00:00
|
|
|
if (!string || !time) return FALSE;
|
|
|
|
|
|
|
|
/* Windows does this too */
|
|
|
|
GetSystemTime( time );
|
2005-01-18 11:43:40 +00:00
|
|
|
|
|
|
|
/* Convert an RFC1123 time such as 'Fri, 07 Jan 2005 12:06:35 GMT' into
|
|
|
|
* a SYSTEMTIME structure.
|
|
|
|
*/
|
|
|
|
|
|
|
|
while (*s && !isalphaW( *s )) s++;
|
2005-03-17 18:55:41 +00:00
|
|
|
if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
|
2005-01-18 11:43:40 +00:00
|
|
|
time->wDayOfWeek = 7;
|
|
|
|
|
|
|
|
for (i = 0; i < 7; i++)
|
|
|
|
{
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
if (toupperW( WININET_wkday[i][0] ) == toupperW( s[0] ) &&
|
|
|
|
toupperW( WININET_wkday[i][1] ) == toupperW( s[1] ) &&
|
|
|
|
toupperW( WININET_wkday[i][2] ) == toupperW( s[2] ) )
|
2005-01-18 11:43:40 +00:00
|
|
|
{
|
|
|
|
time->wDayOfWeek = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-17 18:55:41 +00:00
|
|
|
if (time->wDayOfWeek > 6) return TRUE;
|
2005-01-18 11:43:40 +00:00
|
|
|
while (*s && !isdigitW( *s )) s++;
|
2006-11-21 22:20:41 +00:00
|
|
|
time->wDay = strtolW( s, &end, 10 );
|
|
|
|
s = end;
|
2005-01-18 11:43:40 +00:00
|
|
|
|
|
|
|
while (*s && !isalphaW( *s )) s++;
|
2005-03-17 18:55:41 +00:00
|
|
|
if (s[0] == '\0' || s[1] == '\0' || s[2] == '\0') return TRUE;
|
2005-01-18 11:43:40 +00:00
|
|
|
time->wMonth = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < 12; i++)
|
|
|
|
{
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
if (toupperW( WININET_month[i][0]) == toupperW( s[0] ) &&
|
|
|
|
toupperW( WININET_month[i][1]) == toupperW( s[1] ) &&
|
|
|
|
toupperW( WININET_month[i][2]) == toupperW( s[2] ) )
|
2005-01-18 11:43:40 +00:00
|
|
|
{
|
|
|
|
time->wMonth = i + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-03-17 18:55:41 +00:00
|
|
|
if (time->wMonth == 0) return TRUE;
|
2005-01-18 11:43:40 +00:00
|
|
|
|
|
|
|
while (*s && !isdigitW( *s )) s++;
|
2005-03-17 18:55:41 +00:00
|
|
|
if (*s == '\0') return TRUE;
|
2006-11-21 22:20:41 +00:00
|
|
|
time->wYear = strtolW( s, &end, 10 );
|
|
|
|
s = end;
|
2005-01-18 11:43:40 +00:00
|
|
|
|
|
|
|
while (*s && !isdigitW( *s )) s++;
|
2005-03-17 18:55:41 +00:00
|
|
|
if (*s == '\0') return TRUE;
|
2006-11-21 22:20:41 +00:00
|
|
|
time->wHour = strtolW( s, &end, 10 );
|
|
|
|
s = end;
|
2005-01-18 11:43:40 +00:00
|
|
|
|
|
|
|
while (*s && !isdigitW( *s )) s++;
|
2005-03-17 18:55:41 +00:00
|
|
|
if (*s == '\0') return TRUE;
|
2006-11-21 22:20:41 +00:00
|
|
|
time->wMinute = strtolW( s, &end, 10 );
|
|
|
|
s = end;
|
2005-01-18 11:43:40 +00:00
|
|
|
|
|
|
|
while (*s && !isdigitW( *s )) s++;
|
2005-03-17 18:55:41 +00:00
|
|
|
if (*s == '\0') return TRUE;
|
2006-11-21 22:20:41 +00:00
|
|
|
time->wSecond = strtolW( s, &end, 10 );
|
|
|
|
s = end;
|
2005-01-18 11:43:40 +00:00
|
|
|
|
|
|
|
time->wMilliseconds = 0;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2002-03-11 01:09:25 +00:00
|
|
|
|
2000-08-01 20:53:42 +00:00
|
|
|
/***********************************************************************
|
2005-11-08 16:09:20 +00:00
|
|
|
* InternetCheckConnectionW (WININET.@)
|
2000-08-01 20:53:42 +00:00
|
|
|
*
|
|
|
|
* Pings a requested host to check internet connection
|
|
|
|
*
|
|
|
|
* RETURNS
|
2002-10-28 18:48:24 +00:00
|
|
|
* TRUE on success and FALSE on failure. If a failure then
|
2005-11-08 16:09:20 +00:00
|
|
|
* ERROR_NOT_CONNECTED is placed into GetLastError
|
2000-08-01 20:53:42 +00:00
|
|
|
*
|
|
|
|
*/
|
2005-11-08 16:09:20 +00:00
|
|
|
BOOL WINAPI InternetCheckConnectionW( LPCWSTR lpszUrl, DWORD dwFlags, DWORD dwReserved )
|
2000-08-01 20:53:42 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* this is a kludge which runs the resident ping program and reads the output.
|
|
|
|
*
|
|
|
|
* Anyone have a better idea?
|
|
|
|
*/
|
|
|
|
|
|
|
|
BOOL rc = FALSE;
|
2007-02-28 20:04:58 +00:00
|
|
|
static const CHAR ping[] = "ping -c 1 ";
|
2005-11-08 16:09:20 +00:00
|
|
|
static const CHAR redirect[] = " >/dev/null 2>/dev/null";
|
|
|
|
CHAR *command = NULL;
|
|
|
|
WCHAR hostW[1024];
|
|
|
|
DWORD len;
|
2000-08-01 20:53:42 +00:00
|
|
|
int status = -1;
|
|
|
|
|
2002-06-21 23:59:49 +00:00
|
|
|
FIXME("\n");
|
|
|
|
|
2002-05-31 23:06:46 +00:00
|
|
|
/*
|
2000-08-01 20:53:42 +00:00
|
|
|
* Crack or set the Address
|
|
|
|
*/
|
|
|
|
if (lpszUrl == NULL)
|
|
|
|
{
|
2002-05-31 23:06:46 +00:00
|
|
|
/*
|
2000-08-01 20:53:42 +00:00
|
|
|
* According to the doc we are supost to use the ip for the next
|
2002-05-31 23:06:46 +00:00
|
|
|
* server in the WnInet internal server database. I have
|
2000-08-01 20:53:42 +00:00
|
|
|
* no idea what that is or how to get it.
|
|
|
|
*
|
|
|
|
* So someone needs to implement this.
|
|
|
|
*/
|
2001-05-09 17:31:31 +00:00
|
|
|
FIXME("Unimplemented with URL of NULL\n");
|
2000-08-01 20:53:42 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-11-08 16:09:20 +00:00
|
|
|
URL_COMPONENTSW components;
|
2000-08-01 20:53:42 +00:00
|
|
|
|
2005-11-08 16:09:20 +00:00
|
|
|
ZeroMemory(&components,sizeof(URL_COMPONENTSW));
|
|
|
|
components.lpszHostName = (LPWSTR)&hostW;
|
2005-01-18 11:43:40 +00:00
|
|
|
components.dwHostNameLength = 1024;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2005-11-08 16:09:20 +00:00
|
|
|
if (!InternetCrackUrlW(lpszUrl,0,0,&components))
|
2000-08-01 20:53:42 +00:00
|
|
|
goto End;
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2005-11-08 16:09:20 +00:00
|
|
|
TRACE("host name : %s\n",debugstr_w(components.lpszHostName));
|
2000-08-01 20:53:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Build our ping command
|
|
|
|
*/
|
2005-11-08 16:09:20 +00:00
|
|
|
len = WideCharToMultiByte(CP_UNIXCP, 0, hostW, -1, NULL, 0, NULL, NULL);
|
|
|
|
command = HeapAlloc( GetProcessHeap(), 0, strlen(ping)+len+strlen(redirect) );
|
|
|
|
strcpy(command,ping);
|
|
|
|
WideCharToMultiByte(CP_UNIXCP, 0, hostW, -1, command+strlen(ping), len, NULL, NULL);
|
|
|
|
strcat(command,redirect);
|
2000-08-01 20:53:42 +00:00
|
|
|
|
|
|
|
TRACE("Ping command is : %s\n",command);
|
|
|
|
|
|
|
|
status = system(command);
|
|
|
|
|
2005-11-08 16:09:20 +00:00
|
|
|
TRACE("Ping returned a code of %i\n",status);
|
2002-05-31 23:06:46 +00:00
|
|
|
|
|
|
|
/* Ping return code of 0 indicates success */
|
2000-08-01 20:53:42 +00:00
|
|
|
if (status == 0)
|
|
|
|
rc = TRUE;
|
|
|
|
|
|
|
|
End:
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2005-11-08 16:09:20 +00:00
|
|
|
HeapFree( GetProcessHeap(), 0, command );
|
2000-08-01 20:53:42 +00:00
|
|
|
if (rc == FALSE)
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_NOT_CONNECTED);
|
2000-08-01 20:53:42 +00:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2002-10-28 18:48:24 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
2005-11-08 16:09:20 +00:00
|
|
|
* InternetCheckConnectionA (WININET.@)
|
2002-10-28 18:48:24 +00:00
|
|
|
*
|
|
|
|
* Pings a requested host to check internet connection
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success and FALSE on failure. If a failure then
|
|
|
|
* ERROR_NOT_CONNECTED is placed into GetLastError
|
|
|
|
*
|
|
|
|
*/
|
2005-11-08 16:09:20 +00:00
|
|
|
BOOL WINAPI InternetCheckConnectionA(LPCSTR lpszUrl, DWORD dwFlags, DWORD dwReserved)
|
2002-10-28 18:48:24 +00:00
|
|
|
{
|
2005-11-08 16:09:20 +00:00
|
|
|
WCHAR *szUrl;
|
2002-10-28 18:48:24 +00:00
|
|
|
INT len;
|
|
|
|
BOOL rc;
|
|
|
|
|
2005-11-08 16:09:20 +00:00
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0);
|
|
|
|
if (!(szUrl = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR))))
|
2002-10-28 18:48:24 +00:00
|
|
|
return FALSE;
|
2005-11-08 16:09:20 +00:00
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, len);
|
|
|
|
rc = InternetCheckConnectionW(szUrl, dwFlags, dwReserved);
|
2003-06-20 23:26:56 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, szUrl);
|
2002-10-28 18:48:24 +00:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-20 00:56:49 +00:00
|
|
|
/**********************************************************
|
2004-05-10 19:59:05 +00:00
|
|
|
* INTERNET_InternetOpenUrlW (internal)
|
2002-03-20 00:56:49 +00:00
|
|
|
*
|
|
|
|
* Opens an URL
|
2002-05-31 23:06:46 +00:00
|
|
|
*
|
2002-03-20 00:56:49 +00:00
|
|
|
* RETURNS
|
|
|
|
* handle of connection or NULL on failure
|
|
|
|
*/
|
2004-07-19 21:49:39 +00:00
|
|
|
HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl,
|
2004-03-30 04:36:09 +00:00
|
|
|
LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
|
2002-03-20 00:56:49 +00:00
|
|
|
{
|
2004-03-30 04:36:09 +00:00
|
|
|
URL_COMPONENTSW urlComponents;
|
|
|
|
WCHAR protocol[32], hostName[MAXHOSTNAME], userName[1024];
|
|
|
|
WCHAR password[1024], path[2048], extra[1024];
|
2004-02-09 21:45:38 +00:00
|
|
|
HINTERNET client = NULL, client1 = NULL;
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%p, %s, %s, %08x, %08x, %08x)\n", hIC, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
|
2004-02-09 21:45:38 +00:00
|
|
|
dwHeadersLength, dwFlags, dwContext);
|
|
|
|
|
2004-03-30 04:36:09 +00:00
|
|
|
urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
|
2004-02-09 21:45:38 +00:00
|
|
|
urlComponents.lpszScheme = protocol;
|
|
|
|
urlComponents.dwSchemeLength = 32;
|
|
|
|
urlComponents.lpszHostName = hostName;
|
|
|
|
urlComponents.dwHostNameLength = MAXHOSTNAME;
|
|
|
|
urlComponents.lpszUserName = userName;
|
|
|
|
urlComponents.dwUserNameLength = 1024;
|
|
|
|
urlComponents.lpszPassword = password;
|
|
|
|
urlComponents.dwPasswordLength = 1024;
|
|
|
|
urlComponents.lpszUrlPath = path;
|
|
|
|
urlComponents.dwUrlPathLength = 2048;
|
|
|
|
urlComponents.lpszExtraInfo = extra;
|
|
|
|
urlComponents.dwExtraInfoLength = 1024;
|
2004-03-30 04:36:09 +00:00
|
|
|
if(!InternetCrackUrlW(lpszUrl, strlenW(lpszUrl), 0, &urlComponents))
|
2004-02-09 21:45:38 +00:00
|
|
|
return NULL;
|
|
|
|
switch(urlComponents.nScheme) {
|
|
|
|
case INTERNET_SCHEME_FTP:
|
|
|
|
if(urlComponents.nPort == 0)
|
|
|
|
urlComponents.nPort = INTERNET_DEFAULT_FTP_PORT;
|
2004-07-19 21:49:39 +00:00
|
|
|
client = FTP_Connect(hIC, hostName, urlComponents.nPort,
|
2004-05-13 05:17:25 +00:00
|
|
|
userName, password, dwFlags, dwContext, INET_OPENURL);
|
2004-05-25 04:02:05 +00:00
|
|
|
if(client == NULL)
|
|
|
|
break;
|
2004-03-30 04:36:09 +00:00
|
|
|
client1 = FtpOpenFileW(client, path, GENERIC_READ, dwFlags, dwContext);
|
2004-05-25 04:02:05 +00:00
|
|
|
if(client1 == NULL) {
|
|
|
|
InternetCloseHandle(client);
|
|
|
|
break;
|
|
|
|
}
|
2004-02-09 21:45:38 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case INTERNET_SCHEME_HTTP:
|
|
|
|
case INTERNET_SCHEME_HTTPS: {
|
2004-04-19 20:12:14 +00:00
|
|
|
static const WCHAR szStars[] = { '*','/','*', 0 };
|
2004-03-30 04:36:09 +00:00
|
|
|
LPCWSTR accept[2] = { szStars, NULL };
|
2004-02-09 21:45:38 +00:00
|
|
|
if(urlComponents.nPort == 0) {
|
|
|
|
if(urlComponents.nScheme == INTERNET_SCHEME_HTTP)
|
|
|
|
urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
|
|
|
|
else
|
|
|
|
urlComponents.nPort = INTERNET_DEFAULT_HTTPS_PORT;
|
|
|
|
}
|
2004-07-19 21:49:39 +00:00
|
|
|
/* FIXME: should use pointers, not handles, as handles are not thread-safe */
|
|
|
|
client = HTTP_Connect(hIC, hostName, urlComponents.nPort,
|
2004-05-13 05:17:25 +00:00
|
|
|
userName, password, dwFlags, dwContext, INET_OPENURL);
|
2004-02-09 21:45:38 +00:00
|
|
|
if(client == NULL)
|
|
|
|
break;
|
2007-02-19 10:08:52 +00:00
|
|
|
|
|
|
|
if (urlComponents.dwExtraInfoLength) {
|
|
|
|
WCHAR *path_extra;
|
2007-03-13 11:42:53 +00:00
|
|
|
DWORD len = urlComponents.dwUrlPathLength + urlComponents.dwExtraInfoLength + 1;
|
2007-02-19 10:08:52 +00:00
|
|
|
|
2007-03-13 11:42:53 +00:00
|
|
|
if (!(path_extra = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR))))
|
2007-02-19 10:08:52 +00:00
|
|
|
{
|
|
|
|
InternetCloseHandle(client);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
strcpyW(path_extra, urlComponents.lpszUrlPath);
|
|
|
|
strcatW(path_extra, urlComponents.lpszExtraInfo);
|
|
|
|
client1 = HttpOpenRequestW(client, NULL, path_extra, NULL, NULL, accept, dwFlags, dwContext);
|
|
|
|
HeapFree(GetProcessHeap(), 0, path_extra);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
client1 = HttpOpenRequestW(client, NULL, path, NULL, NULL, accept, dwFlags, dwContext);
|
|
|
|
|
2004-02-09 21:45:38 +00:00
|
|
|
if(client1 == NULL) {
|
|
|
|
InternetCloseHandle(client);
|
|
|
|
break;
|
|
|
|
}
|
2004-03-30 04:36:09 +00:00
|
|
|
HttpAddRequestHeadersW(client1, lpszHeaders, dwHeadersLength, HTTP_ADDREQ_FLAG_ADD);
|
2006-10-18 19:22:21 +00:00
|
|
|
if (!HttpSendRequestW(client1, NULL, 0, NULL, 0) &&
|
|
|
|
GetLastError() != ERROR_IO_PENDING) {
|
2004-02-09 21:45:38 +00:00
|
|
|
InternetCloseHandle(client1);
|
|
|
|
client1 = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2002-03-20 00:56:49 +00:00
|
|
|
}
|
2004-02-09 21:45:38 +00:00
|
|
|
case INTERNET_SCHEME_GOPHER:
|
|
|
|
/* gopher doesn't seem to be implemented in wine, but it's supposed
|
|
|
|
* to be supported by InternetOpenUrlA. */
|
|
|
|
default:
|
2006-05-15 13:02:34 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_UNRECOGNIZED_SCHEME);
|
2004-02-09 21:45:38 +00:00
|
|
|
break;
|
2002-03-20 00:56:49 +00:00
|
|
|
}
|
2004-02-09 21:45:38 +00:00
|
|
|
|
|
|
|
TRACE(" %p <--\n", client1);
|
|
|
|
|
2002-03-20 00:56:49 +00:00
|
|
|
return client1;
|
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2004-02-09 21:45:38 +00:00
|
|
|
/**********************************************************
|
2004-05-10 19:59:05 +00:00
|
|
|
* InternetOpenUrlW (WININET.@)
|
2004-02-09 21:45:38 +00:00
|
|
|
*
|
|
|
|
* Opens an URL
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* handle of connection or NULL on failure
|
|
|
|
*/
|
2006-12-25 20:33:49 +00:00
|
|
|
static void AsyncInternetOpenUrlProc(WORKREQUEST *workRequest)
|
|
|
|
{
|
|
|
|
struct WORKREQ_INTERNETOPENURLW const *req = &workRequest->u.InternetOpenUrlW;
|
|
|
|
LPWININETAPPINFOW hIC = (LPWININETAPPINFOW) workRequest->hdr;
|
|
|
|
|
|
|
|
TRACE("%p\n", hIC);
|
|
|
|
|
|
|
|
INTERNET_InternetOpenUrlW(hIC, req->lpszUrl,
|
|
|
|
req->lpszHeaders, req->dwHeadersLength, req->dwFlags, req->dwContext);
|
|
|
|
HeapFree(GetProcessHeap(), 0, req->lpszUrl);
|
|
|
|
HeapFree(GetProcessHeap(), 0, req->lpszHeaders);
|
|
|
|
}
|
|
|
|
|
2004-03-30 04:36:09 +00:00
|
|
|
HINTERNET WINAPI InternetOpenUrlW(HINTERNET hInternet, LPCWSTR lpszUrl,
|
|
|
|
LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
|
2004-02-09 21:45:38 +00:00
|
|
|
{
|
|
|
|
HINTERNET ret = NULL;
|
2004-03-25 05:29:47 +00:00
|
|
|
LPWININETAPPINFOW hIC = NULL;
|
2004-02-09 21:45:38 +00:00
|
|
|
|
2004-12-23 11:18:29 +00:00
|
|
|
if (TRACE_ON(wininet)) {
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%p, %s, %s, %08x, %08x, %08x)\n", hInternet, debugstr_w(lpszUrl), debugstr_w(lpszHeaders),
|
2004-12-23 11:18:29 +00:00
|
|
|
dwHeadersLength, dwFlags, dwContext);
|
|
|
|
TRACE(" flags :");
|
|
|
|
dump_INTERNET_FLAGS(dwFlags);
|
|
|
|
}
|
|
|
|
|
2006-05-15 13:02:34 +00:00
|
|
|
if (!lpszUrl)
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
2006-05-15 13:02:34 +00:00
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
|
2004-03-25 05:29:47 +00:00
|
|
|
hIC = (LPWININETAPPINFOW) WININET_GetObject( hInternet );
|
2004-02-09 21:45:38 +00:00
|
|
|
if (NULL == hIC || hIC->hdr.htype != WH_HINIT) {
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC) {
|
|
|
|
WORKREQUEST workRequest;
|
2004-03-30 04:36:09 +00:00
|
|
|
struct WORKREQ_INTERNETOPENURLW *req;
|
2006-12-25 20:33:49 +00:00
|
|
|
|
|
|
|
workRequest.asyncproc = AsyncInternetOpenUrlProc;
|
2004-07-19 21:49:39 +00:00
|
|
|
workRequest.hdr = WININET_AddRef( &hIC->hdr );
|
2004-03-30 04:36:09 +00:00
|
|
|
req = &workRequest.u.InternetOpenUrlW;
|
2006-06-02 10:48:49 +00:00
|
|
|
req->lpszUrl = WININET_strdupW(lpszUrl);
|
2004-02-09 21:45:38 +00:00
|
|
|
if (lpszHeaders)
|
2004-03-30 04:36:09 +00:00
|
|
|
req->lpszHeaders = WININET_strdupW(lpszHeaders);
|
2004-02-09 21:45:38 +00:00
|
|
|
else
|
|
|
|
req->lpszHeaders = 0;
|
|
|
|
req->dwHeadersLength = dwHeadersLength;
|
|
|
|
req->dwFlags = dwFlags;
|
|
|
|
req->dwContext = dwContext;
|
|
|
|
|
|
|
|
INTERNET_AsyncCall(&workRequest);
|
|
|
|
/*
|
|
|
|
* This is from windows.
|
|
|
|
*/
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_IO_PENDING);
|
2004-02-09 21:45:38 +00:00
|
|
|
} else {
|
2004-07-19 21:49:39 +00:00
|
|
|
ret = INTERNET_InternetOpenUrlW(hIC, lpszUrl, lpszHeaders, dwHeadersLength, dwFlags, dwContext);
|
2004-02-09 21:45:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
2004-07-19 21:49:39 +00:00
|
|
|
if( hIC )
|
|
|
|
WININET_Release( &hIC->hdr );
|
2004-02-09 21:45:38 +00:00
|
|
|
TRACE(" %p <--\n", ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2002-10-28 18:48:24 +00:00
|
|
|
/**********************************************************
|
2004-05-10 19:59:05 +00:00
|
|
|
* InternetOpenUrlA (WININET.@)
|
2002-10-28 18:48:24 +00:00
|
|
|
*
|
|
|
|
* Opens an URL
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* handle of connection or NULL on failure
|
|
|
|
*/
|
2004-03-30 04:36:09 +00:00
|
|
|
HINTERNET WINAPI InternetOpenUrlA(HINTERNET hInternet, LPCSTR lpszUrl,
|
|
|
|
LPCSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD dwContext)
|
2002-10-28 18:48:24 +00:00
|
|
|
{
|
|
|
|
HINTERNET rc = (HINTERNET)NULL;
|
|
|
|
|
2004-05-10 19:59:05 +00:00
|
|
|
INT lenUrl;
|
|
|
|
INT lenHeaders = 0;
|
|
|
|
LPWSTR szUrl = NULL;
|
|
|
|
LPWSTR szHeaders = NULL;
|
2002-10-28 18:48:24 +00:00
|
|
|
|
2003-12-12 06:01:20 +00:00
|
|
|
TRACE("\n");
|
|
|
|
|
2004-05-10 19:59:05 +00:00
|
|
|
if(lpszUrl) {
|
|
|
|
lenUrl = MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, NULL, 0 );
|
|
|
|
szUrl = HeapAlloc(GetProcessHeap(), 0, lenUrl*sizeof(WCHAR));
|
|
|
|
if(!szUrl)
|
|
|
|
return (HINTERNET)NULL;
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpszUrl, -1, szUrl, lenUrl);
|
2002-10-28 18:48:24 +00:00
|
|
|
}
|
2004-05-10 19:59:05 +00:00
|
|
|
|
|
|
|
if(lpszHeaders) {
|
|
|
|
lenHeaders = MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, NULL, 0 );
|
|
|
|
szHeaders = HeapAlloc(GetProcessHeap(), 0, lenHeaders*sizeof(WCHAR));
|
|
|
|
if(!szHeaders) {
|
2004-12-21 14:42:35 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, szUrl);
|
2004-05-10 19:59:05 +00:00
|
|
|
return (HINTERNET)NULL;
|
|
|
|
}
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpszHeaders, dwHeadersLength, szHeaders, lenHeaders);
|
|
|
|
}
|
|
|
|
|
2004-03-30 04:36:09 +00:00
|
|
|
rc = InternetOpenUrlW(hInternet, szUrl, szHeaders,
|
2004-05-10 19:59:05 +00:00
|
|
|
lenHeaders, dwFlags, dwContext);
|
2002-10-28 18:48:24 +00:00
|
|
|
|
2004-12-21 14:42:35 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, szUrl);
|
|
|
|
HeapFree(GetProcessHeap(), 0, szHeaders);
|
2002-10-28 18:48:24 +00:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-04-26 14:44:14 +00:00
|
|
|
static LPWITHREADERROR INTERNET_AllocThreadError(void)
|
|
|
|
{
|
|
|
|
LPWITHREADERROR lpwite = HeapAlloc(GetProcessHeap(), 0, sizeof(*lpwite));
|
|
|
|
|
|
|
|
if (lpwite)
|
|
|
|
{
|
|
|
|
lpwite->dwError = 0;
|
|
|
|
lpwite->response[0] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!TlsSetValue(g_dwTlsErrIndex, lpwite))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpwite);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return lpwite;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* INTERNET_SetLastError (internal)
|
|
|
|
*
|
|
|
|
* Set last thread specific error
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void INTERNET_SetLastError(DWORD dwError)
|
|
|
|
{
|
|
|
|
LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
|
|
|
|
|
2006-04-20 10:46:38 +00:00
|
|
|
if (!lpwite)
|
2006-04-26 14:44:14 +00:00
|
|
|
lpwite = INTERNET_AllocThreadError();
|
2006-04-20 10:46:38 +00:00
|
|
|
|
2000-04-11 20:07:00 +00:00
|
|
|
SetLastError(dwError);
|
2002-12-05 19:54:40 +00:00
|
|
|
if(lpwite)
|
|
|
|
lpwite->dwError = dwError;
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* INTERNET_GetLastError (internal)
|
|
|
|
*
|
|
|
|
* Get last thread specific error
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
*
|
|
|
|
*/
|
2004-11-29 18:00:10 +00:00
|
|
|
DWORD INTERNET_GetLastError(void)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
|
|
|
LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
|
2006-04-20 10:46:38 +00:00
|
|
|
if (!lpwite) return 0;
|
2005-12-03 17:10:14 +00:00
|
|
|
/* TlsGetValue clears last error, so set it again here */
|
|
|
|
SetLastError(lpwite->dwError);
|
2000-04-11 20:07:00 +00:00
|
|
|
return lpwite->dwError;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* INTERNET_WorkerThreadFunc (internal)
|
|
|
|
*
|
|
|
|
* Worker thread execution function
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
*
|
|
|
|
*/
|
2005-11-15 18:12:42 +00:00
|
|
|
static DWORD CALLBACK INTERNET_WorkerThreadFunc(LPVOID lpvParam)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
2007-01-04 18:26:31 +00:00
|
|
|
LPWORKREQUEST lpRequest = lpvParam;
|
|
|
|
WORKREQUEST workRequest;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2007-01-04 18:26:31 +00:00
|
|
|
memcpy(&workRequest, lpRequest, sizeof(WORKREQUEST));
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpRequest);
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2007-01-04 18:26:31 +00:00
|
|
|
workRequest.asyncproc(&workRequest);
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2007-01-04 18:26:31 +00:00
|
|
|
WININET_Release( workRequest.hdr );
|
|
|
|
return TRUE;
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* INTERNET_AsyncCall (internal)
|
|
|
|
*
|
|
|
|
* Retrieves work request from queue
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest)
|
|
|
|
{
|
2007-01-04 18:26:31 +00:00
|
|
|
BOOL bSuccess;
|
|
|
|
LPWORKREQUEST lpNewRequest;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2007-01-04 18:26:31 +00:00
|
|
|
lpNewRequest = HeapAlloc(GetProcessHeap(), 0, sizeof(WORKREQUEST));
|
|
|
|
if (!lpNewRequest)
|
|
|
|
return FALSE;
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2007-01-04 18:26:31 +00:00
|
|
|
memcpy(lpNewRequest, lpWorkRequest, sizeof(WORKREQUEST));
|
2000-04-11 20:07:00 +00:00
|
|
|
|
2007-01-04 18:26:31 +00:00
|
|
|
bSuccess = QueueUserWorkItem(INTERNET_WorkerThreadFunc, lpNewRequest, WT_EXECUTELONGFUNCTION);
|
|
|
|
if (!bSuccess)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, lpNewRequest);
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_ASYNC_THREAD_FAILED);
|
2000-04-11 20:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2005-11-23 19:14:04 +00:00
|
|
|
* INTERNET_GetResponseBuffer (internal)
|
2000-04-11 20:07:00 +00:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
*
|
|
|
|
*/
|
2004-11-29 18:00:10 +00:00
|
|
|
LPSTR INTERNET_GetResponseBuffer(void)
|
2000-04-11 20:07:00 +00:00
|
|
|
{
|
|
|
|
LPWITHREADERROR lpwite = (LPWITHREADERROR)TlsGetValue(g_dwTlsErrIndex);
|
2006-04-20 10:46:38 +00:00
|
|
|
if (!lpwite)
|
2006-04-26 14:44:14 +00:00
|
|
|
lpwite = INTERNET_AllocThreadError();
|
2002-06-21 23:59:49 +00:00
|
|
|
TRACE("\n");
|
2000-04-11 20:07:00 +00:00
|
|
|
return lpwite->response;
|
|
|
|
}
|
2000-06-11 20:04:44 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* INTERNET_GetNextLine (internal)
|
|
|
|
*
|
|
|
|
* Parse next line in directory string listing
|
|
|
|
*
|
|
|
|
* RETURNS
|
2001-10-22 19:04:32 +00:00
|
|
|
* Pointer to beginning of next line
|
2000-06-11 20:04:44 +00:00
|
|
|
* NULL on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2004-05-25 04:02:05 +00:00
|
|
|
LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen)
|
2000-06-11 20:04:44 +00:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
fd_set infd;
|
|
|
|
BOOL bSuccess = FALSE;
|
|
|
|
INT nRecv = 0;
|
2004-05-25 04:02:05 +00:00
|
|
|
LPSTR lpszBuffer = INTERNET_GetResponseBuffer();
|
2000-06-11 20:04:44 +00:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
FD_ZERO(&infd);
|
|
|
|
FD_SET(nSocket, &infd);
|
|
|
|
tv.tv_sec=RESPONSE_TIMEOUT;
|
|
|
|
tv.tv_usec=0;
|
|
|
|
|
2004-05-25 04:02:05 +00:00
|
|
|
while (nRecv < MAX_REPLY_LEN)
|
2000-06-11 20:04:44 +00:00
|
|
|
{
|
|
|
|
if (select(nSocket+1,&infd,NULL,NULL,&tv) > 0)
|
|
|
|
{
|
|
|
|
if (recv(nSocket, &lpszBuffer[nRecv], 1, 0) <= 0)
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_FTP_TRANSFER_IN_PROGRESS);
|
|
|
|
goto lend;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lpszBuffer[nRecv] == '\n')
|
|
|
|
{
|
|
|
|
bSuccess = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (lpszBuffer[nRecv] != '\r')
|
|
|
|
nRecv++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT);
|
|
|
|
goto lend;
|
2001-09-11 00:32:32 +00:00
|
|
|
}
|
2000-06-11 20:04:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lend:
|
|
|
|
if (bSuccess)
|
|
|
|
{
|
|
|
|
lpszBuffer[nRecv] = '\0';
|
2004-05-25 04:02:05 +00:00
|
|
|
*dwLen = nRecv - 1;
|
2000-06-11 20:04:44 +00:00
|
|
|
TRACE(":%d %s\n", nRecv, lpszBuffer);
|
|
|
|
return lpszBuffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2002-06-21 23:59:49 +00:00
|
|
|
|
2005-07-15 09:56:34 +00:00
|
|
|
/**********************************************************
|
|
|
|
* InternetQueryDataAvailable (WININET.@)
|
|
|
|
*
|
|
|
|
* Determines how much data is available to be read.
|
2002-06-21 23:59:49 +00:00
|
|
|
*
|
2005-07-15 09:56:34 +00:00
|
|
|
* RETURNS
|
|
|
|
* If there is data available then TRUE, otherwise if there
|
|
|
|
* is not or an error occurred then FALSE. Use GetLastError() to
|
|
|
|
* check for ERROR_NO_MORE_FILES to see if it was the former.
|
2002-06-21 23:59:49 +00:00
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetQueryDataAvailable( HINTERNET hFile,
|
|
|
|
LPDWORD lpdwNumberOfBytesAvailble,
|
|
|
|
DWORD dwFlags, DWORD dwConext)
|
|
|
|
{
|
2004-03-30 04:36:09 +00:00
|
|
|
LPWININETHTTPREQW lpwhr;
|
2005-07-15 09:56:34 +00:00
|
|
|
BOOL retval = FALSE;
|
2003-06-20 23:26:56 +00:00
|
|
|
char buffer[4048];
|
2002-06-21 23:59:49 +00:00
|
|
|
|
2004-03-30 04:36:09 +00:00
|
|
|
lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hFile );
|
2002-06-21 23:59:49 +00:00
|
|
|
if (NULL == lpwhr)
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_NO_MORE_FILES);
|
2002-06-21 23:59:49 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-06-20 23:26:56 +00:00
|
|
|
TRACE("--> %p %i\n",lpwhr,lpwhr->hdr.htype);
|
2002-06-21 23:59:49 +00:00
|
|
|
|
|
|
|
switch (lpwhr->hdr.htype)
|
|
|
|
{
|
2003-06-20 23:26:56 +00:00
|
|
|
case WH_HHTTPREQ:
|
2004-02-07 01:03:41 +00:00
|
|
|
if (!NETCON_recv(&lpwhr->netConnection, buffer,
|
2007-01-04 18:21:49 +00:00
|
|
|
min(sizeof(buffer), lpwhr->dwContentLength - lpwhr->dwContentRead),
|
|
|
|
MSG_PEEK, (int *)lpdwNumberOfBytesAvailble))
|
2003-06-20 23:26:56 +00:00
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_NO_MORE_FILES);
|
2003-06-20 23:26:56 +00:00
|
|
|
retval = FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
retval = TRUE;
|
|
|
|
break;
|
2002-06-21 23:59:49 +00:00
|
|
|
|
2003-06-20 23:26:56 +00:00
|
|
|
default:
|
2003-07-02 04:37:26 +00:00
|
|
|
FIXME("unsupported file type\n");
|
2003-06-20 23:26:56 +00:00
|
|
|
break;
|
2002-06-21 23:59:49 +00:00
|
|
|
}
|
2004-07-19 21:49:39 +00:00
|
|
|
WININET_Release( &lpwhr->hdr );
|
2002-06-21 23:59:49 +00:00
|
|
|
|
|
|
|
TRACE("<-- %i\n",retval);
|
2005-07-15 09:56:34 +00:00
|
|
|
return retval;
|
2002-06-21 23:59:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2005-11-23 19:14:04 +00:00
|
|
|
* InternetLockRequestFile (WININET.@)
|
2002-06-21 23:59:49 +00:00
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetLockRequestFile( HINTERNET hInternet, HANDLE
|
|
|
|
*lphLockReqHandle)
|
|
|
|
{
|
|
|
|
FIXME("STUB\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
|
|
|
|
{
|
|
|
|
FIXME("STUB\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-07-22 20:34:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2005-11-23 19:14:04 +00:00
|
|
|
* InternetAutodial (WININET.@)
|
2002-07-22 20:34:41 +00:00
|
|
|
*
|
|
|
|
* On windows this function is supposed to dial the default internet
|
|
|
|
* connection. We don't want to have Wine dial out to the internet so
|
|
|
|
* we return TRUE by default. It might be nice to check if we are connected.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
2003-01-28 00:17:15 +00:00
|
|
|
BOOL WINAPI InternetAutodial(DWORD dwFlags, HWND hwndParent)
|
2002-07-22 20:34:41 +00:00
|
|
|
{
|
|
|
|
FIXME("STUB\n");
|
|
|
|
|
|
|
|
/* Tell that we are connected to the internet. */
|
|
|
|
return TRUE;
|
|
|
|
}
|
2002-10-28 18:48:24 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
2005-11-23 19:14:04 +00:00
|
|
|
* InternetAutodialHangup (WININET.@)
|
2002-10-28 18:48:24 +00:00
|
|
|
*
|
2005-03-30 17:08:31 +00:00
|
|
|
* Hangs up a connection made with InternetAutodial
|
2002-10-28 18:48:24 +00:00
|
|
|
*
|
|
|
|
* PARAM
|
|
|
|
* dwReserved
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetAutodialHangup(DWORD dwReserved)
|
|
|
|
{
|
|
|
|
FIXME("STUB\n");
|
|
|
|
|
|
|
|
/* we didn't dial, we don't disconnect */
|
|
|
|
return TRUE;
|
|
|
|
}
|
2002-12-05 19:54:40 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
2005-11-23 19:14:04 +00:00
|
|
|
* InternetCombineUrlA (WININET.@)
|
2002-12-05 19:54:40 +00:00
|
|
|
*
|
|
|
|
* Combine a base URL with a relative URL
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
BOOL WINAPI InternetCombineUrlA(LPCSTR lpszBaseUrl, LPCSTR lpszRelativeUrl,
|
|
|
|
LPSTR lpszBuffer, LPDWORD lpdwBufferLength,
|
|
|
|
DWORD dwFlags)
|
|
|
|
{
|
|
|
|
HRESULT hr=S_OK;
|
2003-12-12 06:01:20 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_a(lpszBaseUrl), debugstr_a(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
|
2003-12-12 06:01:20 +00:00
|
|
|
|
2002-12-05 19:54:40 +00:00
|
|
|
/* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
|
|
|
|
dwFlags ^= ICU_NO_ENCODE;
|
|
|
|
hr=UrlCombineA(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
|
|
|
|
|
|
|
|
return (hr==S_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2005-11-23 19:14:04 +00:00
|
|
|
* InternetCombineUrlW (WININET.@)
|
2002-12-05 19:54:40 +00:00
|
|
|
*
|
|
|
|
* Combine a base URL with a relative URL
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
BOOL WINAPI InternetCombineUrlW(LPCWSTR lpszBaseUrl, LPCWSTR lpszRelativeUrl,
|
|
|
|
LPWSTR lpszBuffer, LPDWORD lpdwBufferLength,
|
|
|
|
DWORD dwFlags)
|
|
|
|
{
|
|
|
|
HRESULT hr=S_OK;
|
2003-12-12 06:01:20 +00:00
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%s, %s, %p, %p, 0x%08x)\n", debugstr_w(lpszBaseUrl), debugstr_w(lpszRelativeUrl), lpszBuffer, lpdwBufferLength, dwFlags);
|
2003-12-12 06:01:20 +00:00
|
|
|
|
2002-12-05 19:54:40 +00:00
|
|
|
/* Flip this bit to correspond to URL_ESCAPE_UNSAFE */
|
|
|
|
dwFlags ^= ICU_NO_ENCODE;
|
|
|
|
hr=UrlCombineW(lpszBaseUrl,lpszRelativeUrl,lpszBuffer,lpdwBufferLength,dwFlags);
|
|
|
|
|
|
|
|
return (hr==S_OK);
|
|
|
|
}
|
2003-07-19 03:08:05 +00:00
|
|
|
|
2005-10-31 14:06:35 +00:00
|
|
|
/* max port num is 65535 => 5 digits */
|
|
|
|
#define MAX_WORD_DIGITS 5
|
|
|
|
|
2006-03-06 17:31:56 +00:00
|
|
|
#define URL_GET_COMP_LENGTH(url, component) ((url)->dw##component##Length ? \
|
|
|
|
(url)->dw##component##Length : strlenW((url)->lpsz##component))
|
|
|
|
#define URL_GET_COMP_LENGTHA(url, component) ((url)->dw##component##Length ? \
|
|
|
|
(url)->dw##component##Length : strlen((url)->lpsz##component))
|
|
|
|
|
2006-03-09 15:16:41 +00:00
|
|
|
static BOOL url_uses_default_port(INTERNET_SCHEME nScheme, INTERNET_PORT nPort)
|
2006-03-06 17:31:56 +00:00
|
|
|
{
|
2006-03-09 15:16:41 +00:00
|
|
|
if ((nScheme == INTERNET_SCHEME_HTTP) &&
|
|
|
|
(nPort == INTERNET_DEFAULT_HTTP_PORT))
|
2006-03-06 17:31:56 +00:00
|
|
|
return TRUE;
|
2006-03-09 15:16:41 +00:00
|
|
|
if ((nScheme == INTERNET_SCHEME_HTTPS) &&
|
|
|
|
(nPort == INTERNET_DEFAULT_HTTPS_PORT))
|
2006-03-06 17:31:56 +00:00
|
|
|
return TRUE;
|
2006-03-09 15:16:41 +00:00
|
|
|
if ((nScheme == INTERNET_SCHEME_FTP) &&
|
|
|
|
(nPort == INTERNET_DEFAULT_FTP_PORT))
|
2006-03-06 17:31:56 +00:00
|
|
|
return TRUE;
|
2006-03-09 15:16:41 +00:00
|
|
|
if ((nScheme == INTERNET_SCHEME_GOPHER) &&
|
|
|
|
(nPort == INTERNET_DEFAULT_GOPHER_PORT))
|
2006-03-06 17:31:56 +00:00
|
|
|
return TRUE;
|
|
|
|
|
2006-03-09 15:17:49 +00:00
|
|
|
if (nPort == INTERNET_INVALID_PORT_NUMBER)
|
|
|
|
return TRUE;
|
|
|
|
|
2006-03-06 17:31:56 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-03-09 15:17:49 +00:00
|
|
|
/* opaque urls do not fit into the standard url hierarchy and don't have
|
|
|
|
* two following slashes */
|
|
|
|
static inline BOOL scheme_is_opaque(INTERNET_SCHEME nScheme)
|
|
|
|
{
|
|
|
|
return (nScheme != INTERNET_SCHEME_FTP) &&
|
|
|
|
(nScheme != INTERNET_SCHEME_GOPHER) &&
|
|
|
|
(nScheme != INTERNET_SCHEME_HTTP) &&
|
|
|
|
(nScheme != INTERNET_SCHEME_HTTPS) &&
|
|
|
|
(nScheme != INTERNET_SCHEME_FILE);
|
|
|
|
}
|
|
|
|
|
2006-03-09 15:15:45 +00:00
|
|
|
static LPCWSTR INTERNET_GetSchemeString(INTERNET_SCHEME scheme)
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
if (scheme < INTERNET_SCHEME_FIRST)
|
|
|
|
return NULL;
|
|
|
|
index = scheme - INTERNET_SCHEME_FIRST;
|
|
|
|
if (index >= sizeof(url_schemes)/sizeof(url_schemes[0]))
|
|
|
|
return NULL;
|
|
|
|
return (LPCWSTR)&url_schemes[index];
|
|
|
|
}
|
|
|
|
|
2005-10-31 14:06:35 +00:00
|
|
|
/* we can calculate using ansi strings because we're just
|
|
|
|
* calculating string length, not size
|
|
|
|
*/
|
|
|
|
static BOOL calc_url_length(LPURL_COMPONENTSW lpUrlComponents,
|
2006-03-06 17:31:56 +00:00
|
|
|
LPDWORD lpdwUrlLength)
|
2005-10-31 14:06:35 +00:00
|
|
|
{
|
2006-03-09 15:16:41 +00:00
|
|
|
INTERNET_SCHEME nScheme;
|
|
|
|
|
2005-10-31 14:06:35 +00:00
|
|
|
*lpdwUrlLength = 0;
|
|
|
|
|
2006-03-09 15:15:45 +00:00
|
|
|
if (lpUrlComponents->lpszScheme)
|
2006-03-09 15:16:41 +00:00
|
|
|
{
|
|
|
|
DWORD dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Scheme);
|
|
|
|
*lpdwUrlLength += dwLen;
|
|
|
|
nScheme = GetInternetSchemeW(lpUrlComponents->lpszScheme, dwLen);
|
|
|
|
}
|
2006-03-09 15:15:45 +00:00
|
|
|
else
|
|
|
|
{
|
2006-03-09 15:16:41 +00:00
|
|
|
LPCWSTR scheme;
|
|
|
|
|
|
|
|
nScheme = lpUrlComponents->nScheme;
|
|
|
|
|
|
|
|
if (nScheme == INTERNET_SCHEME_DEFAULT)
|
|
|
|
nScheme = INTERNET_SCHEME_HTTP;
|
|
|
|
scheme = INTERNET_GetSchemeString(nScheme);
|
2006-03-09 15:15:45 +00:00
|
|
|
*lpdwUrlLength += strlenW(scheme);
|
|
|
|
}
|
|
|
|
|
2006-03-09 15:17:49 +00:00
|
|
|
(*lpdwUrlLength)++; /* ':' */
|
|
|
|
if (!scheme_is_opaque(nScheme) || lpUrlComponents->lpszHostName)
|
|
|
|
*lpdwUrlLength += strlen("//");
|
2005-10-31 14:06:35 +00:00
|
|
|
|
|
|
|
if (lpUrlComponents->lpszUserName)
|
|
|
|
{
|
2006-03-06 17:31:56 +00:00
|
|
|
*lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, UserName);
|
2005-10-31 14:06:35 +00:00
|
|
|
*lpdwUrlLength += strlen("@");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (lpUrlComponents->lpszPassword)
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
2005-10-31 14:06:35 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lpUrlComponents->lpszPassword)
|
|
|
|
{
|
|
|
|
*lpdwUrlLength += strlen(":");
|
2006-03-06 17:31:56 +00:00
|
|
|
*lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, Password);
|
2005-10-31 14:06:35 +00:00
|
|
|
}
|
|
|
|
|
2006-03-09 15:15:00 +00:00
|
|
|
if (lpUrlComponents->lpszHostName)
|
2006-03-09 15:18:24 +00:00
|
|
|
{
|
2006-03-09 15:15:00 +00:00
|
|
|
*lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, HostName);
|
2006-03-09 15:19:15 +00:00
|
|
|
|
|
|
|
if (!url_uses_default_port(nScheme, lpUrlComponents->nPort))
|
|
|
|
{
|
2006-03-09 15:19:46 +00:00
|
|
|
char szPort[MAX_WORD_DIGITS+1];
|
2006-03-09 15:19:15 +00:00
|
|
|
|
|
|
|
sprintf(szPort, "%d", lpUrlComponents->nPort);
|
|
|
|
*lpdwUrlLength += strlen(szPort);
|
|
|
|
*lpdwUrlLength += strlen(":");
|
|
|
|
}
|
|
|
|
|
2006-03-09 15:18:24 +00:00
|
|
|
if (lpUrlComponents->lpszUrlPath && *lpUrlComponents->lpszUrlPath != '/')
|
|
|
|
(*lpdwUrlLength)++; /* '/' */
|
|
|
|
}
|
2005-10-31 14:06:35 +00:00
|
|
|
|
2006-03-09 15:19:15 +00:00
|
|
|
if (lpUrlComponents->lpszUrlPath)
|
|
|
|
*lpdwUrlLength += URL_GET_COMP_LENGTH(lpUrlComponents, UrlPath);
|
2005-10-31 14:06:35 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void convert_urlcomp_atow(LPURL_COMPONENTSA lpUrlComponents, LPURL_COMPONENTSW urlCompW)
|
|
|
|
{
|
|
|
|
INT len;
|
|
|
|
|
|
|
|
ZeroMemory(urlCompW, sizeof(URL_COMPONENTSW));
|
|
|
|
|
|
|
|
urlCompW->dwStructSize = sizeof(URL_COMPONENTSW);
|
|
|
|
urlCompW->dwSchemeLength = lpUrlComponents->dwSchemeLength;
|
|
|
|
urlCompW->nScheme = lpUrlComponents->nScheme;
|
|
|
|
urlCompW->dwHostNameLength = lpUrlComponents->dwHostNameLength;
|
|
|
|
urlCompW->nPort = lpUrlComponents->nPort;
|
|
|
|
urlCompW->dwUserNameLength = lpUrlComponents->dwUserNameLength;
|
|
|
|
urlCompW->dwPasswordLength = lpUrlComponents->dwPasswordLength;
|
|
|
|
urlCompW->dwUrlPathLength = lpUrlComponents->dwUrlPathLength;
|
|
|
|
urlCompW->dwExtraInfoLength = lpUrlComponents->dwExtraInfoLength;
|
|
|
|
|
|
|
|
if (lpUrlComponents->lpszScheme)
|
|
|
|
{
|
2006-03-06 17:31:56 +00:00
|
|
|
len = URL_GET_COMP_LENGTHA(lpUrlComponents, Scheme) + 1;
|
2005-10-31 14:06:35 +00:00
|
|
|
urlCompW->lpszScheme = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszScheme,
|
|
|
|
-1, urlCompW->lpszScheme, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lpUrlComponents->lpszHostName)
|
|
|
|
{
|
2006-03-06 17:31:56 +00:00
|
|
|
len = URL_GET_COMP_LENGTHA(lpUrlComponents, HostName) + 1;
|
2005-10-31 14:06:35 +00:00
|
|
|
urlCompW->lpszHostName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszHostName,
|
|
|
|
-1, urlCompW->lpszHostName, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lpUrlComponents->lpszUserName)
|
|
|
|
{
|
2006-03-06 17:31:56 +00:00
|
|
|
len = URL_GET_COMP_LENGTHA(lpUrlComponents, UserName) + 1;
|
2005-10-31 14:06:35 +00:00
|
|
|
urlCompW->lpszUserName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszUserName,
|
|
|
|
-1, urlCompW->lpszUserName, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lpUrlComponents->lpszPassword)
|
|
|
|
{
|
2006-03-06 17:31:56 +00:00
|
|
|
len = URL_GET_COMP_LENGTHA(lpUrlComponents, Password) + 1;
|
2005-10-31 14:06:35 +00:00
|
|
|
urlCompW->lpszPassword = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszPassword,
|
|
|
|
-1, urlCompW->lpszPassword, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lpUrlComponents->lpszUrlPath)
|
|
|
|
{
|
2006-03-06 17:31:56 +00:00
|
|
|
len = URL_GET_COMP_LENGTHA(lpUrlComponents, UrlPath) + 1;
|
2005-10-31 14:06:35 +00:00
|
|
|
urlCompW->lpszUrlPath = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszUrlPath,
|
|
|
|
-1, urlCompW->lpszUrlPath, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lpUrlComponents->lpszExtraInfo)
|
|
|
|
{
|
2006-03-06 17:31:56 +00:00
|
|
|
len = URL_GET_COMP_LENGTHA(lpUrlComponents, ExtraInfo) + 1;
|
2005-10-31 14:06:35 +00:00
|
|
|
urlCompW->lpszExtraInfo = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpUrlComponents->lpszExtraInfo,
|
|
|
|
-1, urlCompW->lpszExtraInfo, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-08 21:07:23 +00:00
|
|
|
/***********************************************************************
|
2005-11-23 19:14:04 +00:00
|
|
|
* InternetCreateUrlA (WININET.@)
|
2003-08-08 21:07:23 +00:00
|
|
|
*
|
2006-03-21 13:44:36 +00:00
|
|
|
* See InternetCreateUrlW.
|
2003-08-08 21:07:23 +00:00
|
|
|
*/
|
2003-07-19 03:08:05 +00:00
|
|
|
BOOL WINAPI InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents, DWORD dwFlags,
|
|
|
|
LPSTR lpszUrl, LPDWORD lpdwUrlLength)
|
|
|
|
{
|
2005-10-31 14:06:35 +00:00
|
|
|
BOOL ret;
|
|
|
|
LPWSTR urlW = NULL;
|
|
|
|
URL_COMPONENTSW urlCompW;
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
|
2005-10-31 14:06:35 +00:00
|
|
|
|
|
|
|
if (!lpUrlComponents)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSW) || !lpdwUrlLength)
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
2005-10-31 14:06:35 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_urlcomp_atow(lpUrlComponents, &urlCompW);
|
|
|
|
|
|
|
|
if (lpszUrl)
|
|
|
|
urlW = HeapAlloc(GetProcessHeap(), 0, *lpdwUrlLength * sizeof(WCHAR));
|
|
|
|
|
|
|
|
ret = InternetCreateUrlW(&urlCompW, dwFlags, urlW, lpdwUrlLength);
|
|
|
|
|
2006-03-21 13:44:36 +00:00
|
|
|
if (!ret && (GetLastError() == ERROR_INSUFFICIENT_BUFFER))
|
|
|
|
*lpdwUrlLength /= sizeof(WCHAR);
|
|
|
|
|
2005-10-31 14:06:35 +00:00
|
|
|
/* on success, lpdwUrlLength points to the size of urlW in WCHARS
|
|
|
|
* minus one, so add one to leave room for NULL terminator
|
|
|
|
*/
|
|
|
|
if (ret)
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, urlW, -1, lpszUrl, *lpdwUrlLength + 1, NULL, NULL);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, urlCompW.lpszScheme);
|
|
|
|
HeapFree(GetProcessHeap(), 0, urlCompW.lpszHostName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, urlCompW.lpszUserName);
|
|
|
|
HeapFree(GetProcessHeap(), 0, urlCompW.lpszPassword);
|
|
|
|
HeapFree(GetProcessHeap(), 0, urlCompW.lpszUrlPath);
|
|
|
|
HeapFree(GetProcessHeap(), 0, urlCompW.lpszExtraInfo);
|
|
|
|
HeapFree(GetProcessHeap(), 0, urlW);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2005-11-23 19:14:04 +00:00
|
|
|
* InternetCreateUrlW (WININET.@)
|
2005-10-31 14:06:35 +00:00
|
|
|
*
|
2006-03-21 13:44:36 +00:00
|
|
|
* Creates a URL from its component parts.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* lpUrlComponents [I] URL Components.
|
|
|
|
* dwFlags [I] Flags. See notes.
|
|
|
|
* lpszUrl [I] Buffer in which to store the created URL.
|
|
|
|
* lpdwUrlLength [I/O] On input, the length of the buffer pointed to by
|
|
|
|
* lpszUrl in characters. On output, the number of bytes
|
|
|
|
* required to store the URL including terminator.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
*
|
|
|
|
* The dwFlags parameter can be zero or more of the following:
|
|
|
|
*|ICU_ESCAPE - Generates escape sequences for unsafe characters in the path and extra info of the URL.
|
|
|
|
*
|
2005-10-31 14:06:35 +00:00
|
|
|
* RETURNS
|
|
|
|
* TRUE on success
|
|
|
|
* FALSE on failure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
|
|
|
|
LPWSTR lpszUrl, LPDWORD lpdwUrlLength)
|
|
|
|
{
|
2006-03-06 17:31:56 +00:00
|
|
|
DWORD dwLen;
|
2006-03-09 15:16:41 +00:00
|
|
|
INTERNET_SCHEME nScheme;
|
2005-10-31 14:06:35 +00:00
|
|
|
|
2006-03-09 15:17:49 +00:00
|
|
|
static const WCHAR slashSlashW[] = {'/','/'};
|
2005-10-31 14:06:35 +00:00
|
|
|
static const WCHAR percentD[] = {'%','d',0};
|
|
|
|
|
2006-10-05 11:18:56 +00:00
|
|
|
TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
|
2005-10-31 14:06:35 +00:00
|
|
|
|
|
|
|
if (!lpUrlComponents)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (lpUrlComponents->dwStructSize != sizeof(URL_COMPONENTSW) || !lpdwUrlLength)
|
|
|
|
{
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
2005-10-31 14:06:35 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-03-06 17:31:56 +00:00
|
|
|
if (!calc_url_length(lpUrlComponents, &dwLen))
|
2005-10-31 14:06:35 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!lpszUrl || *lpdwUrlLength < dwLen)
|
|
|
|
{
|
2006-03-21 13:44:36 +00:00
|
|
|
*lpdwUrlLength = (dwLen + 1) * sizeof(WCHAR);
|
2007-01-09 11:30:45 +00:00
|
|
|
INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
|
2005-10-31 14:06:35 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*lpdwUrlLength = dwLen;
|
|
|
|
lpszUrl[0] = 0x00;
|
|
|
|
|
2006-03-06 17:31:56 +00:00
|
|
|
dwLen = 0;
|
|
|
|
|
2005-10-31 14:06:35 +00:00
|
|
|
if (lpUrlComponents->lpszScheme)
|
2006-03-06 17:31:56 +00:00
|
|
|
{
|
|
|
|
dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Scheme);
|
|
|
|
memcpy(lpszUrl, lpUrlComponents->lpszScheme, dwLen * sizeof(WCHAR));
|
|
|
|
lpszUrl += dwLen;
|
2006-03-09 15:16:41 +00:00
|
|
|
|
|
|
|
nScheme = GetInternetSchemeW(lpUrlComponents->lpszScheme, dwLen);
|
2006-03-06 17:31:56 +00:00
|
|
|
}
|
2006-03-09 15:15:45 +00:00
|
|
|
else
|
|
|
|
{
|
2006-03-09 15:16:41 +00:00
|
|
|
LPCWSTR scheme;
|
|
|
|
nScheme = lpUrlComponents->nScheme;
|
|
|
|
|
|
|
|
if (nScheme == INTERNET_SCHEME_DEFAULT)
|
|
|
|
nScheme = INTERNET_SCHEME_HTTP;
|
|
|
|
|
|
|
|
scheme = INTERNET_GetSchemeString(nScheme);
|
2006-03-09 15:15:45 +00:00
|
|
|
dwLen = strlenW(scheme);
|
|
|
|
memcpy(lpszUrl, scheme, dwLen * sizeof(WCHAR));
|
|
|
|
lpszUrl += dwLen;
|
|
|
|
}
|
2005-10-31 14:06:35 +00:00
|
|
|
|
2006-03-09 15:17:49 +00:00
|
|
|
/* all schemes are followed by at least a colon */
|
|
|
|
*lpszUrl = ':';
|
|
|
|
lpszUrl++;
|
|
|
|
|
|
|
|
if (!scheme_is_opaque(nScheme) || lpUrlComponents->lpszHostName)
|
|
|
|
{
|
|
|
|
memcpy(lpszUrl, slashSlashW, sizeof(slashSlashW));
|
|
|
|
lpszUrl += sizeof(slashSlashW)/sizeof(slashSlashW[0]);
|
|
|
|
}
|
2005-10-31 14:06:35 +00:00
|
|
|
|
|
|
|
if (lpUrlComponents->lpszUserName)
|
|
|
|
{
|
2006-03-06 17:31:56 +00:00
|
|
|
dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, UserName);
|
|
|
|
memcpy(lpszUrl, lpUrlComponents->lpszUserName, dwLen * sizeof(WCHAR));
|
|
|
|
lpszUrl += dwLen;
|
2005-10-31 14:06:35 +00:00
|
|
|
|
|
|
|
if (lpUrlComponents->lpszPassword)
|
|
|
|
{
|
2006-03-06 17:31:56 +00:00
|
|
|
*lpszUrl = ':';
|
|
|
|
lpszUrl++;
|
2005-10-31 14:06:35 +00:00
|
|
|
|
2006-03-06 17:31:56 +00:00
|
|
|
dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, Password);
|
|
|
|
memcpy(lpszUrl, lpUrlComponents->lpszPassword, dwLen * sizeof(WCHAR));
|
|
|
|
lpszUrl += dwLen;
|
2005-10-31 14:06:35 +00:00
|
|
|
}
|
|
|
|
|
2006-03-06 17:31:56 +00:00
|
|
|
*lpszUrl = '@';
|
|
|
|
lpszUrl++;
|
2005-10-31 14:06:35 +00:00
|
|
|
}
|
|
|
|
|
2006-03-09 15:15:00 +00:00
|
|
|
if (lpUrlComponents->lpszHostName)
|
|
|
|
{
|
|
|
|
dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, HostName);
|
|
|
|
memcpy(lpszUrl, lpUrlComponents->lpszHostName, dwLen * sizeof(WCHAR));
|
|
|
|
lpszUrl += dwLen;
|
2006-03-09 15:18:24 +00:00
|
|
|
|
2006-03-09 15:19:15 +00:00
|
|
|
if (!url_uses_default_port(nScheme, lpUrlComponents->nPort))
|
|
|
|
{
|
2006-03-09 15:19:46 +00:00
|
|
|
WCHAR szPort[MAX_WORD_DIGITS+1];
|
2006-03-09 15:19:15 +00:00
|
|
|
|
|
|
|
sprintfW(szPort, percentD, lpUrlComponents->nPort);
|
|
|
|
*lpszUrl = ':';
|
|
|
|
lpszUrl++;
|
|
|
|
dwLen = strlenW(szPort);
|
|
|
|
memcpy(lpszUrl, szPort, dwLen * sizeof(WCHAR));
|
|
|
|
lpszUrl += dwLen;
|
|
|
|
}
|
|
|
|
|
2006-03-09 15:18:24 +00:00
|
|
|
/* add slash between hostname and path if necessary */
|
|
|
|
if (lpUrlComponents->lpszUrlPath && *lpUrlComponents->lpszUrlPath != '/')
|
|
|
|
{
|
|
|
|
*lpszUrl = '/';
|
|
|
|
lpszUrl++;
|
|
|
|
}
|
2006-03-09 15:15:00 +00:00
|
|
|
}
|
2005-10-31 14:06:35 +00:00
|
|
|
|
|
|
|
|
2006-03-09 15:19:15 +00:00
|
|
|
if (lpUrlComponents->lpszUrlPath)
|
|
|
|
{
|
|
|
|
dwLen = URL_GET_COMP_LENGTH(lpUrlComponents, UrlPath);
|
|
|
|
memcpy(lpszUrl, lpUrlComponents->lpszUrlPath, dwLen * sizeof(WCHAR));
|
2006-03-06 17:31:56 +00:00
|
|
|
lpszUrl += dwLen;
|
2005-10-31 14:06:35 +00:00
|
|
|
}
|
|
|
|
|
2006-03-06 17:31:56 +00:00
|
|
|
*lpszUrl = '\0';
|
2005-10-31 14:06:35 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2003-07-19 03:08:05 +00:00
|
|
|
}
|
|
|
|
|
2005-11-23 19:14:04 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* InternetConfirmZoneCrossingA (WININET.@)
|
|
|
|
*
|
|
|
|
*/
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
DWORD WINAPI InternetConfirmZoneCrossingA( HWND hWnd, LPSTR szUrlPrev, LPSTR szUrlNew, BOOL bPost )
|
|
|
|
{
|
|
|
|
FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_a(szUrlPrev), debugstr_a(szUrlNew), bPost);
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2005-11-23 19:14:04 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* InternetConfirmZoneCrossingW (WININET.@)
|
|
|
|
*
|
|
|
|
*/
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
DWORD WINAPI InternetConfirmZoneCrossingW( HWND hWnd, LPWSTR szUrlPrev, LPWSTR szUrlNew, BOOL bPost )
|
|
|
|
{
|
|
|
|
FIXME("(%p, %s, %s, %x) stub\n", hWnd, debugstr_w(szUrlPrev), debugstr_w(szUrlNew), bPost);
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI InternetDialA( HWND hwndParent, LPSTR lpszConnectoid, DWORD dwFlags,
|
|
|
|
LPDWORD lpdwConnection, DWORD dwReserved )
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent, lpszConnectoid, dwFlags,
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
lpdwConnection, dwReserved);
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI InternetDialW( HWND hwndParent, LPWSTR lpszConnectoid, DWORD dwFlags,
|
|
|
|
LPDWORD lpdwConnection, DWORD dwReserved )
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("(%p, %p, 0x%08x, %p, 0x%08x) stub\n", hwndParent, lpszConnectoid, dwFlags,
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
lpdwConnection, dwReserved);
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI InternetGoOnlineA( LPSTR lpszURL, HWND hwndParent, DWORD dwReserved )
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("(%s, %p, 0x%08x) stub\n", debugstr_a(lpszURL), hwndParent, dwReserved);
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI InternetGoOnlineW( LPWSTR lpszURL, HWND hwndParent, DWORD dwReserved )
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("(%s, %p, 0x%08x) stub\n", debugstr_w(lpszURL), hwndParent, dwReserved);
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI InternetHangUp( DWORD dwConnection, DWORD dwReserved )
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("(0x%08x, 0x%08x) stub\n", dwConnection, dwReserved);
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI CreateMD5SSOHash( PWSTR pszChallengeInfo, PWSTR pwszRealm, PWSTR pwszTarget,
|
|
|
|
PBYTE pbHexHash )
|
|
|
|
{
|
|
|
|
FIXME("(%s, %s, %s, %p) stub\n", debugstr_w(pszChallengeInfo), debugstr_w(pwszRealm),
|
|
|
|
debugstr_w(pwszTarget), pbHexHash);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI ResumeSuspendedDownload( HINTERNET hInternet, DWORD dwError )
|
|
|
|
{
|
2006-10-05 11:18:56 +00:00
|
|
|
FIXME("(%p, 0x%08x) stub\n", hInternet, dwError);
|
- Stub implementations for FtpGetFileSize, FtpCommand{A,W},
HttpSendRequestExW, InternetGetLastResponseInfoW,
InternetConfirmZoneCrossing{A,W}, InternetDial{A,W},
InternetGoOnline{A,W}, InternetHangUp, CreateMD5SSOHash,
InternetClearAllPerSiteCookieDecisions,
InternetEnumPerSiteCookieDecision{A,W}, InternetGetCookieEx{A,W},
InternetGetPerSiteCookieDecision{A,W},
InternetSetPerSiteCookieDecision{A,W}, InternetSetCookieEx{A,W},
ResumeSuspendedDownload, RetrieveUrlCacheEntryFileW,
UnlockUrlCacheEntryFileW, {Create,Delete}UrlCacheEntryW,
CommitUrlCacheEntryW, RetrieveUrlCacheEntryStreamW,
FindCloseUrlCache, FindFirstUrlCacheEntryEx{A,W},
FindFirstUrlCacheGroup, FindNextUrlCacheEntry{,Ex}{A,W},
FindNextUrlCacheGroup, SetUrlCacheEntryGroup{A,W},
{Get,Set}UrlCacheGroupAttribute{A,W}, SetUrlCacheConfigInfo{A,W}.
- Spec file stubs for new undocumented functions
ForceNexusLookup{,ExW}, Ftp{Get,Put}FileEx, HttpCheckDavCompliance,
InternetAlgIdToString{A,W}, InternetFortezzaCommand,
InternetGetCertByURLA, InternetQueryFortezzaStatus,
InternetSecurityProtocolToString{A,W}, InternetSetDialState{A,W},
InternetShowSecurityInfoByURL{A,W}, IsUrlCacheEntryExpired{A,W},
Privacy{Get,Set}ZonePreferenceW, RegisterUrlCacheNotification,
UrlZonesDetach.
- Use memcpy instead of strncpy in InternetGetLastResponseInfoA.
- Add and improve some traces.
- Fix my own coding style in InternetTimeToSystemTimeW.
- Fix a couple of signedness warnings.
2005-02-01 18:50:53 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|