2 * Wininet - Http Implementation
4 * Copyright 1999 Corel Corporation
5 * Copyright 2002 CodeWeavers Inc.
6 * Copyright 2002 TransGaming Technologies Inc.
7 * Copyright 2004 Mike McCormack for CodeWeavers
13 * This library is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU Lesser General Public
15 * License as published by the Free Software Foundation; either
16 * version 2.1 of the License, or (at your option) any later version.
18 * This library is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * Lesser General Public License for more details.
23 * You should have received a copy of the GNU Lesser General Public
24 * License along with this library; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include "wine/port.h"
31 #include <sys/types.h>
32 #ifdef HAVE_SYS_SOCKET_H
33 # include <sys/socket.h>
51 #define NO_SHLWAPI_STREAM
55 #include "wine/debug.h"
56 #include "wine/unicode.h"
58 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
60 static const WCHAR g_szHttp[] = {' ','H','T','T','P','/','1','.','0',0 };
61 static const WCHAR g_szReferer[] = {'R','e','f','e','r','e','r',0};
62 static const WCHAR g_szAccept[] = {'A','c','c','e','p','t',0};
63 static const WCHAR g_szUserAgent[] = {'U','s','e','r','-','A','g','e','n','t',0};
64 static const WCHAR g_szHost[] = {'H','o','s','t',0};
67 #define HTTPHEADER g_szHttp
68 #define MAXHOSTNAME 100
69 #define MAX_FIELD_VALUE_LEN 256
70 #define MAX_FIELD_LEN 256
72 #define HTTP_REFERER g_szReferer
73 #define HTTP_ACCEPT g_szAccept
74 #define HTTP_USERAGENT g_szUserAgent
76 #define HTTP_ADDHDR_FLAG_ADD 0x20000000
77 #define HTTP_ADDHDR_FLAG_ADD_IF_NEW 0x10000000
78 #define HTTP_ADDHDR_FLAG_COALESCE 0x40000000
79 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA 0x40000000
80 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON 0x01000000
81 #define HTTP_ADDHDR_FLAG_REPLACE 0x80000000
82 #define HTTP_ADDHDR_FLAG_REQ 0x02000000
85 static void HTTP_CloseHTTPRequestHandle(LPWININETHANDLEHEADER hdr);
86 static void HTTP_CloseHTTPSessionHandle(LPWININETHANDLEHEADER hdr);
87 static BOOL HTTP_OpenConnection(LPWININETHTTPREQW lpwhr);
88 static BOOL HTTP_GetResponseHeaders(LPWININETHTTPREQW lpwhr);
89 static BOOL HTTP_ProcessHeader(LPWININETHTTPREQW lpwhr, LPCWSTR field, LPCWSTR value, DWORD dwModifier);
90 static BOOL HTTP_ReplaceHeaderValue( LPHTTPHEADERW lphttpHdr, LPCWSTR lpsztmp );
91 static LPWSTR * HTTP_InterpretHttpHeader(LPCWSTR buffer);
92 static BOOL HTTP_InsertCustomHeader(LPWININETHTTPREQW lpwhr, LPHTTPHEADERW lpHdr);
93 static INT HTTP_GetCustomHeaderIndex(LPWININETHTTPREQW lpwhr, LPCWSTR lpszField);
94 static BOOL HTTP_DeleteCustomHeader(LPWININETHTTPREQW lpwhr, DWORD index);
97 /***********************************************************************
98 * HTTP_Tokenize (internal)
100 * Tokenize a string, allocating memory for the tokens.
102 static LPWSTR * HTTP_Tokenize(LPCWSTR string, LPCWSTR token_string)
104 LPWSTR * token_array;
109 /* empty string has no tokens */
113 for (i = 0; string[i]; i++)
114 if (!strncmpW(string+i, token_string, strlenW(token_string)))
118 /* we want to skip over separators, but not the null terminator */
119 for (j = 0; j < strlenW(token_string) - 1; j++)
125 /* add 1 for terminating NULL */
126 token_array = HeapAlloc(GetProcessHeap(), 0, (tokens+1) * sizeof(*token_array));
127 token_array[tokens] = NULL;
130 for (i = 0; i < tokens; i++)
133 next_token = strstrW(string, token_string);
134 if (!next_token) next_token = string+strlenW(string);
135 len = next_token - string;
136 token_array[i] = HeapAlloc(GetProcessHeap(), 0, (len+1)*sizeof(WCHAR));
137 memcpy(token_array[i], string, len*sizeof(WCHAR));
138 token_array[i][len] = '\0';
139 string = next_token+strlenW(token_string);
144 /***********************************************************************
145 * HTTP_FreeTokens (internal)
147 * Frees memory returned from HTTP_Tokenize.
149 static void HTTP_FreeTokens(LPWSTR * token_array)
152 for (i = 0; token_array[i]; i++)
153 HeapFree(GetProcessHeap(), 0, token_array[i]);
154 HeapFree(GetProcessHeap(), 0, token_array);
157 /***********************************************************************
158 * HTTP_HttpAddRequestHeadersW (internal)
160 static BOOL WINAPI HTTP_HttpAddRequestHeadersW(LPWININETHTTPREQW lpwhr,
161 LPCWSTR lpszHeader, DWORD dwHeaderLength, DWORD dwModifier)
166 BOOL bSuccess = FALSE;
169 TRACE("copying header: %s\n", debugstr_w(lpszHeader));
171 if( dwHeaderLength == ~0U )
172 len = strlenW(lpszHeader);
174 len = dwHeaderLength;
175 buffer = HeapAlloc( GetProcessHeap(), 0, sizeof(WCHAR)*(len+1) );
176 lstrcpynW( buffer, lpszHeader, len + 1);
182 LPWSTR * pFieldAndValue;
186 while (*lpszEnd != '\0')
188 if (*lpszEnd == '\r' && *(lpszEnd + 1) == '\n')
193 if (*lpszStart == '\0')
196 if (*lpszEnd == '\r')
199 lpszEnd += 2; /* Jump over \r\n */
201 TRACE("interpreting header %s\n", debugstr_w(lpszStart));
202 pFieldAndValue = HTTP_InterpretHttpHeader(lpszStart);
205 bSuccess = HTTP_ProcessHeader(lpwhr, pFieldAndValue[0],
206 pFieldAndValue[1], dwModifier | HTTP_ADDHDR_FLAG_REQ);
207 HTTP_FreeTokens(pFieldAndValue);
213 HeapFree(GetProcessHeap(), 0, buffer);
218 /***********************************************************************
219 * HttpAddRequestHeadersW (WININET.@)
221 * Adds one or more HTTP header to the request handler
228 BOOL WINAPI HttpAddRequestHeadersW(HINTERNET hHttpRequest,
229 LPCWSTR lpszHeader, DWORD dwHeaderLength, DWORD dwModifier)
231 BOOL bSuccess = FALSE;
232 LPWININETHTTPREQW lpwhr;
234 TRACE("%p, %s, %li, %li\n", hHttpRequest, debugstr_w(lpszHeader), dwHeaderLength,
240 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hHttpRequest );
241 if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
243 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
246 bSuccess = HTTP_HttpAddRequestHeadersW( lpwhr, lpszHeader, dwHeaderLength, dwModifier );
249 WININET_Release( &lpwhr->hdr );
254 /***********************************************************************
255 * HttpAddRequestHeadersA (WININET.@)
257 * Adds one or more HTTP header to the request handler
264 BOOL WINAPI HttpAddRequestHeadersA(HINTERNET hHttpRequest,
265 LPCSTR lpszHeader, DWORD dwHeaderLength, DWORD dwModifier)
271 TRACE("%p, %s, %li, %li\n", hHttpRequest, debugstr_a(lpszHeader), dwHeaderLength,
274 len = MultiByteToWideChar( CP_ACP, 0, lpszHeader, dwHeaderLength, NULL, 0 );
275 hdr = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
276 MultiByteToWideChar( CP_ACP, 0, lpszHeader, dwHeaderLength, hdr, len );
277 if( dwHeaderLength != ~0U )
278 dwHeaderLength = len;
280 r = HttpAddRequestHeadersW( hHttpRequest, hdr, dwHeaderLength, dwModifier );
282 HeapFree( GetProcessHeap(), 0, hdr );
287 /***********************************************************************
288 * HttpEndRequestA (WININET.@)
290 * Ends an HTTP request that was started by HttpSendRequestEx
297 BOOL WINAPI HttpEndRequestA(HINTERNET hRequest, LPINTERNET_BUFFERSA lpBuffersOut,
298 DWORD dwFlags, DWORD dwContext)
304 /***********************************************************************
305 * HttpEndRequestW (WININET.@)
307 * Ends an HTTP request that was started by HttpSendRequestEx
314 BOOL WINAPI HttpEndRequestW(HINTERNET hRequest, LPINTERNET_BUFFERSW lpBuffersOut,
315 DWORD dwFlags, DWORD dwContext)
321 /***********************************************************************
322 * HttpOpenRequestW (WININET.@)
324 * Open a HTTP request handle
327 * HINTERNET a HTTP request handle on success
331 HINTERNET WINAPI HttpOpenRequestW(HINTERNET hHttpSession,
332 LPCWSTR lpszVerb, LPCWSTR lpszObjectName, LPCWSTR lpszVersion,
333 LPCWSTR lpszReferrer , LPCWSTR *lpszAcceptTypes,
334 DWORD dwFlags, DWORD dwContext)
336 LPWININETHTTPSESSIONW lpwhs;
337 HINTERNET handle = NULL;
339 TRACE("(%p, %s, %s, %s, %s, %p, %08lx, %08lx)\n", hHttpSession,
340 debugstr_w(lpszVerb), debugstr_w(lpszObjectName),
341 debugstr_w(lpszVersion), debugstr_w(lpszReferrer), lpszAcceptTypes,
343 if(lpszAcceptTypes!=NULL)
346 for(i=0;lpszAcceptTypes[i]!=NULL;i++)
347 TRACE("\taccept type: %s\n",debugstr_w(lpszAcceptTypes[i]));
350 lpwhs = (LPWININETHTTPSESSIONW) WININET_GetObject( hHttpSession );
351 if (NULL == lpwhs || lpwhs->hdr.htype != WH_HHTTPSESSION)
353 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
358 * My tests seem to show that the windows version does not
359 * become asynchronous until after this point. And anyhow
360 * if this call was asynchronous then how would you get the
361 * necessary HINTERNET pointer returned by this function.
364 handle = HTTP_HttpOpenRequestW(lpwhs, lpszVerb, lpszObjectName,
365 lpszVersion, lpszReferrer, lpszAcceptTypes,
369 WININET_Release( &lpwhs->hdr );
370 TRACE("returning %p\n", handle);
375 /***********************************************************************
376 * HttpOpenRequestA (WININET.@)
378 * Open a HTTP request handle
381 * HINTERNET a HTTP request handle on success
385 HINTERNET WINAPI HttpOpenRequestA(HINTERNET hHttpSession,
386 LPCSTR lpszVerb, LPCSTR lpszObjectName, LPCSTR lpszVersion,
387 LPCSTR lpszReferrer , LPCSTR *lpszAcceptTypes,
388 DWORD dwFlags, DWORD dwContext)
390 LPWSTR szVerb = NULL, szObjectName = NULL;
391 LPWSTR szVersion = NULL, szReferrer = NULL, *szAcceptTypes = NULL;
393 INT acceptTypesCount;
394 HINTERNET rc = FALSE;
395 TRACE("(%p, %s, %s, %s, %s, %p, %08lx, %08lx)\n", hHttpSession,
396 debugstr_a(lpszVerb), debugstr_a(lpszObjectName),
397 debugstr_a(lpszVersion), debugstr_a(lpszReferrer), lpszAcceptTypes,
402 len = MultiByteToWideChar(CP_ACP, 0, lpszVerb, -1, NULL, 0 );
403 szVerb = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR) );
406 MultiByteToWideChar(CP_ACP, 0, lpszVerb, -1, szVerb, len);
411 len = MultiByteToWideChar(CP_ACP, 0, lpszObjectName, -1, NULL, 0 );
412 szObjectName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR) );
415 MultiByteToWideChar(CP_ACP, 0, lpszObjectName, -1, szObjectName, len );
420 len = MultiByteToWideChar(CP_ACP, 0, lpszVersion, -1, NULL, 0 );
421 szVersion = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
424 MultiByteToWideChar(CP_ACP, 0, lpszVersion, -1, szVersion, len );
429 len = MultiByteToWideChar(CP_ACP, 0, lpszReferrer, -1, NULL, 0 );
430 szReferrer = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
433 MultiByteToWideChar(CP_ACP, 0, lpszReferrer, -1, szReferrer, len );
436 acceptTypesCount = 0;
439 /* find out how many there are */
440 while (lpszAcceptTypes[acceptTypesCount])
442 szAcceptTypes = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR *) * (acceptTypesCount+1));
443 acceptTypesCount = 0;
444 while (lpszAcceptTypes[acceptTypesCount])
446 len = MultiByteToWideChar(CP_ACP, 0, lpszAcceptTypes[acceptTypesCount],
448 szAcceptTypes[acceptTypesCount] = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
449 if (!szAcceptTypes[acceptTypesCount] )
451 MultiByteToWideChar(CP_ACP, 0, lpszAcceptTypes[acceptTypesCount],
452 -1, szAcceptTypes[acceptTypesCount], len );
455 szAcceptTypes[acceptTypesCount] = NULL;
457 else szAcceptTypes = 0;
459 rc = HttpOpenRequestW(hHttpSession, szVerb, szObjectName,
460 szVersion, szReferrer,
461 (LPCWSTR*)szAcceptTypes, dwFlags, dwContext);
466 acceptTypesCount = 0;
467 while (szAcceptTypes[acceptTypesCount])
469 HeapFree(GetProcessHeap(), 0, szAcceptTypes[acceptTypesCount]);
472 HeapFree(GetProcessHeap(), 0, szAcceptTypes);
474 HeapFree(GetProcessHeap(), 0, szReferrer);
475 HeapFree(GetProcessHeap(), 0, szVersion);
476 HeapFree(GetProcessHeap(), 0, szObjectName);
477 HeapFree(GetProcessHeap(), 0, szVerb);
482 /***********************************************************************
485 static UINT HTTP_Base64( LPCWSTR bin, LPWSTR base64 )
488 static LPCSTR HTTP_Base64Enc =
489 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
493 /* first 6 bits, all from bin[0] */
494 base64[n++] = HTTP_Base64Enc[(bin[0] & 0xfc) >> 2];
495 x = (bin[0] & 3) << 4;
497 /* next 6 bits, 2 from bin[0] and 4 from bin[1] */
500 base64[n++] = HTTP_Base64Enc[x];
505 base64[n++] = HTTP_Base64Enc[ x | ( (bin[1]&0xf0) >> 4 ) ];
506 x = ( bin[1] & 0x0f ) << 2;
508 /* next 6 bits 4 from bin[1] and 2 from bin[2] */
511 base64[n++] = HTTP_Base64Enc[x];
515 base64[n++] = HTTP_Base64Enc[ x | ( (bin[2]&0xc0 ) >> 6 ) ];
517 /* last 6 bits, all from bin [2] */
518 base64[n++] = HTTP_Base64Enc[ bin[2] & 0x3f ];
525 /***********************************************************************
526 * HTTP_EncodeBasicAuth
528 * Encode the basic authentication string for HTTP 1.1
530 static LPWSTR HTTP_EncodeBasicAuth( LPCWSTR username, LPCWSTR password)
534 static const WCHAR szBasic[] = {'B','a','s','i','c',' ',0};
535 static const WCHAR szColon[] = {':',0};
537 len = lstrlenW( username ) + 1 + lstrlenW ( password ) + 1;
538 in = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
542 len = lstrlenW(szBasic) +
543 (lstrlenW( username ) + 1 + lstrlenW ( password ))*2 + 1 + 1;
544 out = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
547 lstrcpyW( in, username );
548 lstrcatW( in, szColon );
549 lstrcatW( in, password );
550 lstrcpyW( out, szBasic );
551 HTTP_Base64( in, &out[strlenW(out)] );
553 HeapFree( GetProcessHeap(), 0, in );
558 /***********************************************************************
559 * HTTP_InsertProxyAuthorization
561 * Insert the basic authorization field in the request header
563 static BOOL HTTP_InsertProxyAuthorization( LPWININETHTTPREQW lpwhr,
564 LPCWSTR username, LPCWSTR password )
568 static const WCHAR szProxyAuthorization[] = {
569 'P','r','o','x','y','-','A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
571 hdr.lpszValue = HTTP_EncodeBasicAuth( username, password );
572 hdr.lpszField = (WCHAR *)szProxyAuthorization;
573 hdr.wFlags = HDR_ISREQUEST;
578 TRACE("Inserting %s = %s\n",
579 debugstr_w( hdr.lpszField ), debugstr_w( hdr.lpszValue ) );
581 /* remove the old proxy authorization header */
582 index = HTTP_GetCustomHeaderIndex( lpwhr, hdr.lpszField );
584 HTTP_DeleteCustomHeader( lpwhr, index );
586 HTTP_InsertCustomHeader(lpwhr, &hdr);
587 HeapFree( GetProcessHeap(), 0, hdr.lpszValue );
592 /***********************************************************************
595 static BOOL HTTP_DealWithProxy( LPWININETAPPINFOW hIC,
596 LPWININETHTTPSESSIONW lpwhs, LPWININETHTTPREQW lpwhr)
598 WCHAR buf[MAXHOSTNAME];
599 WCHAR proxy[MAXHOSTNAME + 15]; /* 15 == "http://" + sizeof(port#) + ":/\0" */
601 static const WCHAR szNul[] = { 0 };
602 URL_COMPONENTSW UrlComponents;
603 static const WCHAR szHttp[] = { 'h','t','t','p',':','/','/',0 }, szSlash[] = { '/',0 } ;
604 static const WCHAR szFormat1[] = { 'h','t','t','p',':','/','/','%','s',0 };
605 static const WCHAR szFormat2[] = { 'h','t','t','p',':','/','/','%','s',':','%','d',0 };
608 memset( &UrlComponents, 0, sizeof UrlComponents );
609 UrlComponents.dwStructSize = sizeof UrlComponents;
610 UrlComponents.lpszHostName = buf;
611 UrlComponents.dwHostNameLength = MAXHOSTNAME;
613 if( CSTR_EQUAL != CompareStringW(LOCALE_SYSTEM_DEFAULT, NORM_IGNORECASE,
614 buf,strlenW(szHttp),szHttp,strlenW(szHttp)) )
615 sprintfW(proxy, szFormat1, hIC->lpszProxy);
618 if( !InternetCrackUrlW(proxy, 0, 0, &UrlComponents) )
620 if( UrlComponents.dwHostNameLength == 0 )
623 if( !lpwhr->lpszPath )
624 lpwhr->lpszPath = (LPWSTR)szNul;
625 TRACE("server='%s' path='%s'\n",
626 debugstr_w(lpwhs->lpszServerName), debugstr_w(lpwhr->lpszPath));
627 /* for constant 15 see above */
628 len = strlenW(lpwhs->lpszServerName) + strlenW(lpwhr->lpszPath) + 15;
629 url = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
631 if(UrlComponents.nPort == INTERNET_INVALID_PORT_NUMBER)
632 UrlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
634 sprintfW(url, szFormat2, lpwhs->lpszServerName, lpwhs->nServerPort);
636 if( lpwhr->lpszPath[0] != '/' )
637 strcatW( url, szSlash );
638 strcatW(url, lpwhr->lpszPath);
639 if(lpwhr->lpszPath != szNul)
640 HeapFree(GetProcessHeap(), 0, lpwhr->lpszPath);
641 lpwhr->lpszPath = url;
642 /* FIXME: Do I have to free lpwhs->lpszServerName here ? */
643 lpwhs->lpszServerName = WININET_strdupW(UrlComponents.lpszHostName);
644 lpwhs->nServerPort = UrlComponents.nPort;
649 /***********************************************************************
650 * HTTP_HttpOpenRequestW (internal)
652 * Open a HTTP request handle
655 * HINTERNET a HTTP request handle on success
659 HINTERNET WINAPI HTTP_HttpOpenRequestW(LPWININETHTTPSESSIONW lpwhs,
660 LPCWSTR lpszVerb, LPCWSTR lpszObjectName, LPCWSTR lpszVersion,
661 LPCWSTR lpszReferrer , LPCWSTR *lpszAcceptTypes,
662 DWORD dwFlags, DWORD dwContext)
664 LPWININETAPPINFOW hIC = NULL;
665 LPWININETHTTPREQW lpwhr;
667 LPWSTR lpszUrl = NULL;
669 HINTERNET handle = NULL;
670 static const WCHAR szUrlForm[] = {'h','t','t','p',':','/','/','%','s',0};
672 INTERNET_ASYNC_RESULT iar;
676 assert( lpwhs->hdr.htype == WH_HHTTPSESSION );
677 hIC = (LPWININETAPPINFOW) lpwhs->hdr.lpwhparent;
679 lpwhr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETHTTPREQW));
682 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
685 lpwhr->hdr.htype = WH_HHTTPREQ;
686 lpwhr->hdr.lpwhparent = WININET_AddRef( &lpwhs->hdr );
687 lpwhr->hdr.dwFlags = dwFlags;
688 lpwhr->hdr.dwContext = dwContext;
689 lpwhr->hdr.dwRefCount = 1;
690 lpwhr->hdr.destroy = HTTP_CloseHTTPRequestHandle;
691 lpwhr->hdr.lpfnStatusCB = lpwhs->hdr.lpfnStatusCB;
693 handle = WININET_AllocHandle( &lpwhr->hdr );
696 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
700 NETCON_init(&lpwhr->netConnection, dwFlags & INTERNET_FLAG_SECURE);
702 if (NULL != lpszObjectName && strlenW(lpszObjectName)) {
706 rc = UrlEscapeW(lpszObjectName, NULL, &len, URL_ESCAPE_SPACES_ONLY);
708 len = strlenW(lpszObjectName)+1;
709 lpwhr->lpszPath = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
710 rc = UrlEscapeW(lpszObjectName, lpwhr->lpszPath, &len,
711 URL_ESCAPE_SPACES_ONLY);
714 ERR("Unable to escape string!(%s) (%ld)\n",debugstr_w(lpszObjectName),rc);
715 strcpyW(lpwhr->lpszPath,lpszObjectName);
719 if (NULL != lpszReferrer && strlenW(lpszReferrer))
720 HTTP_ProcessHeader(lpwhr, HTTP_REFERER, lpszReferrer, HTTP_ADDHDR_FLAG_COALESCE);
722 if(lpszAcceptTypes!=NULL)
725 for(i=0;lpszAcceptTypes[i]!=NULL;i++)
726 HTTP_ProcessHeader(lpwhr, HTTP_ACCEPT, lpszAcceptTypes[i], HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA|HTTP_ADDHDR_FLAG_REQ|HTTP_ADDHDR_FLAG_ADD_IF_NEW);
729 if (NULL == lpszVerb)
731 static const WCHAR szGet[] = {'G','E','T',0};
732 lpwhr->lpszVerb = WININET_strdupW(szGet);
734 else if (strlenW(lpszVerb))
735 lpwhr->lpszVerb = WININET_strdupW(lpszVerb);
737 if (NULL != lpszReferrer && strlenW(lpszReferrer))
739 WCHAR buf[MAXHOSTNAME];
740 URL_COMPONENTSW UrlComponents;
742 memset( &UrlComponents, 0, sizeof UrlComponents );
743 UrlComponents.dwStructSize = sizeof UrlComponents;
744 UrlComponents.lpszHostName = buf;
745 UrlComponents.dwHostNameLength = MAXHOSTNAME;
747 InternetCrackUrlW(lpszReferrer, 0, 0, &UrlComponents);
748 if (strlenW(UrlComponents.lpszHostName))
749 HTTP_ProcessHeader(lpwhr, g_szHost, UrlComponents.lpszHostName, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE | HTTP_ADDHDR_FLAG_REQ);
752 HTTP_ProcessHeader(lpwhr, g_szHost, lpwhs->lpszServerName, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE | HTTP_ADDHDR_FLAG_REQ);
754 if (lpwhs->nServerPort == INTERNET_INVALID_PORT_NUMBER)
755 lpwhs->nServerPort = (dwFlags & INTERNET_FLAG_SECURE ?
756 INTERNET_DEFAULT_HTTPS_PORT :
757 INTERNET_DEFAULT_HTTP_PORT);
759 if (NULL != hIC->lpszProxy && hIC->lpszProxy[0] != 0)
760 HTTP_DealWithProxy( hIC, lpwhs, lpwhr );
765 static const WCHAR user_agent[] = {'U','s','e','r','-','A','g','e','n','t',':',' ','%','s','\r','\n',0 };
767 len = strlenW(hIC->lpszAgent) + strlenW(user_agent);
768 agent_header = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
769 sprintfW(agent_header, user_agent, hIC->lpszAgent );
771 HTTP_HttpAddRequestHeadersW(lpwhr, agent_header, strlenW(agent_header),
772 HTTP_ADDREQ_FLAG_ADD);
773 HeapFree(GetProcessHeap(), 0, agent_header);
776 len = strlenW(lpwhr->StdHeaders[HTTP_QUERY_HOST].lpszValue) + strlenW(szUrlForm);
777 lpszUrl = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
778 sprintfW( lpszUrl, szUrlForm, lpwhr->StdHeaders[HTTP_QUERY_HOST].lpszValue );
780 if (!(lpwhr->hdr.dwFlags & INTERNET_FLAG_NO_COOKIES) &&
781 InternetGetCookieW(lpszUrl, NULL, NULL, &nCookieSize))
784 static const WCHAR szCookie[] = {'C','o','o','k','i','e',':',' ',0};
785 static const WCHAR szcrlf[] = {'\r','\n',0};
787 lpszCookies = HeapAlloc(GetProcessHeap(), 0, (nCookieSize + 1 + 8)*sizeof(WCHAR));
789 cnt += sprintfW(lpszCookies, szCookie);
790 InternetGetCookieW(lpszUrl, NULL, lpszCookies + cnt, &nCookieSize);
791 strcatW(lpszCookies, szcrlf);
793 HTTP_HttpAddRequestHeadersW(lpwhr, lpszCookies, strlenW(lpszCookies),
794 HTTP_ADDREQ_FLAG_ADD);
795 HeapFree(GetProcessHeap(), 0, lpszCookies);
797 HeapFree(GetProcessHeap(), 0, lpszUrl);
800 iar.dwResult = (DWORD_PTR)handle;
801 iar.dwError = ERROR_SUCCESS;
803 SendAsyncCallback(&lpwhs->hdr, dwContext,
804 INTERNET_STATUS_HANDLE_CREATED, &iar,
805 sizeof(INTERNET_ASYNC_RESULT));
808 * A STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on windows
812 * According to my tests. The name is not resolved until a request is Opened
814 SendAsyncCallback(&lpwhr->hdr, dwContext,
815 INTERNET_STATUS_RESOLVING_NAME,
816 lpwhs->lpszServerName,
817 strlenW(lpwhs->lpszServerName)+1);
819 if (!GetAddress(lpwhs->lpszServerName, lpwhs->nServerPort,
820 &lpwhs->phostent, &lpwhs->socketAddress))
822 INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED);
823 InternetCloseHandle( handle );
828 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
829 INTERNET_STATUS_NAME_RESOLVED,
830 &(lpwhs->socketAddress),
831 sizeof(struct sockaddr_in));
835 WININET_Release( &lpwhr->hdr );
837 TRACE("<-- %p (%p)\n", handle, lpwhr);
841 /***********************************************************************
842 * HTTP_HttpQueryInfoW (internal)
844 static BOOL WINAPI HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr, DWORD dwInfoLevel,
845 LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex)
847 LPHTTPHEADERW lphttpHdr = NULL;
848 BOOL bSuccess = FALSE;
850 /* Find requested header structure */
851 if ((dwInfoLevel & ~HTTP_QUERY_MODIFIER_FLAGS_MASK) == HTTP_QUERY_CUSTOM)
853 INT index = HTTP_GetCustomHeaderIndex(lpwhr, (LPWSTR)lpBuffer);
858 lphttpHdr = &lpwhr->pCustHeaders[index];
862 INT index = dwInfoLevel & ~HTTP_QUERY_MODIFIER_FLAGS_MASK;
864 if (index == HTTP_QUERY_RAW_HEADERS_CRLF)
866 DWORD len = strlenW(lpwhr->lpszRawHeaders);
867 if (len + 1 > *lpdwBufferLength/sizeof(WCHAR))
869 *lpdwBufferLength = (len + 1) * sizeof(WCHAR);
870 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
873 memcpy(lpBuffer, lpwhr->lpszRawHeaders, (len+1)*sizeof(WCHAR));
874 *lpdwBufferLength = len * sizeof(WCHAR);
876 TRACE("returning data: %s\n", debugstr_wn((WCHAR*)lpBuffer, len));
880 else if (index == HTTP_QUERY_RAW_HEADERS)
882 static const WCHAR szCrLf[] = {'\r','\n',0};
883 LPWSTR * ppszRawHeaderLines = HTTP_Tokenize(lpwhr->lpszRawHeaders, szCrLf);
885 LPWSTR pszString = (WCHAR*)lpBuffer;
887 for (i = 0; ppszRawHeaderLines[i]; i++)
888 size += strlenW(ppszRawHeaderLines[i]) + 1;
890 if (size + 1 > *lpdwBufferLength/sizeof(WCHAR))
892 HTTP_FreeTokens(ppszRawHeaderLines);
893 *lpdwBufferLength = (size + 1) * sizeof(WCHAR);
894 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
898 for (i = 0; ppszRawHeaderLines[i]; i++)
900 DWORD len = strlenW(ppszRawHeaderLines[i]);
901 memcpy(pszString, ppszRawHeaderLines[i], (len+1)*sizeof(WCHAR));
906 TRACE("returning data: %s\n", debugstr_wn((WCHAR*)lpBuffer, size));
908 *lpdwBufferLength = size * sizeof(WCHAR);
909 HTTP_FreeTokens(ppszRawHeaderLines);
913 else if (index >= 0 && index <= HTTP_QUERY_MAX && lpwhr->StdHeaders[index].lpszValue)
915 lphttpHdr = &lpwhr->StdHeaders[index];
919 SetLastError(ERROR_HTTP_HEADER_NOT_FOUND);
924 /* Ensure header satisifies requested attributes */
925 if ((dwInfoLevel & HTTP_QUERY_FLAG_REQUEST_HEADERS) &&
926 (~lphttpHdr->wFlags & HDR_ISREQUEST))
928 SetLastError(ERROR_HTTP_HEADER_NOT_FOUND);
932 /* coalesce value to reuqested type */
933 if (dwInfoLevel & HTTP_QUERY_FLAG_NUMBER)
935 *(int *)lpBuffer = atoiW(lphttpHdr->lpszValue);
938 TRACE(" returning number : %d\n", *(int *)lpBuffer);
940 else if (dwInfoLevel & HTTP_QUERY_FLAG_SYSTEMTIME)
946 tmpTime = ConvertTimeString(lphttpHdr->lpszValue);
948 tmpTM = *gmtime(&tmpTime);
949 STHook = (SYSTEMTIME *) lpBuffer;
953 STHook->wDay = tmpTM.tm_mday;
954 STHook->wHour = tmpTM.tm_hour;
955 STHook->wMilliseconds = 0;
956 STHook->wMinute = tmpTM.tm_min;
957 STHook->wDayOfWeek = tmpTM.tm_wday;
958 STHook->wMonth = tmpTM.tm_mon + 1;
959 STHook->wSecond = tmpTM.tm_sec;
960 STHook->wYear = tmpTM.tm_year;
964 TRACE(" returning time : %04d/%02d/%02d - %d - %02d:%02d:%02d.%02d\n",
965 STHook->wYear, STHook->wMonth, STHook->wDay, STHook->wDayOfWeek,
966 STHook->wHour, STHook->wMinute, STHook->wSecond, STHook->wMilliseconds);
968 else if (dwInfoLevel & HTTP_QUERY_FLAG_COALESCE)
970 if (*lpdwIndex >= lphttpHdr->wCount)
972 INTERNET_SetLastError(ERROR_HTTP_HEADER_NOT_FOUND);
976 /* Copy strncpyW(lpBuffer, lphttpHdr[*lpdwIndex], len); */
982 DWORD len = (strlenW(lphttpHdr->lpszValue) + 1) * sizeof(WCHAR);
984 if (len > *lpdwBufferLength)
986 *lpdwBufferLength = len;
987 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
991 memcpy(lpBuffer, lphttpHdr->lpszValue, len);
992 *lpdwBufferLength = len - sizeof(WCHAR);
995 TRACE(" returning string : '%s'\n", debugstr_w(lpBuffer));
1000 /***********************************************************************
1001 * HttpQueryInfoW (WININET.@)
1003 * Queries for information about an HTTP request
1010 BOOL WINAPI HttpQueryInfoW(HINTERNET hHttpRequest, DWORD dwInfoLevel,
1011 LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex)
1013 BOOL bSuccess = FALSE;
1014 LPWININETHTTPREQW lpwhr;
1016 if (TRACE_ON(wininet)) {
1017 #define FE(x) { x, #x }
1018 static const wininet_flag_info query_flags[] = {
1019 FE(HTTP_QUERY_MIME_VERSION),
1020 FE(HTTP_QUERY_CONTENT_TYPE),
1021 FE(HTTP_QUERY_CONTENT_TRANSFER_ENCODING),
1022 FE(HTTP_QUERY_CONTENT_ID),
1023 FE(HTTP_QUERY_CONTENT_DESCRIPTION),
1024 FE(HTTP_QUERY_CONTENT_LENGTH),
1025 FE(HTTP_QUERY_CONTENT_LANGUAGE),
1026 FE(HTTP_QUERY_ALLOW),
1027 FE(HTTP_QUERY_PUBLIC),
1028 FE(HTTP_QUERY_DATE),
1029 FE(HTTP_QUERY_EXPIRES),
1030 FE(HTTP_QUERY_LAST_MODIFIED),
1031 FE(HTTP_QUERY_MESSAGE_ID),
1033 FE(HTTP_QUERY_DERIVED_FROM),
1034 FE(HTTP_QUERY_COST),
1035 FE(HTTP_QUERY_LINK),
1036 FE(HTTP_QUERY_PRAGMA),
1037 FE(HTTP_QUERY_VERSION),
1038 FE(HTTP_QUERY_STATUS_CODE),
1039 FE(HTTP_QUERY_STATUS_TEXT),
1040 FE(HTTP_QUERY_RAW_HEADERS),
1041 FE(HTTP_QUERY_RAW_HEADERS_CRLF),
1042 FE(HTTP_QUERY_CONNECTION),
1043 FE(HTTP_QUERY_ACCEPT),
1044 FE(HTTP_QUERY_ACCEPT_CHARSET),
1045 FE(HTTP_QUERY_ACCEPT_ENCODING),
1046 FE(HTTP_QUERY_ACCEPT_LANGUAGE),
1047 FE(HTTP_QUERY_AUTHORIZATION),
1048 FE(HTTP_QUERY_CONTENT_ENCODING),
1049 FE(HTTP_QUERY_FORWARDED),
1050 FE(HTTP_QUERY_FROM),
1051 FE(HTTP_QUERY_IF_MODIFIED_SINCE),
1052 FE(HTTP_QUERY_LOCATION),
1053 FE(HTTP_QUERY_ORIG_URI),
1054 FE(HTTP_QUERY_REFERER),
1055 FE(HTTP_QUERY_RETRY_AFTER),
1056 FE(HTTP_QUERY_SERVER),
1057 FE(HTTP_QUERY_TITLE),
1058 FE(HTTP_QUERY_USER_AGENT),
1059 FE(HTTP_QUERY_WWW_AUTHENTICATE),
1060 FE(HTTP_QUERY_PROXY_AUTHENTICATE),
1061 FE(HTTP_QUERY_ACCEPT_RANGES),
1062 FE(HTTP_QUERY_SET_COOKIE),
1063 FE(HTTP_QUERY_COOKIE),
1064 FE(HTTP_QUERY_REQUEST_METHOD),
1065 FE(HTTP_QUERY_REFRESH),
1066 FE(HTTP_QUERY_CONTENT_DISPOSITION),
1068 FE(HTTP_QUERY_CACHE_CONTROL),
1069 FE(HTTP_QUERY_CONTENT_BASE),
1070 FE(HTTP_QUERY_CONTENT_LOCATION),
1071 FE(HTTP_QUERY_CONTENT_MD5),
1072 FE(HTTP_QUERY_CONTENT_RANGE),
1073 FE(HTTP_QUERY_ETAG),
1074 FE(HTTP_QUERY_HOST),
1075 FE(HTTP_QUERY_IF_MATCH),
1076 FE(HTTP_QUERY_IF_NONE_MATCH),
1077 FE(HTTP_QUERY_IF_RANGE),
1078 FE(HTTP_QUERY_IF_UNMODIFIED_SINCE),
1079 FE(HTTP_QUERY_MAX_FORWARDS),
1080 FE(HTTP_QUERY_PROXY_AUTHORIZATION),
1081 FE(HTTP_QUERY_RANGE),
1082 FE(HTTP_QUERY_TRANSFER_ENCODING),
1083 FE(HTTP_QUERY_UPGRADE),
1084 FE(HTTP_QUERY_VARY),
1086 FE(HTTP_QUERY_WARNING),
1087 FE(HTTP_QUERY_CUSTOM)
1089 static const wininet_flag_info modifier_flags[] = {
1090 FE(HTTP_QUERY_FLAG_REQUEST_HEADERS),
1091 FE(HTTP_QUERY_FLAG_SYSTEMTIME),
1092 FE(HTTP_QUERY_FLAG_NUMBER),
1093 FE(HTTP_QUERY_FLAG_COALESCE)
1096 DWORD info_mod = dwInfoLevel & HTTP_QUERY_MODIFIER_FLAGS_MASK;
1097 DWORD info = dwInfoLevel & HTTP_QUERY_HEADER_MASK;
1100 TRACE("(%p, 0x%08lx)--> %ld\n", hHttpRequest, dwInfoLevel, dwInfoLevel);
1101 TRACE(" Attribute:");
1102 for (i = 0; i < (sizeof(query_flags) / sizeof(query_flags[0])); i++) {
1103 if (query_flags[i].val == info) {
1104 TRACE(" %s", query_flags[i].name);
1108 if (i == (sizeof(query_flags) / sizeof(query_flags[0]))) {
1109 TRACE(" Unknown (%08lx)", info);
1112 TRACE(" Modifier:");
1113 for (i = 0; i < (sizeof(modifier_flags) / sizeof(modifier_flags[0])); i++) {
1114 if (modifier_flags[i].val & info_mod) {
1115 TRACE(" %s", modifier_flags[i].name);
1116 info_mod &= ~ modifier_flags[i].val;
1121 TRACE(" Unknown (%08lx)", info_mod);
1126 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hHttpRequest );
1127 if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
1129 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1133 bSuccess = HTTP_HttpQueryInfoW( lpwhr, dwInfoLevel,
1134 lpBuffer, lpdwBufferLength, lpdwIndex);
1138 WININET_Release( &lpwhr->hdr );
1140 TRACE("%d <--\n", bSuccess);
1144 /***********************************************************************
1145 * HttpQueryInfoA (WININET.@)
1147 * Queries for information about an HTTP request
1154 BOOL WINAPI HttpQueryInfoA(HINTERNET hHttpRequest, DWORD dwInfoLevel,
1155 LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex)
1161 if((dwInfoLevel & HTTP_QUERY_FLAG_NUMBER) ||
1162 (dwInfoLevel & HTTP_QUERY_FLAG_SYSTEMTIME))
1164 return HttpQueryInfoW( hHttpRequest, dwInfoLevel, lpBuffer,
1165 lpdwBufferLength, lpdwIndex );
1168 len = (*lpdwBufferLength)*sizeof(WCHAR);
1169 bufferW = HeapAlloc( GetProcessHeap(), 0, len );
1170 result = HttpQueryInfoW( hHttpRequest, dwInfoLevel, bufferW,
1174 len = WideCharToMultiByte( CP_ACP,0, bufferW, len / sizeof(WCHAR) + 1,
1175 lpBuffer, *lpdwBufferLength, NULL, NULL );
1176 *lpdwBufferLength = len - 1;
1178 TRACE("lpBuffer: %s\n", debugstr_a(lpBuffer));
1181 /* since the strings being returned from HttpQueryInfoW should be
1182 * only ASCII characters, it is reasonable to assume that all of
1183 * the Unicode characters can be reduced to a single byte */
1184 *lpdwBufferLength = len / sizeof(WCHAR);
1186 HeapFree(GetProcessHeap(), 0, bufferW );
1191 /***********************************************************************
1192 * HttpSendRequestExA (WININET.@)
1194 * Sends the specified request to the HTTP server and allows chunked
1197 BOOL WINAPI HttpSendRequestExA(HINTERNET hRequest,
1198 LPINTERNET_BUFFERSA lpBuffersIn,
1199 LPINTERNET_BUFFERSA lpBuffersOut,
1200 DWORD dwFlags, DWORD dwContext)
1202 FIXME("(%p, %p, %p, %08lx, %08lx): stub\n", hRequest, lpBuffersIn,
1203 lpBuffersOut, dwFlags, dwContext);
1207 /***********************************************************************
1208 * HttpSendRequestExW (WININET.@)
1210 * Sends the specified request to the HTTP server and allows chunked
1213 BOOL WINAPI HttpSendRequestExW(HINTERNET hRequest,
1214 LPINTERNET_BUFFERSW lpBuffersIn,
1215 LPINTERNET_BUFFERSW lpBuffersOut,
1216 DWORD dwFlags, DWORD dwContext)
1218 FIXME("(%p, %p, %p, %08lx, %08lx): stub\n", hRequest, lpBuffersIn,
1219 lpBuffersOut, dwFlags, dwContext);
1223 /***********************************************************************
1224 * HttpSendRequestW (WININET.@)
1226 * Sends the specified request to the HTTP server
1233 BOOL WINAPI HttpSendRequestW(HINTERNET hHttpRequest, LPCWSTR lpszHeaders,
1234 DWORD dwHeaderLength, LPVOID lpOptional ,DWORD dwOptionalLength)
1236 LPWININETHTTPREQW lpwhr;
1237 LPWININETHTTPSESSIONW lpwhs = NULL;
1238 LPWININETAPPINFOW hIC = NULL;
1241 TRACE("%p, %p (%s), %li, %p, %li)\n", hHttpRequest,
1242 lpszHeaders, debugstr_w(lpszHeaders), dwHeaderLength, lpOptional, dwOptionalLength);
1244 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hHttpRequest );
1245 if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
1247 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1252 lpwhs = (LPWININETHTTPSESSIONW) lpwhr->hdr.lpwhparent;
1253 if (NULL == lpwhs || lpwhs->hdr.htype != WH_HHTTPSESSION)
1255 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1260 hIC = (LPWININETAPPINFOW) lpwhs->hdr.lpwhparent;
1261 if (NULL == hIC || hIC->hdr.htype != WH_HINIT)
1263 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1268 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
1270 WORKREQUEST workRequest;
1271 struct WORKREQ_HTTPSENDREQUESTW *req;
1273 workRequest.asyncall = HTTPSENDREQUESTW;
1274 workRequest.hdr = WININET_AddRef( &lpwhr->hdr );
1275 req = &workRequest.u.HttpSendRequestW;
1277 req->lpszHeader = WININET_strdupW(lpszHeaders);
1279 req->lpszHeader = 0;
1280 req->dwHeaderLength = dwHeaderLength;
1281 req->lpOptional = lpOptional;
1282 req->dwOptionalLength = dwOptionalLength;
1284 INTERNET_AsyncCall(&workRequest);
1286 * This is from windows.
1288 SetLastError(ERROR_IO_PENDING);
1293 r = HTTP_HttpSendRequestW(lpwhr, lpszHeaders,
1294 dwHeaderLength, lpOptional, dwOptionalLength);
1298 WININET_Release( &lpwhr->hdr );
1302 /***********************************************************************
1303 * HttpSendRequestA (WININET.@)
1305 * Sends the specified request to the HTTP server
1312 BOOL WINAPI HttpSendRequestA(HINTERNET hHttpRequest, LPCSTR lpszHeaders,
1313 DWORD dwHeaderLength, LPVOID lpOptional ,DWORD dwOptionalLength)
1316 LPWSTR szHeaders=NULL;
1317 DWORD nLen=dwHeaderLength;
1318 if(lpszHeaders!=NULL)
1320 nLen=MultiByteToWideChar(CP_ACP,0,lpszHeaders,dwHeaderLength,NULL,0);
1321 szHeaders=HeapAlloc(GetProcessHeap(),0,nLen*sizeof(WCHAR));
1322 MultiByteToWideChar(CP_ACP,0,lpszHeaders,dwHeaderLength,szHeaders,nLen);
1324 result=HttpSendRequestW(hHttpRequest, szHeaders, nLen, lpOptional, dwOptionalLength);
1325 HeapFree(GetProcessHeap(),0,szHeaders);
1329 /***********************************************************************
1330 * HTTP_HandleRedirect (internal)
1332 static BOOL HTTP_HandleRedirect(LPWININETHTTPREQW lpwhr, LPCWSTR lpszUrl, LPCWSTR lpszHeaders,
1333 DWORD dwHeaderLength, LPVOID lpOptional, DWORD dwOptionalLength)
1335 LPWININETHTTPSESSIONW lpwhs = (LPWININETHTTPSESSIONW) lpwhr->hdr.lpwhparent;
1336 LPWININETAPPINFOW hIC = (LPWININETAPPINFOW) lpwhs->hdr.lpwhparent;
1341 /* if it's an absolute path, keep the same session info */
1342 strcpyW(path,lpszUrl);
1344 else if (NULL != hIC->lpszProxy && hIC->lpszProxy[0] != 0)
1346 TRACE("Redirect through proxy\n");
1347 strcpyW(path,lpszUrl);
1351 URL_COMPONENTSW urlComponents;
1352 WCHAR protocol[32], hostName[MAXHOSTNAME], userName[1024];
1353 WCHAR password[1024], extra[1024];
1354 urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
1355 urlComponents.lpszScheme = protocol;
1356 urlComponents.dwSchemeLength = 32;
1357 urlComponents.lpszHostName = hostName;
1358 urlComponents.dwHostNameLength = MAXHOSTNAME;
1359 urlComponents.lpszUserName = userName;
1360 urlComponents.dwUserNameLength = 1024;
1361 urlComponents.lpszPassword = password;
1362 urlComponents.dwPasswordLength = 1024;
1363 urlComponents.lpszUrlPath = path;
1364 urlComponents.dwUrlPathLength = 2048;
1365 urlComponents.lpszExtraInfo = extra;
1366 urlComponents.dwExtraInfoLength = 1024;
1367 if(!InternetCrackUrlW(lpszUrl, strlenW(lpszUrl), 0, &urlComponents))
1370 if (urlComponents.nPort == INTERNET_INVALID_PORT_NUMBER)
1371 urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
1375 * This upsets redirects to binary files on sourceforge.net
1376 * and gives an html page instead of the target file
1377 * Examination of the HTTP request sent by native wininet.dll
1378 * reveals that it doesn't send a referrer in that case.
1379 * Maybe there's a flag that enables this, or maybe a referrer
1380 * shouldn't be added in case of a redirect.
1383 /* consider the current host as the referrer */
1384 if (NULL != lpwhs->lpszServerName && strlenW(lpwhs->lpszServerName))
1385 HTTP_ProcessHeader(lpwhr, HTTP_REFERER, lpwhs->lpszServerName,
1386 HTTP_ADDHDR_FLAG_REQ|HTTP_ADDREQ_FLAG_REPLACE|
1387 HTTP_ADDHDR_FLAG_ADD_IF_NEW);
1390 HeapFree(GetProcessHeap(), 0, lpwhs->lpszServerName);
1391 lpwhs->lpszServerName = WININET_strdupW(hostName);
1392 HeapFree(GetProcessHeap(), 0, lpwhs->lpszUserName);
1393 lpwhs->lpszUserName = WININET_strdupW(userName);
1394 lpwhs->nServerPort = urlComponents.nPort;
1396 HTTP_ProcessHeader(lpwhr, g_szHost, hostName, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE | HTTP_ADDHDR_FLAG_REQ);
1398 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1399 INTERNET_STATUS_RESOLVING_NAME,
1400 lpwhs->lpszServerName,
1401 strlenW(lpwhs->lpszServerName)+1);
1403 if (!GetAddress(lpwhs->lpszServerName, lpwhs->nServerPort,
1404 &lpwhs->phostent, &lpwhs->socketAddress))
1406 INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED);
1410 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1411 INTERNET_STATUS_NAME_RESOLVED,
1412 &(lpwhs->socketAddress),
1413 sizeof(struct sockaddr_in));
1417 HeapFree(GetProcessHeap(), 0, lpwhr->lpszPath);
1418 lpwhr->lpszPath=NULL;
1424 rc = UrlEscapeW(path, NULL, &needed, URL_ESCAPE_SPACES_ONLY);
1425 if (rc != E_POINTER)
1426 needed = strlenW(path)+1;
1427 lpwhr->lpszPath = HeapAlloc(GetProcessHeap(), 0, needed*sizeof(WCHAR));
1428 rc = UrlEscapeW(path, lpwhr->lpszPath, &needed,
1429 URL_ESCAPE_SPACES_ONLY);
1432 ERR("Unable to escape string!(%s) (%ld)\n",debugstr_w(path),rc);
1433 strcpyW(lpwhr->lpszPath,path);
1437 return HTTP_HttpSendRequestW(lpwhr, lpszHeaders, dwHeaderLength, lpOptional, dwOptionalLength);
1440 /***********************************************************************
1441 * HTTP_build_req (internal)
1443 * concatenate all the strings in the request together
1445 static LPWSTR HTTP_build_req( LPCWSTR *list, int len )
1450 for( t = list; *t ; t++ )
1451 len += strlenW( *t );
1454 str = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1457 for( t = list; *t ; t++ )
1463 /***********************************************************************
1464 * HTTP_HttpSendRequestW (internal)
1466 * Sends the specified request to the HTTP server
1473 BOOL WINAPI HTTP_HttpSendRequestW(LPWININETHTTPREQW lpwhr, LPCWSTR lpszHeaders,
1474 DWORD dwHeaderLength, LPVOID lpOptional ,DWORD dwOptionalLength)
1478 BOOL bSuccess = FALSE;
1479 LPWSTR requestString = NULL;
1481 LPWININETHTTPSESSIONW lpwhs = NULL;
1482 LPWININETAPPINFOW hIC = NULL;
1483 BOOL loop_next = FALSE;
1484 int CustHeaderIndex;
1485 INTERNET_ASYNC_RESULT iar;
1487 TRACE("--> %p\n", lpwhr);
1489 assert(lpwhr->hdr.htype == WH_HHTTPREQ);
1491 lpwhs = (LPWININETHTTPSESSIONW) lpwhr->hdr.lpwhparent;
1492 if (NULL == lpwhs || lpwhs->hdr.htype != WH_HHTTPSESSION)
1494 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1498 hIC = (LPWININETAPPINFOW) lpwhs->hdr.lpwhparent;
1499 if (NULL == hIC || hIC->hdr.htype != WH_HINIT)
1501 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1505 /* Clear any error information */
1506 INTERNET_SetLastError(0);
1509 /* if the verb is NULL default to GET */
1510 if (NULL == lpwhr->lpszVerb)
1512 static const WCHAR szGET[] = { 'G','E','T', 0 };
1513 lpwhr->lpszVerb = WININET_strdupW(szGET);
1516 /* if we are using optional stuff, we must add the fixed header of that option length */
1517 if (lpOptional && dwOptionalLength)
1519 static const WCHAR szContentLength[] = {
1520 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',':',' ','%','l','i','\r','\n',0};
1521 WCHAR contentLengthStr[sizeof szContentLength/2 /* includes \n\r */ + 20 /* int */ ];
1522 sprintfW(contentLengthStr, szContentLength, dwOptionalLength);
1523 HTTP_HttpAddRequestHeadersW(lpwhr, contentLengthStr, -1L, HTTP_ADDREQ_FLAG_ADD);
1528 static const WCHAR szSlash[] = { '/',0 };
1529 static const WCHAR szSpace[] = { ' ',0 };
1530 static const WCHAR szHttp[] = { 'h','t','t','p',':','/','/', 0 };
1531 static const WCHAR szcrlf[] = {'\r','\n', 0};
1532 static const WCHAR sztwocrlf[] = {'\r','\n','\r','\n', 0};
1533 static const WCHAR szSetCookie[] = {'S','e','t','-','C','o','o','k','i','e',0 };
1534 static const WCHAR szColon[] = { ':',' ',0 };
1540 TRACE("Going to url %s %s\n", debugstr_w(lpwhr->StdHeaders[HTTP_QUERY_HOST].lpszValue), debugstr_w(lpwhr->lpszPath));
1543 /* If we don't have a path we set it to root */
1544 if (NULL == lpwhr->lpszPath)
1545 lpwhr->lpszPath = WININET_strdupW(szSlash);
1546 else /* remove \r and \n*/
1548 int nLen = strlenW(lpwhr->lpszPath);
1549 while ((nLen >0 ) && ((lpwhr->lpszPath[nLen-1] == '\r')||(lpwhr->lpszPath[nLen-1] == '\n')))
1552 lpwhr->lpszPath[nLen]='\0';
1554 /* Replace '\' with '/' */
1557 if (lpwhr->lpszPath[nLen] == '\\') lpwhr->lpszPath[nLen]='/';
1561 if(CSTR_EQUAL != CompareStringW( LOCALE_SYSTEM_DEFAULT, NORM_IGNORECASE,
1562 lpwhr->lpszPath, strlenW(szHttp), szHttp, strlenW(szHttp) )
1563 && lpwhr->lpszPath[0] != '/') /* not an absolute path ?? --> fix it !! */
1565 WCHAR *fixurl = HeapAlloc(GetProcessHeap(), 0,
1566 (strlenW(lpwhr->lpszPath) + 2)*sizeof(WCHAR));
1568 strcpyW(fixurl + 1, lpwhr->lpszPath);
1569 HeapFree( GetProcessHeap(), 0, lpwhr->lpszPath );
1570 lpwhr->lpszPath = fixurl;
1573 /* add the headers the caller supplied */
1574 if( lpszHeaders && dwHeaderLength )
1576 HTTP_HttpAddRequestHeadersW(lpwhr, lpszHeaders, dwHeaderLength,
1577 HTTP_ADDREQ_FLAG_ADD | HTTP_ADDHDR_FLAG_REPLACE);
1580 /* if there's a proxy username and password, add it to the headers */
1581 if (hIC && (hIC->lpszProxyUsername || hIC->lpszProxyPassword ))
1582 HTTP_InsertProxyAuthorization(lpwhr, hIC->lpszProxyUsername, hIC->lpszProxyPassword);
1584 /* allocate space for an array of all the string pointers to be added */
1585 len = (HTTP_QUERY_MAX + lpwhr->nCustHeaders)*4 + 9;
1586 req = HeapAlloc( GetProcessHeap(), 0, len*sizeof(LPCWSTR) );
1588 /* add the verb, path and HTTP/1.0 */
1590 req[n++] = lpwhr->lpszVerb;
1592 req[n++] = lpwhr->lpszPath;
1593 req[n++] = HTTPHEADER;
1595 /* Append standard request headers */
1596 for (i = 0; i <= HTTP_QUERY_MAX; i++)
1598 if (lpwhr->StdHeaders[i].wFlags & HDR_ISREQUEST)
1601 req[n++] = lpwhr->StdHeaders[i].lpszField;
1603 req[n++] = lpwhr->StdHeaders[i].lpszValue;
1605 TRACE("Adding header %s (%s)\n",
1606 debugstr_w(lpwhr->StdHeaders[i].lpszField),
1607 debugstr_w(lpwhr->StdHeaders[i].lpszValue));
1611 /* Append custom request heades */
1612 for (i = 0; i < lpwhr->nCustHeaders; i++)
1614 if (lpwhr->pCustHeaders[i].wFlags & HDR_ISREQUEST)
1617 req[n++] = lpwhr->pCustHeaders[i].lpszField;
1619 req[n++] = lpwhr->pCustHeaders[i].lpszValue;
1621 TRACE("Adding custom header %s (%s)\n",
1622 debugstr_w(lpwhr->pCustHeaders[i].lpszField),
1623 debugstr_w(lpwhr->pCustHeaders[i].lpszValue));
1628 ERR("oops. buffer overrun\n");
1631 requestString = HTTP_build_req( req, 4 );
1632 HeapFree( GetProcessHeap(), 0, req );
1635 * Set (header) termination string for request
1636 * Make sure there's exactly two new lines at the end of the request
1638 p = &requestString[strlenW(requestString)-1];
1639 while ( (*p == '\n') || (*p == '\r') )
1641 strcpyW( p+1, sztwocrlf );
1643 TRACE("Request header -> %s\n", debugstr_w(requestString) );
1645 /* Send the request and store the results */
1646 if (!HTTP_OpenConnection(lpwhr))
1649 /* send the request as ASCII, tack on the optional data */
1651 dwOptionalLength = 0;
1652 len = WideCharToMultiByte( CP_ACP, 0, requestString, -1,
1653 NULL, 0, NULL, NULL );
1654 ascii_req = HeapAlloc( GetProcessHeap(), 0, len + dwOptionalLength );
1655 WideCharToMultiByte( CP_ACP, 0, requestString, -1,
1656 ascii_req, len, NULL, NULL );
1658 memcpy( &ascii_req[len-1], lpOptional, dwOptionalLength );
1659 len = (len + dwOptionalLength - 1);
1661 TRACE("full request -> %s\n", debugstr_a(ascii_req) );
1663 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1664 INTERNET_STATUS_SENDING_REQUEST, NULL, 0);
1666 NETCON_send(&lpwhr->netConnection, ascii_req, len, 0, &cnt);
1667 HeapFree( GetProcessHeap(), 0, ascii_req );
1669 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1670 INTERNET_STATUS_REQUEST_SENT,
1671 &len,sizeof(DWORD));
1673 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1674 INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
1679 responseLen = HTTP_GetResponseHeaders(lpwhr);
1683 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1684 INTERNET_STATUS_RESPONSE_RECEIVED, &responseLen,
1687 /* process headers here. Is this right? */
1688 CustHeaderIndex = HTTP_GetCustomHeaderIndex(lpwhr, szSetCookie);
1689 if (!(lpwhr->hdr.dwFlags & INTERNET_FLAG_NO_COOKIES) && (CustHeaderIndex >= 0))
1691 LPHTTPHEADERW setCookieHeader;
1692 int nPosStart = 0, nPosEnd = 0, len;
1693 static const WCHAR szFmt[] = { 'h','t','t','p',':','/','/','%','s','/',0};
1695 setCookieHeader = &lpwhr->pCustHeaders[CustHeaderIndex];
1697 while (setCookieHeader->lpszValue[nPosEnd] != '\0')
1699 LPWSTR buf_cookie, cookie_name, cookie_data;
1701 LPWSTR domain = NULL;
1703 while (setCookieHeader->lpszValue[nPosEnd] != ';' && setCookieHeader->lpszValue[nPosEnd] != ',' &&
1704 setCookieHeader->lpszValue[nPosEnd] != '\0')
1708 if (setCookieHeader->lpszValue[nPosEnd] == ';')
1710 /* fixme: not case sensitive, strcasestr is gnu only */
1711 int nDomainPosEnd = 0;
1712 int nDomainPosStart = 0, nDomainLength = 0;
1713 static const WCHAR szDomain[] = {'d','o','m','a','i','n','=',0};
1714 LPWSTR lpszDomain = strstrW(&setCookieHeader->lpszValue[nPosEnd], szDomain);
1716 { /* they have specified their own domain, lets use it */
1717 while (lpszDomain[nDomainPosEnd] != ';' && lpszDomain[nDomainPosEnd] != ',' &&
1718 lpszDomain[nDomainPosEnd] != '\0')
1722 nDomainPosStart = strlenW(szDomain);
1723 nDomainLength = (nDomainPosEnd - nDomainPosStart) + 1;
1724 domain = HeapAlloc(GetProcessHeap(), 0, (nDomainLength + 1)*sizeof(WCHAR));
1725 lstrcpynW(domain, &lpszDomain[nDomainPosStart], nDomainLength + 1);
1728 if (setCookieHeader->lpszValue[nPosEnd] == '\0') break;
1729 buf_cookie = HeapAlloc(GetProcessHeap(), 0, ((nPosEnd - nPosStart) + 1)*sizeof(WCHAR));
1730 lstrcpynW(buf_cookie, &setCookieHeader->lpszValue[nPosStart], (nPosEnd - nPosStart) + 1);
1731 TRACE("%s\n", debugstr_w(buf_cookie));
1732 while (buf_cookie[nEqualPos] != '=' && buf_cookie[nEqualPos] != '\0')
1736 if (buf_cookie[nEqualPos] == '\0' || buf_cookie[nEqualPos + 1] == '\0')
1738 HeapFree(GetProcessHeap(), 0, buf_cookie);
1742 cookie_name = HeapAlloc(GetProcessHeap(), 0, (nEqualPos + 1)*sizeof(WCHAR));
1743 lstrcpynW(cookie_name, buf_cookie, nEqualPos + 1);
1744 cookie_data = &buf_cookie[nEqualPos + 1];
1747 len = strlenW((domain ? domain : lpwhr->StdHeaders[HTTP_QUERY_HOST].lpszValue)) +
1748 strlenW(lpwhr->lpszPath) + 9;
1749 buf_url = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
1750 sprintfW(buf_url, szFmt, (domain ? domain : lpwhr->StdHeaders[HTTP_QUERY_HOST].lpszValue)); /* FIXME PATH!!! */
1751 InternetSetCookieW(buf_url, cookie_name, cookie_data);
1753 HeapFree(GetProcessHeap(), 0, buf_url);
1754 HeapFree(GetProcessHeap(), 0, buf_cookie);
1755 HeapFree(GetProcessHeap(), 0, cookie_name);
1756 HeapFree(GetProcessHeap(), 0, domain);
1757 nPosStart = nPosEnd;
1765 HeapFree(GetProcessHeap(), 0, requestString);
1767 /* TODO: send notification for P3P header */
1769 if(!(lpwhr->hdr.dwFlags & INTERNET_FLAG_NO_AUTO_REDIRECT) && bSuccess)
1771 DWORD dwCode,dwCodeLength=sizeof(DWORD),dwIndex=0;
1772 if(HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_FLAG_NUMBER|HTTP_QUERY_STATUS_CODE,&dwCode,&dwCodeLength,&dwIndex) &&
1773 (dwCode==302 || dwCode==301))
1775 WCHAR szNewLocation[2048];
1776 DWORD dwBufferSize=2048;
1778 if(HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_LOCATION,szNewLocation,&dwBufferSize,&dwIndex))
1780 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1781 INTERNET_STATUS_REDIRECT, szNewLocation,
1783 return HTTP_HandleRedirect(lpwhr, szNewLocation, lpszHeaders,
1784 dwHeaderLength, lpOptional, dwOptionalLength);
1790 iar.dwResult = (DWORD)bSuccess;
1791 iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
1793 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1794 INTERNET_STATUS_REQUEST_COMPLETE, &iar,
1795 sizeof(INTERNET_ASYNC_RESULT));
1802 /***********************************************************************
1803 * HTTP_Connect (internal)
1805 * Create http session handle
1808 * HINTERNET a session handle on success
1812 HINTERNET HTTP_Connect(LPWININETAPPINFOW hIC, LPCWSTR lpszServerName,
1813 INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
1814 LPCWSTR lpszPassword, DWORD dwFlags, DWORD dwContext,
1815 DWORD dwInternalFlags)
1817 BOOL bSuccess = FALSE;
1818 LPWININETHTTPSESSIONW lpwhs = NULL;
1819 HINTERNET handle = NULL;
1823 assert( hIC->hdr.htype == WH_HINIT );
1825 hIC->hdr.dwContext = dwContext;
1827 lpwhs = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETHTTPSESSIONW));
1830 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
1835 * According to my tests. The name is not resolved until a request is sent
1838 lpwhs->hdr.htype = WH_HHTTPSESSION;
1839 lpwhs->hdr.lpwhparent = WININET_AddRef( &hIC->hdr );
1840 lpwhs->hdr.dwFlags = dwFlags;
1841 lpwhs->hdr.dwContext = dwContext;
1842 lpwhs->hdr.dwInternalFlags = dwInternalFlags;
1843 lpwhs->hdr.dwRefCount = 1;
1844 lpwhs->hdr.destroy = HTTP_CloseHTTPSessionHandle;
1845 lpwhs->hdr.lpfnStatusCB = hIC->hdr.lpfnStatusCB;
1847 handle = WININET_AllocHandle( &lpwhs->hdr );
1850 ERR("Failed to alloc handle\n");
1851 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
1855 if(hIC->lpszProxy && hIC->dwAccessType == INTERNET_OPEN_TYPE_PROXY) {
1856 if(strchrW(hIC->lpszProxy, ' '))
1857 FIXME("Several proxies not implemented.\n");
1858 if(hIC->lpszProxyBypass)
1859 FIXME("Proxy bypass is ignored.\n");
1861 if (NULL != lpszServerName)
1862 lpwhs->lpszServerName = WININET_strdupW(lpszServerName);
1863 if (NULL != lpszUserName)
1864 lpwhs->lpszUserName = WININET_strdupW(lpszUserName);
1865 lpwhs->nServerPort = nServerPort;
1867 /* Don't send a handle created callback if this handle was created with InternetOpenUrl */
1868 if (!(lpwhs->hdr.dwInternalFlags & INET_OPENURL))
1870 INTERNET_ASYNC_RESULT iar;
1872 iar.dwResult = (DWORD_PTR)handle;
1873 iar.dwError = ERROR_SUCCESS;
1875 SendAsyncCallback(&lpwhs->hdr, dwContext,
1876 INTERNET_STATUS_HANDLE_CREATED, &iar,
1877 sizeof(INTERNET_ASYNC_RESULT));
1884 WININET_Release( &lpwhs->hdr );
1887 * an INTERNET_STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on
1891 TRACE("%p --> %p (%p)\n", hIC, handle, lpwhs);
1896 /***********************************************************************
1897 * HTTP_OpenConnection (internal)
1899 * Connect to a web server
1906 static BOOL HTTP_OpenConnection(LPWININETHTTPREQW lpwhr)
1908 BOOL bSuccess = FALSE;
1909 LPWININETHTTPSESSIONW lpwhs;
1910 LPWININETAPPINFOW hIC = NULL;
1915 if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
1917 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
1921 lpwhs = (LPWININETHTTPSESSIONW)lpwhr->hdr.lpwhparent;
1923 hIC = (LPWININETAPPINFOW) lpwhs->hdr.lpwhparent;
1924 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1925 INTERNET_STATUS_CONNECTING_TO_SERVER,
1926 &(lpwhs->socketAddress),
1927 sizeof(struct sockaddr_in));
1929 if (!NETCON_create(&lpwhr->netConnection, lpwhs->phostent->h_addrtype,
1932 WARN("Socket creation failed\n");
1936 if (!NETCON_connect(&lpwhr->netConnection, (struct sockaddr *)&lpwhs->socketAddress,
1937 sizeof(lpwhs->socketAddress)))
1939 WARN("Unable to connect to host (%s)\n", strerror(errno));
1943 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1944 INTERNET_STATUS_CONNECTED_TO_SERVER,
1945 &(lpwhs->socketAddress),
1946 sizeof(struct sockaddr_in));
1951 TRACE("%d <--\n", bSuccess);
1956 /***********************************************************************
1957 * HTTP_clear_response_headers (internal)
1959 * clear out any old response headers
1961 static void HTTP_clear_response_headers( LPWININETHTTPREQW lpwhr )
1965 for( i=0; i<=HTTP_QUERY_MAX; i++ )
1967 if( !lpwhr->StdHeaders[i].lpszField )
1969 if( !lpwhr->StdHeaders[i].lpszValue )
1971 if ( lpwhr->StdHeaders[i].wFlags & HDR_ISREQUEST )
1973 HTTP_ReplaceHeaderValue( &lpwhr->StdHeaders[i], NULL );
1974 HeapFree( GetProcessHeap(), 0, lpwhr->StdHeaders[i].lpszField );
1975 lpwhr->StdHeaders[i].lpszField = NULL;
1977 for( i=0; i<lpwhr->nCustHeaders; i++)
1979 if( !lpwhr->pCustHeaders[i].lpszField )
1981 if( !lpwhr->pCustHeaders[i].lpszValue )
1983 if ( lpwhr->pCustHeaders[i].wFlags & HDR_ISREQUEST )
1985 HTTP_DeleteCustomHeader( lpwhr, i );
1990 /***********************************************************************
1991 * HTTP_GetResponseHeaders (internal)
1993 * Read server response
2000 static BOOL HTTP_GetResponseHeaders(LPWININETHTTPREQW lpwhr)
2003 WCHAR buffer[MAX_REPLY_LEN];
2004 DWORD buflen = MAX_REPLY_LEN;
2005 BOOL bSuccess = FALSE;
2007 static const WCHAR szCrLf[] = {'\r','\n',0};
2008 char bufferA[MAX_REPLY_LEN];
2009 LPWSTR status_code, status_text;
2010 DWORD cchMaxRawHeaders = 1024;
2011 LPWSTR lpszRawHeaders = HeapAlloc(GetProcessHeap(), 0, (cchMaxRawHeaders+1)*sizeof(WCHAR));
2012 DWORD cchRawHeaders = 0;
2016 /* clear old response headers (eg. from a redirect response) */
2017 HTTP_clear_response_headers( lpwhr );
2019 if (!NETCON_connected(&lpwhr->netConnection))
2023 * HACK peek at the buffer
2025 NETCON_recv(&lpwhr->netConnection, buffer, buflen, MSG_PEEK, &rc);
2028 * We should first receive 'HTTP/1.x nnn OK' where nnn is the status code.
2030 buflen = MAX_REPLY_LEN;
2031 memset(buffer, 0, MAX_REPLY_LEN);
2032 if (!NETCON_getNextLine(&lpwhr->netConnection, bufferA, &buflen))
2034 MultiByteToWideChar( CP_ACP, 0, bufferA, buflen, buffer, MAX_REPLY_LEN );
2036 /* regenerate raw headers */
2037 while (cchRawHeaders + buflen + strlenW(szCrLf) > cchMaxRawHeaders)
2039 cchMaxRawHeaders *= 2;
2040 lpszRawHeaders = HeapReAlloc(GetProcessHeap(), 0, lpszRawHeaders, (cchMaxRawHeaders+1)*sizeof(WCHAR));
2042 memcpy(lpszRawHeaders+cchRawHeaders, buffer, (buflen-1)*sizeof(WCHAR));
2043 cchRawHeaders += (buflen-1);
2044 memcpy(lpszRawHeaders+cchRawHeaders, szCrLf, sizeof(szCrLf));
2045 cchRawHeaders += sizeof(szCrLf)/sizeof(szCrLf[0])-1;
2046 lpszRawHeaders[cchRawHeaders] = '\0';
2048 /* split the version from the status code */
2049 status_code = strchrW( buffer, ' ' );
2054 /* split the status code from the status text */
2055 status_text = strchrW( status_code, ' ' );
2060 TRACE("version [%s] status code [%s] status text [%s]\n",
2061 debugstr_w(buffer), debugstr_w(status_code), debugstr_w(status_text) );
2062 HTTP_ReplaceHeaderValue( &lpwhr->StdHeaders[HTTP_QUERY_VERSION], buffer );
2063 HTTP_ReplaceHeaderValue( &lpwhr->StdHeaders[HTTP_QUERY_STATUS_CODE], status_code );
2064 HTTP_ReplaceHeaderValue( &lpwhr->StdHeaders[HTTP_QUERY_STATUS_TEXT], status_text );
2066 /* Parse each response line */
2069 buflen = MAX_REPLY_LEN;
2070 if (NETCON_getNextLine(&lpwhr->netConnection, bufferA, &buflen))
2072 LPWSTR * pFieldAndValue;
2074 TRACE("got line %s, now interpreting\n", debugstr_a(bufferA));
2075 MultiByteToWideChar( CP_ACP, 0, bufferA, buflen, buffer, MAX_REPLY_LEN );
2077 while (cchRawHeaders + buflen + strlenW(szCrLf) > cchMaxRawHeaders)
2079 cchMaxRawHeaders *= 2;
2080 lpszRawHeaders = HeapReAlloc(GetProcessHeap(), 0, lpszRawHeaders, (cchMaxRawHeaders+1)*sizeof(WCHAR));
2082 memcpy(lpszRawHeaders+cchRawHeaders, buffer, (buflen-1)*sizeof(WCHAR));
2083 cchRawHeaders += (buflen-1);
2084 memcpy(lpszRawHeaders+cchRawHeaders, szCrLf, sizeof(szCrLf));
2085 cchRawHeaders += sizeof(szCrLf)/sizeof(szCrLf[0])-1;
2086 lpszRawHeaders[cchRawHeaders] = '\0';
2088 pFieldAndValue = HTTP_InterpretHttpHeader(buffer);
2089 if (!pFieldAndValue)
2092 HTTP_ProcessHeader(lpwhr, pFieldAndValue[0], pFieldAndValue[1],
2093 HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE);
2095 HTTP_FreeTokens(pFieldAndValue);
2105 HeapFree(GetProcessHeap(), 0, lpwhr->lpszRawHeaders);
2106 lpwhr->lpszRawHeaders = lpszRawHeaders;
2107 TRACE("raw headers: %s\n", debugstr_w(lpszRawHeaders));
2120 static void strip_spaces(LPWSTR start)
2125 while (*str == ' ' && *str != '\0')
2129 memmove(start, str, sizeof(WCHAR) * (strlenW(str) + 1));
2131 end = start + strlenW(start) - 1;
2132 while (end >= start && *end == ' ')
2140 /***********************************************************************
2141 * HTTP_InterpretHttpHeader (internal)
2143 * Parse server response
2147 * Pointer to array of field, value, NULL on success.
2150 static LPWSTR * HTTP_InterpretHttpHeader(LPCWSTR buffer)
2152 LPWSTR * pTokenPair;
2156 pTokenPair = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*pTokenPair)*3);
2158 pszColon = strchrW(buffer, ':');
2159 /* must have two tokens */
2162 HTTP_FreeTokens(pTokenPair);
2164 TRACE("No ':' in line: %s\n", debugstr_w(buffer));
2168 pTokenPair[0] = HeapAlloc(GetProcessHeap(), 0, (pszColon - buffer + 1) * sizeof(WCHAR));
2171 HTTP_FreeTokens(pTokenPair);
2174 memcpy(pTokenPair[0], buffer, (pszColon - buffer) * sizeof(WCHAR));
2175 pTokenPair[0][pszColon - buffer] = '\0';
2179 len = strlenW(pszColon);
2180 pTokenPair[1] = HeapAlloc(GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR));
2183 HTTP_FreeTokens(pTokenPair);
2186 memcpy(pTokenPair[1], pszColon, (len + 1) * sizeof(WCHAR));
2188 strip_spaces(pTokenPair[0]);
2189 strip_spaces(pTokenPair[1]);
2191 TRACE("field(%s) Value(%s)\n", debugstr_w(pTokenPair[0]), debugstr_w(pTokenPair[1]));
2196 /***********************************************************************
2197 * HTTP_GetStdHeaderIndex (internal)
2199 * Lookup field index in standard http header array
2201 * FIXME: This should be stuffed into a hash table
2203 static INT HTTP_GetStdHeaderIndex(LPCWSTR lpszField)
2206 static const WCHAR szContentLength[] = {
2207 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',0};
2208 static const WCHAR szQueryRange[] = {
2209 'R','a','n','g','e',0};
2210 static const WCHAR szContentRange[] = {
2211 'C','o','n','t','e','n','t','-','R','a','n','g','e',0};
2212 static const WCHAR szContentType[] = {
2213 'C','o','n','t','e','n','t','-','T','y','p','e',0};
2214 static const WCHAR szLastModified[] = {
2215 'L','a','s','t','-','M','o','d','i','f','i','e','d',0};
2216 static const WCHAR szLocation[] = {'L','o','c','a','t','i','o','n',0};
2217 static const WCHAR szAccept[] = {'A','c','c','e','p','t',0};
2218 static const WCHAR szReferer[] = { 'R','e','f','e','r','e','r',0};
2219 static const WCHAR szContentTrans[] = { 'C','o','n','t','e','n','t','-',
2220 'T','r','a','n','s','f','e','r','-','E','n','c','o','d','i','n','g',0};
2221 static const WCHAR szDate[] = { 'D','a','t','e',0};
2222 static const WCHAR szServer[] = { 'S','e','r','v','e','r',0};
2223 static const WCHAR szConnection[] = { 'C','o','n','n','e','c','t','i','o','n',0};
2224 static const WCHAR szETag[] = { 'E','T','a','g',0};
2225 static const WCHAR szAcceptRanges[] = {
2226 'A','c','c','e','p','t','-','R','a','n','g','e','s',0 };
2227 static const WCHAR szExpires[] = { 'E','x','p','i','r','e','s',0 };
2228 static const WCHAR szMimeVersion[] = {
2229 'M','i','m','e','-','V','e','r','s','i','o','n', 0};
2230 static const WCHAR szPragma[] = { 'P','r','a','g','m','a', 0};
2231 static const WCHAR szCacheControl[] = {
2232 'C','a','c','h','e','-','C','o','n','t','r','o','l',0};
2233 static const WCHAR szUserAgent[] = { 'U','s','e','r','-','A','g','e','n','t',0};
2234 static const WCHAR szProxyAuth[] = {
2235 'P','r','o','x','y','-',
2236 'A','u','t','h','e','n','t','i','c','a','t','e', 0};
2237 static const WCHAR szContentEncoding[] = {
2238 'C','o','n','t','e','n','t','-','E','n','c','o','d','i','n','g',0};
2239 static const WCHAR szCookie[] = {'C','o','o','k','i','e',0};
2240 static const WCHAR szVary[] = {'V','a','r','y',0};
2241 static const WCHAR szVia[] = {'V','i','a',0};
2243 if (!strcmpiW(lpszField, szContentLength))
2244 index = HTTP_QUERY_CONTENT_LENGTH;
2245 else if (!strcmpiW(lpszField,szQueryRange))
2246 index = HTTP_QUERY_RANGE;
2247 else if (!strcmpiW(lpszField,szContentRange))
2248 index = HTTP_QUERY_CONTENT_RANGE;
2249 else if (!strcmpiW(lpszField,szContentType))
2250 index = HTTP_QUERY_CONTENT_TYPE;
2251 else if (!strcmpiW(lpszField,szLastModified))
2252 index = HTTP_QUERY_LAST_MODIFIED;
2253 else if (!strcmpiW(lpszField,szLocation))
2254 index = HTTP_QUERY_LOCATION;
2255 else if (!strcmpiW(lpszField,szAccept))
2256 index = HTTP_QUERY_ACCEPT;
2257 else if (!strcmpiW(lpszField,szReferer))
2258 index = HTTP_QUERY_REFERER;
2259 else if (!strcmpiW(lpszField,szContentTrans))
2260 index = HTTP_QUERY_CONTENT_TRANSFER_ENCODING;
2261 else if (!strcmpiW(lpszField,szDate))
2262 index = HTTP_QUERY_DATE;
2263 else if (!strcmpiW(lpszField,szServer))
2264 index = HTTP_QUERY_SERVER;
2265 else if (!strcmpiW(lpszField,szConnection))
2266 index = HTTP_QUERY_CONNECTION;
2267 else if (!strcmpiW(lpszField,szETag))
2268 index = HTTP_QUERY_ETAG;
2269 else if (!strcmpiW(lpszField,szAcceptRanges))
2270 index = HTTP_QUERY_ACCEPT_RANGES;
2271 else if (!strcmpiW(lpszField,szExpires))
2272 index = HTTP_QUERY_EXPIRES;
2273 else if (!strcmpiW(lpszField,szMimeVersion))
2274 index = HTTP_QUERY_MIME_VERSION;
2275 else if (!strcmpiW(lpszField,szPragma))
2276 index = HTTP_QUERY_PRAGMA;
2277 else if (!strcmpiW(lpszField,szCacheControl))
2278 index = HTTP_QUERY_CACHE_CONTROL;
2279 else if (!strcmpiW(lpszField,szUserAgent))
2280 index = HTTP_QUERY_USER_AGENT;
2281 else if (!strcmpiW(lpszField,szProxyAuth))
2282 index = HTTP_QUERY_PROXY_AUTHENTICATE;
2283 else if (!strcmpiW(lpszField,szContentEncoding))
2284 index = HTTP_QUERY_CONTENT_ENCODING;
2285 else if (!strcmpiW(lpszField,szCookie))
2286 index = HTTP_QUERY_COOKIE;
2287 else if (!strcmpiW(lpszField,szVary))
2288 index = HTTP_QUERY_VARY;
2289 else if (!strcmpiW(lpszField,szVia))
2290 index = HTTP_QUERY_VIA;
2291 else if (!strcmpiW(lpszField,g_szHost))
2292 index = HTTP_QUERY_HOST;
2295 TRACE("Couldn't find %s in standard header table\n", debugstr_w(lpszField));
2301 /***********************************************************************
2302 * HTTP_ReplaceHeaderValue (internal)
2304 static BOOL HTTP_ReplaceHeaderValue( LPHTTPHEADERW lphttpHdr, LPCWSTR value )
2308 HeapFree( GetProcessHeap(), 0, lphttpHdr->lpszValue );
2309 lphttpHdr->lpszValue = NULL;
2312 len = strlenW(value);
2315 lphttpHdr->lpszValue = HeapAlloc(GetProcessHeap(), 0,
2316 (len+1)*sizeof(WCHAR));
2317 strcpyW(lphttpHdr->lpszValue, value);
2322 /***********************************************************************
2323 * HTTP_ProcessHeader (internal)
2325 * Stuff header into header tables according to <dwModifier>
2329 #define COALESCEFLASG (HTTP_ADDHDR_FLAG_COALESCE|HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA|HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON)
2331 static BOOL HTTP_ProcessHeader(LPWININETHTTPREQW lpwhr, LPCWSTR field, LPCWSTR value, DWORD dwModifier)
2333 LPHTTPHEADERW lphttpHdr = NULL;
2334 BOOL bSuccess = FALSE;
2337 TRACE("--> %s: %s - 0x%08lx\n", debugstr_w(field), debugstr_w(value), dwModifier);
2339 /* Adjust modifier flags */
2340 if (dwModifier & COALESCEFLASG)
2341 dwModifier |= HTTP_ADDHDR_FLAG_ADD;
2343 /* Try to get index into standard header array */
2344 index = HTTP_GetStdHeaderIndex(field);
2345 /* Don't let applications add Connection header to request */
2346 if ((index == HTTP_QUERY_CONNECTION) && (dwModifier & HTTP_ADDHDR_FLAG_REQ))
2348 else if (index >= 0)
2350 lphttpHdr = &lpwhr->StdHeaders[index];
2352 else /* Find or create new custom header */
2354 index = HTTP_GetCustomHeaderIndex(lpwhr, field);
2357 if (dwModifier & HTTP_ADDHDR_FLAG_ADD_IF_NEW)
2361 lphttpHdr = &lpwhr->pCustHeaders[index];
2367 hdr.lpszField = (LPWSTR)field;
2368 hdr.lpszValue = (LPWSTR)value;
2369 hdr.wFlags = hdr.wCount = 0;
2371 if (dwModifier & HTTP_ADDHDR_FLAG_REQ)
2372 hdr.wFlags |= HDR_ISREQUEST;
2374 return HTTP_InsertCustomHeader(lpwhr, &hdr);
2378 if (dwModifier & HTTP_ADDHDR_FLAG_REQ)
2379 lphttpHdr->wFlags |= HDR_ISREQUEST;
2381 lphttpHdr->wFlags &= ~HDR_ISREQUEST;
2383 if (!lphttpHdr->lpszValue && (dwModifier & (HTTP_ADDHDR_FLAG_ADD|HTTP_ADDHDR_FLAG_ADD_IF_NEW)))
2387 if (!lpwhr->StdHeaders[index].lpszField)
2389 lphttpHdr->lpszField = WININET_strdupW(field);
2391 if (dwModifier & HTTP_ADDHDR_FLAG_REQ)
2392 lphttpHdr->wFlags |= HDR_ISREQUEST;
2395 slen = strlenW(value) + 1;
2396 lphttpHdr->lpszValue = HeapAlloc(GetProcessHeap(), 0, slen*sizeof(WCHAR));
2397 if (lphttpHdr->lpszValue)
2399 strcpyW(lphttpHdr->lpszValue, value);
2404 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
2407 else if (lphttpHdr->lpszValue)
2409 if (dwModifier & HTTP_ADDHDR_FLAG_REPLACE)
2410 bSuccess = HTTP_ReplaceHeaderValue( lphttpHdr, value );
2411 else if (dwModifier & COALESCEFLASG)
2416 INT origlen = strlenW(lphttpHdr->lpszValue);
2417 INT valuelen = strlenW(value);
2419 if (dwModifier & HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA)
2422 lphttpHdr->wFlags |= HDR_COMMADELIMITED;
2424 else if (dwModifier & HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON)
2427 lphttpHdr->wFlags |= HDR_COMMADELIMITED;
2430 len = origlen + valuelen + ((ch > 0) ? 1 : 0);
2432 lpsztmp = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, lphttpHdr->lpszValue, (len+1)*sizeof(WCHAR));
2435 lphttpHdr->lpszValue = lpsztmp;
2436 /* FIXME: Increment lphttpHdr->wCount. Perhaps lpszValue should be an array */
2439 lphttpHdr->lpszValue[origlen] = ch;
2443 memcpy(&lphttpHdr->lpszValue[origlen], value, valuelen*sizeof(WCHAR));
2444 lphttpHdr->lpszValue[len] = '\0';
2449 WARN("HeapReAlloc (%d bytes) failed\n",len+1);
2450 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
2454 TRACE("<-- %d\n",bSuccess);
2459 /***********************************************************************
2460 * HTTP_CloseConnection (internal)
2462 * Close socket connection
2465 static VOID HTTP_CloseConnection(LPWININETHTTPREQW lpwhr)
2467 LPWININETHTTPSESSIONW lpwhs = NULL;
2468 LPWININETAPPINFOW hIC = NULL;
2470 TRACE("%p\n",lpwhr);
2472 lpwhs = (LPWININETHTTPSESSIONW) lpwhr->hdr.lpwhparent;
2473 hIC = (LPWININETAPPINFOW) lpwhs->hdr.lpwhparent;
2475 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2476 INTERNET_STATUS_CLOSING_CONNECTION, 0, 0);
2478 if (NETCON_connected(&lpwhr->netConnection))
2480 NETCON_close(&lpwhr->netConnection);
2483 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2484 INTERNET_STATUS_CONNECTION_CLOSED, 0, 0);
2488 /***********************************************************************
2489 * HTTP_CloseHTTPRequestHandle (internal)
2491 * Deallocate request handle
2494 static void HTTP_CloseHTTPRequestHandle(LPWININETHANDLEHEADER hdr)
2497 LPWININETHTTPREQW lpwhr = (LPWININETHTTPREQW) hdr;
2501 if (NETCON_connected(&lpwhr->netConnection))
2502 HTTP_CloseConnection(lpwhr);
2504 HeapFree(GetProcessHeap(), 0, lpwhr->lpszPath);
2505 HeapFree(GetProcessHeap(), 0, lpwhr->lpszVerb);
2506 HeapFree(GetProcessHeap(), 0, lpwhr->lpszRawHeaders);
2508 for (i = 0; i <= HTTP_QUERY_MAX; i++)
2510 HeapFree(GetProcessHeap(), 0, lpwhr->StdHeaders[i].lpszField);
2511 HeapFree(GetProcessHeap(), 0, lpwhr->StdHeaders[i].lpszValue);
2514 for (i = 0; i < lpwhr->nCustHeaders; i++)
2516 HeapFree(GetProcessHeap(), 0, lpwhr->pCustHeaders[i].lpszField);
2517 HeapFree(GetProcessHeap(), 0, lpwhr->pCustHeaders[i].lpszValue);
2520 HeapFree(GetProcessHeap(), 0, lpwhr->pCustHeaders);
2521 HeapFree(GetProcessHeap(), 0, lpwhr);
2525 /***********************************************************************
2526 * HTTP_CloseHTTPSessionHandle (internal)
2528 * Deallocate session handle
2531 static void HTTP_CloseHTTPSessionHandle(LPWININETHANDLEHEADER hdr)
2533 LPWININETHTTPSESSIONW lpwhs = (LPWININETHTTPSESSIONW) hdr;
2535 TRACE("%p\n", lpwhs);
2537 HeapFree(GetProcessHeap(), 0, lpwhs->lpszServerName);
2538 HeapFree(GetProcessHeap(), 0, lpwhs->lpszUserName);
2539 HeapFree(GetProcessHeap(), 0, lpwhs);
2543 /***********************************************************************
2544 * HTTP_GetCustomHeaderIndex (internal)
2546 * Return index of custom header from header array
2549 static INT HTTP_GetCustomHeaderIndex(LPWININETHTTPREQW lpwhr, LPCWSTR lpszField)
2553 TRACE("%s\n", debugstr_w(lpszField));
2555 for (index = 0; index < lpwhr->nCustHeaders; index++)
2557 if (!strcmpiW(lpwhr->pCustHeaders[index].lpszField, lpszField))
2562 if (index >= lpwhr->nCustHeaders)
2565 TRACE("Return: %ld\n", index);
2570 /***********************************************************************
2571 * HTTP_InsertCustomHeader (internal)
2573 * Insert header into array
2576 static BOOL HTTP_InsertCustomHeader(LPWININETHTTPREQW lpwhr, LPHTTPHEADERW lpHdr)
2579 LPHTTPHEADERW lph = NULL;
2582 TRACE("--> %s: %s\n", debugstr_w(lpHdr->lpszField), debugstr_w(lpHdr->lpszValue));
2583 count = lpwhr->nCustHeaders + 1;
2585 lph = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, lpwhr->pCustHeaders, sizeof(HTTPHEADERW) * count);
2587 lph = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(HTTPHEADERW) * count);
2591 lpwhr->pCustHeaders = lph;
2592 lpwhr->pCustHeaders[count-1].lpszField = WININET_strdupW(lpHdr->lpszField);
2593 lpwhr->pCustHeaders[count-1].lpszValue = WININET_strdupW(lpHdr->lpszValue);
2594 lpwhr->pCustHeaders[count-1].wFlags = lpHdr->wFlags;
2595 lpwhr->pCustHeaders[count-1].wCount= lpHdr->wCount;
2596 lpwhr->nCustHeaders++;
2601 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
2608 /***********************************************************************
2609 * HTTP_DeleteCustomHeader (internal)
2611 * Delete header from array
2612 * If this function is called, the indexs may change.
2614 static BOOL HTTP_DeleteCustomHeader(LPWININETHTTPREQW lpwhr, DWORD index)
2616 if( lpwhr->nCustHeaders <= 0 )
2618 if( index >= lpwhr->nCustHeaders )
2620 lpwhr->nCustHeaders--;
2622 memmove( &lpwhr->pCustHeaders[index], &lpwhr->pCustHeaders[index+1],
2623 (lpwhr->nCustHeaders - index)* sizeof(HTTPHEADERW) );
2624 memset( &lpwhr->pCustHeaders[lpwhr->nCustHeaders], 0, sizeof(HTTPHEADERW) );
2629 /***********************************************************************
2630 * IsHostInProxyBypassList (@)
2635 BOOL WINAPI IsHostInProxyBypassList(DWORD flags, LPCSTR szHost, DWORD length)
2637 FIXME("STUB: flags=%ld host=%s length=%ld\n",flags,szHost,length);