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
8 * Copyright 2005 Aric Stewart for CodeWeavers
9 * Copyright 2006 Robert Shearman for CodeWeavers
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/port.h"
32 #include <sys/types.h>
33 #ifdef HAVE_SYS_SOCKET_H
34 # include <sys/socket.h>
36 #ifdef HAVE_ARPA_INET_H
37 # include <arpa/inet.h>
53 #define NO_SHLWAPI_STREAM
54 #define NO_SHLWAPI_REG
55 #define NO_SHLWAPI_STRFCNS
56 #define NO_SHLWAPI_GDI
60 #include "wine/debug.h"
61 #include "wine/unicode.h"
63 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
65 static const WCHAR g_szHttp1_0[] = {' ','H','T','T','P','/','1','.','0',0 };
66 static const WCHAR g_szHttp1_1[] = {' ','H','T','T','P','/','1','.','1',0 };
67 static const WCHAR g_szReferer[] = {'R','e','f','e','r','e','r',0};
68 static const WCHAR g_szAccept[] = {'A','c','c','e','p','t',0};
69 static const WCHAR g_szUserAgent[] = {'U','s','e','r','-','A','g','e','n','t',0};
70 static const WCHAR szHost[] = { 'H','o','s','t',0 };
71 static const WCHAR szProxy_Authorization[] = { 'P','r','o','x','y','-','A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
72 static const WCHAR szStatus[] = { 'S','t','a','t','u','s',0 };
73 static const WCHAR szKeepAlive[] = {'K','e','e','p','-','A','l','i','v','e',0};
75 #define MAXHOSTNAME 100
76 #define MAX_FIELD_VALUE_LEN 256
77 #define MAX_FIELD_LEN 256
79 #define HTTP_REFERER g_szReferer
80 #define HTTP_ACCEPT g_szAccept
81 #define HTTP_USERAGENT g_szUserAgent
83 #define HTTP_ADDHDR_FLAG_ADD 0x20000000
84 #define HTTP_ADDHDR_FLAG_ADD_IF_NEW 0x10000000
85 #define HTTP_ADDHDR_FLAG_COALESCE 0x40000000
86 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA 0x40000000
87 #define HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON 0x01000000
88 #define HTTP_ADDHDR_FLAG_REPLACE 0x80000000
89 #define HTTP_ADDHDR_FLAG_REQ 0x02000000
92 static void HTTP_CloseHTTPRequestHandle(LPWININETHANDLEHEADER hdr);
93 static void HTTP_CloseHTTPSessionHandle(LPWININETHANDLEHEADER hdr);
94 static BOOL HTTP_OpenConnection(LPWININETHTTPREQW lpwhr);
95 static BOOL HTTP_GetResponseHeaders(LPWININETHTTPREQW lpwhr);
96 static BOOL HTTP_ProcessHeader(LPWININETHTTPREQW lpwhr, LPCWSTR field, LPCWSTR value, DWORD dwModifier);
97 static LPWSTR * HTTP_InterpretHttpHeader(LPCWSTR buffer);
98 static BOOL HTTP_InsertCustomHeader(LPWININETHTTPREQW lpwhr, LPHTTPHEADERW lpHdr);
99 static INT HTTP_GetCustomHeaderIndex(LPWININETHTTPREQW lpwhr, LPCWSTR lpszField, INT index, BOOL Request);
100 static BOOL HTTP_DeleteCustomHeader(LPWININETHTTPREQW lpwhr, DWORD index);
101 static LPWSTR HTTP_build_req( LPCWSTR *list, int len );
102 static BOOL HTTP_InsertProxyAuthorization( LPWININETHTTPREQW lpwhr,
103 LPCWSTR username, LPCWSTR password );
104 static BOOL WINAPI HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr, DWORD
105 dwInfoLevel, LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD
107 static BOOL HTTP_HandleRedirect(LPWININETHTTPREQW lpwhr, LPCWSTR lpszUrl);
110 LPHTTPHEADERW HTTP_GetHeader(LPWININETHTTPREQW req, LPCWSTR head)
113 HeaderIndex = HTTP_GetCustomHeaderIndex(req, head, 0, TRUE);
114 if (HeaderIndex == -1)
117 return &req->pCustHeaders[HeaderIndex];
120 /***********************************************************************
121 * HTTP_Tokenize (internal)
123 * Tokenize a string, allocating memory for the tokens.
125 static LPWSTR * HTTP_Tokenize(LPCWSTR string, LPCWSTR token_string)
127 LPWSTR * token_array;
132 /* empty string has no tokens */
136 for (i = 0; string[i]; i++)
137 if (!strncmpW(string+i, token_string, strlenW(token_string)))
141 /* we want to skip over separators, but not the null terminator */
142 for (j = 0; j < strlenW(token_string) - 1; j++)
148 /* add 1 for terminating NULL */
149 token_array = HeapAlloc(GetProcessHeap(), 0, (tokens+1) * sizeof(*token_array));
150 token_array[tokens] = NULL;
153 for (i = 0; i < tokens; i++)
156 next_token = strstrW(string, token_string);
157 if (!next_token) next_token = string+strlenW(string);
158 len = next_token - string;
159 token_array[i] = HeapAlloc(GetProcessHeap(), 0, (len+1)*sizeof(WCHAR));
160 memcpy(token_array[i], string, len*sizeof(WCHAR));
161 token_array[i][len] = '\0';
162 string = next_token+strlenW(token_string);
167 /***********************************************************************
168 * HTTP_FreeTokens (internal)
170 * Frees memory returned from HTTP_Tokenize.
172 static void HTTP_FreeTokens(LPWSTR * token_array)
175 for (i = 0; token_array[i]; i++)
176 HeapFree(GetProcessHeap(), 0, token_array[i]);
177 HeapFree(GetProcessHeap(), 0, token_array);
180 /* **********************************************************************
182 * Helper functions for the HttpSendRequest(Ex) functions
185 static void AsyncHttpSendRequestProc(WORKREQUEST *workRequest)
187 struct WORKREQ_HTTPSENDREQUESTW const *req = &workRequest->u.HttpSendRequestW;
188 LPWININETHTTPREQW lpwhr = (LPWININETHTTPREQW) workRequest->hdr;
190 TRACE("%p\n", lpwhr);
192 HTTP_HttpSendRequestW(lpwhr, req->lpszHeader,
193 req->dwHeaderLength, req->lpOptional, req->dwOptionalLength,
194 req->dwContentLength, req->bEndRequest);
196 HeapFree(GetProcessHeap(), 0, req->lpszHeader);
199 static void HTTP_FixVerb( LPWININETHTTPREQW lpwhr )
201 /* if the verb is NULL default to GET */
202 if (NULL == lpwhr->lpszVerb)
204 static const WCHAR szGET[] = { 'G','E','T', 0 };
205 lpwhr->lpszVerb = WININET_strdupW(szGET);
209 static void HTTP_FixURL( LPWININETHTTPREQW lpwhr)
211 static const WCHAR szSlash[] = { '/',0 };
212 static const WCHAR szHttp[] = { 'h','t','t','p',':','/','/', 0 };
214 /* If we don't have a path we set it to root */
215 if (NULL == lpwhr->lpszPath)
216 lpwhr->lpszPath = WININET_strdupW(szSlash);
217 else /* remove \r and \n*/
219 int nLen = strlenW(lpwhr->lpszPath);
220 while ((nLen >0 ) && ((lpwhr->lpszPath[nLen-1] == '\r')||(lpwhr->lpszPath[nLen-1] == '\n')))
223 lpwhr->lpszPath[nLen]='\0';
225 /* Replace '\' with '/' */
228 if (lpwhr->lpszPath[nLen] == '\\') lpwhr->lpszPath[nLen]='/';
232 if(CSTR_EQUAL != CompareStringW( LOCALE_SYSTEM_DEFAULT, NORM_IGNORECASE,
233 lpwhr->lpszPath, strlenW(szHttp), szHttp, strlenW(szHttp) )
234 && lpwhr->lpszPath[0] != '/') /* not an absolute path ?? --> fix it !! */
236 WCHAR *fixurl = HeapAlloc(GetProcessHeap(), 0,
237 (strlenW(lpwhr->lpszPath) + 2)*sizeof(WCHAR));
239 strcpyW(fixurl + 1, lpwhr->lpszPath);
240 HeapFree( GetProcessHeap(), 0, lpwhr->lpszPath );
241 lpwhr->lpszPath = fixurl;
245 static LPWSTR HTTP_BuildHeaderRequestString( LPWININETHTTPREQW lpwhr, LPCWSTR verb, LPCWSTR path, BOOL http1_1 )
247 LPWSTR requestString;
253 static const WCHAR szSpace[] = { ' ',0 };
254 static const WCHAR szcrlf[] = {'\r','\n', 0};
255 static const WCHAR szColon[] = { ':',' ',0 };
256 static const WCHAR sztwocrlf[] = {'\r','\n','\r','\n', 0};
258 /* allocate space for an array of all the string pointers to be added */
259 len = (lpwhr->nCustHeaders)*4 + 9;
260 req = HeapAlloc( GetProcessHeap(), 0, len*sizeof(LPCWSTR) );
262 /* add the verb, path and HTTP version string */
267 req[n++] = http1_1 ? g_szHttp1_1 : g_szHttp1_0;
269 /* Append custom request heades */
270 for (i = 0; i < lpwhr->nCustHeaders; i++)
272 if (lpwhr->pCustHeaders[i].wFlags & HDR_ISREQUEST)
275 req[n++] = lpwhr->pCustHeaders[i].lpszField;
277 req[n++] = lpwhr->pCustHeaders[i].lpszValue;
279 TRACE("Adding custom header %s (%s)\n",
280 debugstr_w(lpwhr->pCustHeaders[i].lpszField),
281 debugstr_w(lpwhr->pCustHeaders[i].lpszValue));
286 ERR("oops. buffer overrun\n");
289 requestString = HTTP_build_req( req, 4 );
290 HeapFree( GetProcessHeap(), 0, req );
293 * Set (header) termination string for request
294 * Make sure there's exactly two new lines at the end of the request
296 p = &requestString[strlenW(requestString)-1];
297 while ( (*p == '\n') || (*p == '\r') )
299 strcpyW( p+1, sztwocrlf );
301 return requestString;
304 static void HTTP_ProcessHeaders( LPWININETHTTPREQW lpwhr )
306 static const WCHAR szSet_Cookie[] = { 'S','e','t','-','C','o','o','k','i','e',0 };
308 LPHTTPHEADERW setCookieHeader;
310 HeaderIndex = HTTP_GetCustomHeaderIndex(lpwhr, szSet_Cookie, 0, FALSE);
311 if (HeaderIndex == -1)
313 setCookieHeader = &lpwhr->pCustHeaders[HeaderIndex];
315 if (!(lpwhr->hdr.dwFlags & INTERNET_FLAG_NO_COOKIES) && setCookieHeader->lpszValue)
317 int nPosStart = 0, nPosEnd = 0, len;
318 static const WCHAR szFmt[] = { 'h','t','t','p',':','/','/','%','s','/',0};
320 while (setCookieHeader->lpszValue[nPosEnd] != '\0')
322 LPWSTR buf_cookie, cookie_name, cookie_data;
324 LPWSTR domain = NULL;
328 while (setCookieHeader->lpszValue[nPosEnd] != ';' && setCookieHeader->lpszValue[nPosEnd] != ',' &&
329 setCookieHeader->lpszValue[nPosEnd] != '\0')
333 if (setCookieHeader->lpszValue[nPosEnd] == ';')
335 /* fixme: not case sensitive, strcasestr is gnu only */
336 int nDomainPosEnd = 0;
337 int nDomainPosStart = 0, nDomainLength = 0;
338 static const WCHAR szDomain[] = {'d','o','m','a','i','n','=',0};
339 LPWSTR lpszDomain = strstrW(&setCookieHeader->lpszValue[nPosEnd], szDomain);
341 { /* they have specified their own domain, lets use it */
342 while (lpszDomain[nDomainPosEnd] != ';' && lpszDomain[nDomainPosEnd] != ',' &&
343 lpszDomain[nDomainPosEnd] != '\0')
347 nDomainPosStart = strlenW(szDomain);
348 nDomainLength = (nDomainPosEnd - nDomainPosStart) + 1;
349 domain = HeapAlloc(GetProcessHeap(), 0, (nDomainLength + 1)*sizeof(WCHAR));
350 lstrcpynW(domain, &lpszDomain[nDomainPosStart], nDomainLength + 1);
353 if (setCookieHeader->lpszValue[nPosEnd] == '\0') break;
354 buf_cookie = HeapAlloc(GetProcessHeap(), 0, ((nPosEnd - nPosStart) + 1)*sizeof(WCHAR));
355 lstrcpynW(buf_cookie, &setCookieHeader->lpszValue[nPosStart], (nPosEnd - nPosStart) + 1);
356 TRACE("%s\n", debugstr_w(buf_cookie));
357 while (buf_cookie[nEqualPos] != '=' && buf_cookie[nEqualPos] != '\0')
361 if (buf_cookie[nEqualPos] == '\0' || buf_cookie[nEqualPos + 1] == '\0')
363 HeapFree(GetProcessHeap(), 0, buf_cookie);
367 cookie_name = HeapAlloc(GetProcessHeap(), 0, (nEqualPos + 1)*sizeof(WCHAR));
368 lstrcpynW(cookie_name, buf_cookie, nEqualPos + 1);
369 cookie_data = &buf_cookie[nEqualPos + 1];
371 Host = HTTP_GetHeader(lpwhr,szHost);
372 len = lstrlenW((domain ? domain : (Host?Host->lpszValue:NULL))) +
373 strlenW(lpwhr->lpszPath) + 9;
374 buf_url = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
375 sprintfW(buf_url, szFmt, (domain ? domain : (Host?Host->lpszValue:NULL))); /* FIXME PATH!!! */
376 InternetSetCookieW(buf_url, cookie_name, cookie_data);
378 HeapFree(GetProcessHeap(), 0, buf_url);
379 HeapFree(GetProcessHeap(), 0, buf_cookie);
380 HeapFree(GetProcessHeap(), 0, cookie_name);
381 HeapFree(GetProcessHeap(), 0, domain);
387 static void HTTP_AddProxyInfo( LPWININETHTTPREQW lpwhr )
389 LPWININETHTTPSESSIONW lpwhs = lpwhr->lpHttpSession;
390 LPWININETAPPINFOW hIC = lpwhs->lpAppInfo;
392 assert(lpwhs->hdr.htype == WH_HHTTPSESSION);
393 assert(hIC->hdr.htype == WH_HINIT);
395 if (hIC && (hIC->lpszProxyUsername || hIC->lpszProxyPassword ))
396 HTTP_InsertProxyAuthorization(lpwhr, hIC->lpszProxyUsername,
397 hIC->lpszProxyPassword);
400 /***********************************************************************
401 * HTTP_HttpAddRequestHeadersW (internal)
403 static BOOL WINAPI HTTP_HttpAddRequestHeadersW(LPWININETHTTPREQW lpwhr,
404 LPCWSTR lpszHeader, DWORD dwHeaderLength, DWORD dwModifier)
409 BOOL bSuccess = FALSE;
412 TRACE("copying header: %s\n", debugstr_w(lpszHeader));
414 if( dwHeaderLength == ~0U )
415 len = strlenW(lpszHeader);
417 len = dwHeaderLength;
418 buffer = HeapAlloc( GetProcessHeap(), 0, sizeof(WCHAR)*(len+1) );
419 lstrcpynW( buffer, lpszHeader, len + 1);
425 LPWSTR * pFieldAndValue;
429 while (*lpszEnd != '\0')
431 if (*lpszEnd == '\r' && *(lpszEnd + 1) == '\n')
436 if (*lpszStart == '\0')
439 if (*lpszEnd == '\r')
442 lpszEnd += 2; /* Jump over \r\n */
444 TRACE("interpreting header %s\n", debugstr_w(lpszStart));
445 pFieldAndValue = HTTP_InterpretHttpHeader(lpszStart);
448 bSuccess = HTTP_ProcessHeader(lpwhr, pFieldAndValue[0],
449 pFieldAndValue[1], dwModifier | HTTP_ADDHDR_FLAG_REQ);
450 HTTP_FreeTokens(pFieldAndValue);
456 HeapFree(GetProcessHeap(), 0, buffer);
461 /***********************************************************************
462 * HttpAddRequestHeadersW (WININET.@)
464 * Adds one or more HTTP header to the request handler
471 BOOL WINAPI HttpAddRequestHeadersW(HINTERNET hHttpRequest,
472 LPCWSTR lpszHeader, DWORD dwHeaderLength, DWORD dwModifier)
474 BOOL bSuccess = FALSE;
475 LPWININETHTTPREQW lpwhr;
477 TRACE("%p, %s, %i, %i\n", hHttpRequest, debugstr_w(lpszHeader), dwHeaderLength,
483 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hHttpRequest );
484 if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
486 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
489 bSuccess = HTTP_HttpAddRequestHeadersW( lpwhr, lpszHeader, dwHeaderLength, dwModifier );
492 WININET_Release( &lpwhr->hdr );
497 /***********************************************************************
498 * HttpAddRequestHeadersA (WININET.@)
500 * Adds one or more HTTP header to the request handler
507 BOOL WINAPI HttpAddRequestHeadersA(HINTERNET hHttpRequest,
508 LPCSTR lpszHeader, DWORD dwHeaderLength, DWORD dwModifier)
514 TRACE("%p, %s, %i, %i\n", hHttpRequest, debugstr_a(lpszHeader), dwHeaderLength,
517 len = MultiByteToWideChar( CP_ACP, 0, lpszHeader, dwHeaderLength, NULL, 0 );
518 hdr = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
519 MultiByteToWideChar( CP_ACP, 0, lpszHeader, dwHeaderLength, hdr, len );
520 if( dwHeaderLength != ~0U )
521 dwHeaderLength = len;
523 r = HttpAddRequestHeadersW( hHttpRequest, hdr, dwHeaderLength, dwModifier );
525 HeapFree( GetProcessHeap(), 0, hdr );
530 /* read any content returned by the server so that the connection can be
532 static void HTTP_DrainContent(LPWININETHTTPREQW lpwhr)
538 if (!INTERNET_ReadFile(&lpwhr->hdr, buffer, sizeof(buffer), &bytes_read,
541 } while (bytes_read);
544 /***********************************************************************
545 * HttpEndRequestA (WININET.@)
547 * Ends an HTTP request that was started by HttpSendRequestEx
554 BOOL WINAPI HttpEndRequestA(HINTERNET hRequest,
555 LPINTERNET_BUFFERSA lpBuffersOut, DWORD dwFlags, DWORD dwContext)
557 LPINTERNET_BUFFERSA ptr;
558 LPINTERNET_BUFFERSW lpBuffersOutW,ptrW;
561 TRACE("(%p, %p, %08x, %08x): stub\n", hRequest, lpBuffersOut, dwFlags,
566 lpBuffersOutW = (LPINTERNET_BUFFERSW)HeapAlloc(GetProcessHeap(),
567 HEAP_ZERO_MEMORY, sizeof(INTERNET_BUFFERSW));
569 lpBuffersOutW = NULL;
571 ptrW = lpBuffersOutW;
574 if (ptr->lpvBuffer && ptr->dwBufferLength)
575 ptrW->lpvBuffer = HeapAlloc(GetProcessHeap(),0,ptr->dwBufferLength);
576 ptrW->dwBufferLength = ptr->dwBufferLength;
577 ptrW->dwBufferTotal= ptr->dwBufferTotal;
580 ptrW->Next = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,
581 sizeof(INTERNET_BUFFERSW));
587 rc = HttpEndRequestW(hRequest, lpBuffersOutW, dwFlags, dwContext);
591 ptrW = lpBuffersOutW;
594 LPINTERNET_BUFFERSW ptrW2;
596 FIXME("Do we need to translate info out of these buffer?\n");
598 HeapFree(GetProcessHeap(),0,(LPVOID)ptrW->lpvBuffer);
600 HeapFree(GetProcessHeap(),0,ptrW);
608 /***********************************************************************
609 * HttpEndRequestW (WININET.@)
611 * Ends an HTTP request that was started by HttpSendRequestEx
618 BOOL WINAPI HttpEndRequestW(HINTERNET hRequest,
619 LPINTERNET_BUFFERSW lpBuffersOut, DWORD dwFlags, DWORD dwContext)
622 LPWININETHTTPREQW lpwhr;
627 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hRequest );
629 if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
631 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
635 lpwhr->hdr.dwFlags |= dwFlags;
636 lpwhr->hdr.dwContext = dwContext;
638 /* We appear to do nothing with lpBuffersOut.. is that correct? */
640 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
641 INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
643 responseLen = HTTP_GetResponseHeaders(lpwhr);
647 SendAsyncCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
648 INTERNET_STATUS_RESPONSE_RECEIVED, &responseLen, sizeof(DWORD));
650 /* process headers here. Is this right? */
651 HTTP_ProcessHeaders(lpwhr);
653 dwBufferSize = sizeof(lpwhr->dwContentLength);
654 if (!HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_FLAG_NUMBER|HTTP_QUERY_CONTENT_LENGTH,
655 &lpwhr->dwContentLength,&dwBufferSize,NULL))
656 lpwhr->dwContentLength = -1;
658 if (lpwhr->dwContentLength == 0)
659 HTTP_FinishedReading(lpwhr);
661 if(!(lpwhr->hdr.dwFlags & INTERNET_FLAG_NO_AUTO_REDIRECT))
663 DWORD dwCode,dwCodeLength=sizeof(DWORD);
664 if(HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_FLAG_NUMBER|HTTP_QUERY_STATUS_CODE,&dwCode,&dwCodeLength,NULL) &&
665 (dwCode==302 || dwCode==301))
667 WCHAR szNewLocation[2048];
668 dwBufferSize=sizeof(szNewLocation);
669 if(HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_LOCATION,szNewLocation,&dwBufferSize,NULL))
671 static const WCHAR szGET[] = { 'G','E','T', 0 };
672 /* redirects are always GETs */
673 HeapFree(GetProcessHeap(),0,lpwhr->lpszVerb);
674 lpwhr->lpszVerb = WININET_strdupW(szGET);
675 HTTP_DrainContent(lpwhr);
676 rc = HTTP_HandleRedirect(lpwhr, szNewLocation);
678 rc = HTTP_HttpSendRequestW(lpwhr, NULL, 0, NULL, 0, 0, TRUE);
683 TRACE("%i <--\n",rc);
687 /***********************************************************************
688 * HttpOpenRequestW (WININET.@)
690 * Open a HTTP request handle
693 * HINTERNET a HTTP request handle on success
697 HINTERNET WINAPI HttpOpenRequestW(HINTERNET hHttpSession,
698 LPCWSTR lpszVerb, LPCWSTR lpszObjectName, LPCWSTR lpszVersion,
699 LPCWSTR lpszReferrer , LPCWSTR *lpszAcceptTypes,
700 DWORD dwFlags, DWORD dwContext)
702 LPWININETHTTPSESSIONW lpwhs;
703 HINTERNET handle = NULL;
705 TRACE("(%p, %s, %s, %s, %s, %p, %08x, %08x)\n", hHttpSession,
706 debugstr_w(lpszVerb), debugstr_w(lpszObjectName),
707 debugstr_w(lpszVersion), debugstr_w(lpszReferrer), lpszAcceptTypes,
709 if(lpszAcceptTypes!=NULL)
712 for(i=0;lpszAcceptTypes[i]!=NULL;i++)
713 TRACE("\taccept type: %s\n",debugstr_w(lpszAcceptTypes[i]));
716 lpwhs = (LPWININETHTTPSESSIONW) WININET_GetObject( hHttpSession );
717 if (NULL == lpwhs || lpwhs->hdr.htype != WH_HHTTPSESSION)
719 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
724 * My tests seem to show that the windows version does not
725 * become asynchronous until after this point. And anyhow
726 * if this call was asynchronous then how would you get the
727 * necessary HINTERNET pointer returned by this function.
730 handle = HTTP_HttpOpenRequestW(lpwhs, lpszVerb, lpszObjectName,
731 lpszVersion, lpszReferrer, lpszAcceptTypes,
735 WININET_Release( &lpwhs->hdr );
736 TRACE("returning %p\n", handle);
741 /***********************************************************************
742 * HttpOpenRequestA (WININET.@)
744 * Open a HTTP request handle
747 * HINTERNET a HTTP request handle on success
751 HINTERNET WINAPI HttpOpenRequestA(HINTERNET hHttpSession,
752 LPCSTR lpszVerb, LPCSTR lpszObjectName, LPCSTR lpszVersion,
753 LPCSTR lpszReferrer , LPCSTR *lpszAcceptTypes,
754 DWORD dwFlags, DWORD dwContext)
756 LPWSTR szVerb = NULL, szObjectName = NULL;
757 LPWSTR szVersion = NULL, szReferrer = NULL, *szAcceptTypes = NULL;
759 INT acceptTypesCount;
760 HINTERNET rc = FALSE;
761 TRACE("(%p, %s, %s, %s, %s, %p, %08x, %08x)\n", hHttpSession,
762 debugstr_a(lpszVerb), debugstr_a(lpszObjectName),
763 debugstr_a(lpszVersion), debugstr_a(lpszReferrer), lpszAcceptTypes,
768 len = MultiByteToWideChar(CP_ACP, 0, lpszVerb, -1, NULL, 0 );
769 szVerb = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR) );
772 MultiByteToWideChar(CP_ACP, 0, lpszVerb, -1, szVerb, len);
777 len = MultiByteToWideChar(CP_ACP, 0, lpszObjectName, -1, NULL, 0 );
778 szObjectName = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR) );
781 MultiByteToWideChar(CP_ACP, 0, lpszObjectName, -1, szObjectName, len );
786 len = MultiByteToWideChar(CP_ACP, 0, lpszVersion, -1, NULL, 0 );
787 szVersion = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
790 MultiByteToWideChar(CP_ACP, 0, lpszVersion, -1, szVersion, len );
795 len = MultiByteToWideChar(CP_ACP, 0, lpszReferrer, -1, NULL, 0 );
796 szReferrer = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
799 MultiByteToWideChar(CP_ACP, 0, lpszReferrer, -1, szReferrer, len );
802 acceptTypesCount = 0;
805 /* find out how many there are */
806 while (lpszAcceptTypes[acceptTypesCount] && *lpszAcceptTypes[acceptTypesCount])
808 szAcceptTypes = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR *) * (acceptTypesCount+1));
809 acceptTypesCount = 0;
810 while (lpszAcceptTypes[acceptTypesCount] && *lpszAcceptTypes[acceptTypesCount])
812 len = MultiByteToWideChar(CP_ACP, 0, lpszAcceptTypes[acceptTypesCount],
814 szAcceptTypes[acceptTypesCount] = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
815 if (!szAcceptTypes[acceptTypesCount] )
817 MultiByteToWideChar(CP_ACP, 0, lpszAcceptTypes[acceptTypesCount],
818 -1, szAcceptTypes[acceptTypesCount], len );
821 szAcceptTypes[acceptTypesCount] = NULL;
823 else szAcceptTypes = 0;
825 rc = HttpOpenRequestW(hHttpSession, szVerb, szObjectName,
826 szVersion, szReferrer,
827 (LPCWSTR*)szAcceptTypes, dwFlags, dwContext);
832 acceptTypesCount = 0;
833 while (szAcceptTypes[acceptTypesCount])
835 HeapFree(GetProcessHeap(), 0, szAcceptTypes[acceptTypesCount]);
838 HeapFree(GetProcessHeap(), 0, szAcceptTypes);
840 HeapFree(GetProcessHeap(), 0, szReferrer);
841 HeapFree(GetProcessHeap(), 0, szVersion);
842 HeapFree(GetProcessHeap(), 0, szObjectName);
843 HeapFree(GetProcessHeap(), 0, szVerb);
848 /***********************************************************************
851 static UINT HTTP_EncodeBase64( LPCSTR bin, unsigned int len, LPWSTR base64 )
854 static const CHAR HTTP_Base64Enc[] =
855 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
859 /* first 6 bits, all from bin[0] */
860 base64[n++] = HTTP_Base64Enc[(bin[0] & 0xfc) >> 2];
861 x = (bin[0] & 3) << 4;
863 /* next 6 bits, 2 from bin[0] and 4 from bin[1] */
866 base64[n++] = HTTP_Base64Enc[x];
871 base64[n++] = HTTP_Base64Enc[ x | ( (bin[1]&0xf0) >> 4 ) ];
872 x = ( bin[1] & 0x0f ) << 2;
874 /* next 6 bits 4 from bin[1] and 2 from bin[2] */
877 base64[n++] = HTTP_Base64Enc[x];
881 base64[n++] = HTTP_Base64Enc[ x | ( (bin[2]&0xc0 ) >> 6 ) ];
883 /* last 6 bits, all from bin [2] */
884 base64[n++] = HTTP_Base64Enc[ bin[2] & 0x3f ];
892 /***********************************************************************
893 * HTTP_EncodeBasicAuth
895 * Encode the basic authentication string for HTTP 1.1
897 static LPWSTR HTTP_EncodeBasicAuth( LPCWSTR username, LPCWSTR password)
902 static const WCHAR szBasic[] = {'B','a','s','i','c',' ',0};
903 int userlen = WideCharToMultiByte(CP_UTF8, 0, username, lstrlenW(username), NULL, 0, NULL, NULL);
904 int passlen = WideCharToMultiByte(CP_UTF8, 0, password, lstrlenW(password), NULL, 0, NULL, NULL);
906 in = HeapAlloc( GetProcessHeap(), 0, userlen + 1 + passlen );
910 len = lstrlenW(szBasic) +
911 (lstrlenW( username ) + 1 + lstrlenW ( password ))*2 + 1 + 1;
912 out = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
915 WideCharToMultiByte(CP_UTF8, 0, username, -1, in, userlen, NULL, NULL);
917 WideCharToMultiByte(CP_UTF8, 0, password, -1, &in[userlen+1], passlen, NULL, NULL);
918 lstrcpyW( out, szBasic );
919 HTTP_EncodeBase64( in, userlen + 1 + passlen, &out[strlenW(out)] );
921 HeapFree( GetProcessHeap(), 0, in );
926 /***********************************************************************
927 * HTTP_InsertProxyAuthorization
929 * Insert the basic authorization field in the request header
931 static BOOL HTTP_InsertProxyAuthorization( LPWININETHTTPREQW lpwhr,
932 LPCWSTR username, LPCWSTR password )
934 WCHAR *authorization = HTTP_EncodeBasicAuth( username, password );
940 TRACE( "Inserting authorization: %s\n", debugstr_w( authorization ) );
942 HTTP_ProcessHeader(lpwhr, szProxy_Authorization, authorization,
943 HTTP_ADDHDR_FLAG_REPLACE);
945 HeapFree( GetProcessHeap(), 0, authorization );
950 /***********************************************************************
953 static BOOL HTTP_DealWithProxy( LPWININETAPPINFOW hIC,
954 LPWININETHTTPSESSIONW lpwhs, LPWININETHTTPREQW lpwhr)
956 WCHAR buf[MAXHOSTNAME];
957 WCHAR proxy[MAXHOSTNAME + 15]; /* 15 == "http://" + sizeof(port#) + ":/\0" */
959 static WCHAR szNul[] = { 0 };
960 URL_COMPONENTSW UrlComponents;
961 static const WCHAR szHttp[] = { 'h','t','t','p',':','/','/',0 }, szSlash[] = { '/',0 } ;
962 static const WCHAR szFormat1[] = { 'h','t','t','p',':','/','/','%','s',0 };
963 static const WCHAR szFormat2[] = { 'h','t','t','p',':','/','/','%','s',':','%','d',0 };
966 memset( &UrlComponents, 0, sizeof UrlComponents );
967 UrlComponents.dwStructSize = sizeof UrlComponents;
968 UrlComponents.lpszHostName = buf;
969 UrlComponents.dwHostNameLength = MAXHOSTNAME;
971 if( CSTR_EQUAL != CompareStringW(LOCALE_SYSTEM_DEFAULT, NORM_IGNORECASE,
972 hIC->lpszProxy,strlenW(szHttp),szHttp,strlenW(szHttp)) )
973 sprintfW(proxy, szFormat1, hIC->lpszProxy);
975 strcpyW(proxy, hIC->lpszProxy);
976 if( !InternetCrackUrlW(proxy, 0, 0, &UrlComponents) )
978 if( UrlComponents.dwHostNameLength == 0 )
981 if( !lpwhr->lpszPath )
982 lpwhr->lpszPath = szNul;
983 TRACE("server=%s path=%s\n",
984 debugstr_w(lpwhs->lpszHostName), debugstr_w(lpwhr->lpszPath));
985 /* for constant 15 see above */
986 len = strlenW(lpwhs->lpszHostName) + strlenW(lpwhr->lpszPath) + 15;
987 url = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
989 if(UrlComponents.nPort == INTERNET_INVALID_PORT_NUMBER)
990 UrlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
992 sprintfW(url, szFormat2, lpwhs->lpszHostName, lpwhs->nHostPort);
994 if( lpwhr->lpszPath[0] != '/' )
995 strcatW( url, szSlash );
996 strcatW(url, lpwhr->lpszPath);
997 if(lpwhr->lpszPath != szNul)
998 HeapFree(GetProcessHeap(), 0, lpwhr->lpszPath);
999 lpwhr->lpszPath = url;
1001 HeapFree(GetProcessHeap(), 0, lpwhs->lpszServerName);
1002 lpwhs->lpszServerName = WININET_strdupW(UrlComponents.lpszHostName);
1003 lpwhs->nServerPort = UrlComponents.nPort;
1008 static BOOL HTTP_ResolveName(LPWININETHTTPREQW lpwhr)
1011 LPWININETHTTPSESSIONW lpwhs = lpwhr->lpHttpSession;
1013 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1014 INTERNET_STATUS_RESOLVING_NAME,
1015 lpwhs->lpszServerName,
1016 strlenW(lpwhs->lpszServerName)+1);
1018 if (!GetAddress(lpwhs->lpszServerName, lpwhs->nServerPort,
1019 &lpwhs->socketAddress))
1021 INTERNET_SetLastError(ERROR_INTERNET_NAME_NOT_RESOLVED);
1025 inet_ntop(lpwhs->socketAddress.sin_family, &lpwhs->socketAddress.sin_addr,
1026 szaddr, sizeof(szaddr));
1027 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
1028 INTERNET_STATUS_NAME_RESOLVED,
1029 szaddr, strlen(szaddr)+1);
1033 /***********************************************************************
1034 * HTTP_HttpOpenRequestW (internal)
1036 * Open a HTTP request handle
1039 * HINTERNET a HTTP request handle on success
1043 HINTERNET WINAPI HTTP_HttpOpenRequestW(LPWININETHTTPSESSIONW lpwhs,
1044 LPCWSTR lpszVerb, LPCWSTR lpszObjectName, LPCWSTR lpszVersion,
1045 LPCWSTR lpszReferrer , LPCWSTR *lpszAcceptTypes,
1046 DWORD dwFlags, DWORD dwContext)
1048 LPWININETAPPINFOW hIC = NULL;
1049 LPWININETHTTPREQW lpwhr;
1051 LPWSTR lpszUrl = NULL;
1053 HINTERNET handle = NULL;
1054 static const WCHAR szUrlForm[] = {'h','t','t','p',':','/','/','%','s',0};
1060 assert( lpwhs->hdr.htype == WH_HHTTPSESSION );
1061 hIC = lpwhs->lpAppInfo;
1063 lpwhr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETHTTPREQW));
1066 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
1069 lpwhr->hdr.htype = WH_HHTTPREQ;
1070 lpwhr->hdr.dwFlags = dwFlags;
1071 lpwhr->hdr.dwContext = dwContext;
1072 lpwhr->hdr.dwRefCount = 1;
1073 lpwhr->hdr.destroy = HTTP_CloseHTTPRequestHandle;
1074 lpwhr->hdr.lpfnStatusCB = lpwhs->hdr.lpfnStatusCB;
1075 lpwhr->hdr.dwInternalFlags = lpwhs->hdr.dwInternalFlags & INET_CALLBACKW;
1077 WININET_AddRef( &lpwhs->hdr );
1078 lpwhr->lpHttpSession = lpwhs;
1080 handle = WININET_AllocHandle( &lpwhr->hdr );
1083 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
1087 if (!NETCON_init(&lpwhr->netConnection, dwFlags & INTERNET_FLAG_SECURE))
1089 InternetCloseHandle( handle );
1094 if (NULL != lpszObjectName && strlenW(lpszObjectName)) {
1098 rc = UrlEscapeW(lpszObjectName, NULL, &len, URL_ESCAPE_SPACES_ONLY);
1099 if (rc != E_POINTER)
1100 len = strlenW(lpszObjectName)+1;
1101 lpwhr->lpszPath = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
1102 rc = UrlEscapeW(lpszObjectName, lpwhr->lpszPath, &len,
1103 URL_ESCAPE_SPACES_ONLY);
1106 ERR("Unable to escape string!(%s) (%d)\n",debugstr_w(lpszObjectName),rc);
1107 strcpyW(lpwhr->lpszPath,lpszObjectName);
1111 if (NULL != lpszReferrer && strlenW(lpszReferrer))
1112 HTTP_ProcessHeader(lpwhr, HTTP_REFERER, lpszReferrer, HTTP_ADDHDR_FLAG_COALESCE);
1114 if (lpszAcceptTypes)
1117 for (i = 0; lpszAcceptTypes[i]; i++)
1119 if (!*lpszAcceptTypes[i]) continue;
1120 HTTP_ProcessHeader(lpwhr, HTTP_ACCEPT, lpszAcceptTypes[i],
1121 HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA |
1122 HTTP_ADDHDR_FLAG_REQ |
1123 (i == 0 ? HTTP_ADDHDR_FLAG_REPLACE : 0));
1127 if (NULL == lpszVerb)
1129 static const WCHAR szGet[] = {'G','E','T',0};
1130 lpwhr->lpszVerb = WININET_strdupW(szGet);
1132 else if (strlenW(lpszVerb))
1133 lpwhr->lpszVerb = WININET_strdupW(lpszVerb);
1135 if (NULL != lpszReferrer && strlenW(lpszReferrer))
1137 WCHAR buf[MAXHOSTNAME];
1138 URL_COMPONENTSW UrlComponents;
1140 memset( &UrlComponents, 0, sizeof UrlComponents );
1141 UrlComponents.dwStructSize = sizeof UrlComponents;
1142 UrlComponents.lpszHostName = buf;
1143 UrlComponents.dwHostNameLength = MAXHOSTNAME;
1145 InternetCrackUrlW(lpszReferrer, 0, 0, &UrlComponents);
1146 if (strlenW(UrlComponents.lpszHostName))
1147 HTTP_ProcessHeader(lpwhr, szHost, UrlComponents.lpszHostName, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE | HTTP_ADDHDR_FLAG_REQ);
1150 HTTP_ProcessHeader(lpwhr, szHost, lpwhs->lpszHostName, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE | HTTP_ADDHDR_FLAG_REQ);
1152 if (lpwhs->nServerPort == INTERNET_INVALID_PORT_NUMBER)
1153 lpwhs->nServerPort = (dwFlags & INTERNET_FLAG_SECURE ?
1154 INTERNET_DEFAULT_HTTPS_PORT :
1155 INTERNET_DEFAULT_HTTP_PORT);
1156 lpwhs->nHostPort = lpwhs->nServerPort;
1158 if (NULL != hIC->lpszProxy && hIC->lpszProxy[0] != 0)
1159 HTTP_DealWithProxy( hIC, lpwhs, lpwhr );
1163 WCHAR *agent_header;
1164 static const WCHAR user_agent[] = {'U','s','e','r','-','A','g','e','n','t',':',' ','%','s','\r','\n',0 };
1166 len = strlenW(hIC->lpszAgent) + strlenW(user_agent);
1167 agent_header = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1168 sprintfW(agent_header, user_agent, hIC->lpszAgent );
1170 HTTP_HttpAddRequestHeadersW(lpwhr, agent_header, strlenW(agent_header),
1171 HTTP_ADDREQ_FLAG_ADD);
1172 HeapFree(GetProcessHeap(), 0, agent_header);
1175 Host = HTTP_GetHeader(lpwhr,szHost);
1177 len = lstrlenW(Host->lpszValue) + strlenW(szUrlForm);
1178 lpszUrl = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
1179 sprintfW( lpszUrl, szUrlForm, Host->lpszValue );
1181 if (!(lpwhr->hdr.dwFlags & INTERNET_FLAG_NO_COOKIES) &&
1182 InternetGetCookieW(lpszUrl, NULL, NULL, &nCookieSize))
1185 static const WCHAR szCookie[] = {'C','o','o','k','i','e',':',' ',0};
1186 static const WCHAR szcrlf[] = {'\r','\n',0};
1188 lpszCookies = HeapAlloc(GetProcessHeap(), 0, (nCookieSize + 1 + 8)*sizeof(WCHAR));
1190 cnt += sprintfW(lpszCookies, szCookie);
1191 InternetGetCookieW(lpszUrl, NULL, lpszCookies + cnt, &nCookieSize);
1192 strcatW(lpszCookies, szcrlf);
1194 HTTP_HttpAddRequestHeadersW(lpwhr, lpszCookies, strlenW(lpszCookies),
1195 HTTP_ADDREQ_FLAG_ADD);
1196 HeapFree(GetProcessHeap(), 0, lpszCookies);
1198 HeapFree(GetProcessHeap(), 0, lpszUrl);
1201 INTERNET_SendCallback(&lpwhs->hdr, dwContext,
1202 INTERNET_STATUS_HANDLE_CREATED, &handle,
1206 * A STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on windows
1209 if (!HTTP_ResolveName(lpwhr))
1211 InternetCloseHandle( handle );
1217 WININET_Release( &lpwhr->hdr );
1219 TRACE("<-- %p (%p)\n", handle, lpwhr);
1223 static const WCHAR szAccept[] = { 'A','c','c','e','p','t',0 };
1224 static const WCHAR szAccept_Charset[] = { 'A','c','c','e','p','t','-','C','h','a','r','s','e','t', 0 };
1225 static const WCHAR szAccept_Encoding[] = { 'A','c','c','e','p','t','-','E','n','c','o','d','i','n','g',0 };
1226 static const WCHAR szAccept_Language[] = { 'A','c','c','e','p','t','-','L','a','n','g','u','a','g','e',0 };
1227 static const WCHAR szAccept_Ranges[] = { 'A','c','c','e','p','t','-','R','a','n','g','e','s',0 };
1228 static const WCHAR szAge[] = { 'A','g','e',0 };
1229 static const WCHAR szAllow[] = { 'A','l','l','o','w',0 };
1230 static const WCHAR szAuthorization[] = { 'A','u','t','h','o','r','i','z','a','t','i','o','n',0 };
1231 static const WCHAR szCache_Control[] = { 'C','a','c','h','e','-','C','o','n','t','r','o','l',0 };
1232 static const WCHAR szConnection[] = { 'C','o','n','n','e','c','t','i','o','n',0 };
1233 static const WCHAR szContent_Base[] = { 'C','o','n','t','e','n','t','-','B','a','s','e',0 };
1234 static const WCHAR szContent_Encoding[] = { 'C','o','n','t','e','n','t','-','E','n','c','o','d','i','n','g',0 };
1235 static const WCHAR szContent_ID[] = { 'C','o','n','t','e','n','t','-','I','D',0 };
1236 static const WCHAR szContent_Language[] = { 'C','o','n','t','e','n','t','-','L','a','n','g','u','a','g','e',0 };
1237 static const WCHAR szContent_Length[] = { 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',0 };
1238 static const WCHAR szContent_Location[] = { 'C','o','n','t','e','n','t','-','L','o','c','a','t','i','o','n',0 };
1239 static const WCHAR szContent_MD5[] = { 'C','o','n','t','e','n','t','-','M','D','5',0 };
1240 static const WCHAR szContent_Range[] = { 'C','o','n','t','e','n','t','-','R','a','n','g','e',0 };
1241 static const WCHAR szContent_Transfer_Encoding[] = { 'C','o','n','t','e','n','t','-','T','r','a','n','s','f','e','r','-','E','n','c','o','d','i','n','g',0 };
1242 static const WCHAR szContent_Type[] = { 'C','o','n','t','e','n','t','-','T','y','p','e',0 };
1243 static const WCHAR szCookie[] = { 'C','o','o','k','i','e',0 };
1244 static const WCHAR szDate[] = { 'D','a','t','e',0 };
1245 static const WCHAR szFrom[] = { 'F','r','o','m',0 };
1246 static const WCHAR szETag[] = { 'E','T','a','g',0 };
1247 static const WCHAR szExpect[] = { 'E','x','p','e','c','t',0 };
1248 static const WCHAR szExpires[] = { 'E','x','p','i','r','e','s',0 };
1249 static const WCHAR szIf_Match[] = { 'I','f','-','M','a','t','c','h',0 };
1250 static const WCHAR szIf_Modified_Since[] = { 'I','f','-','M','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
1251 static const WCHAR szIf_None_Match[] = { 'I','f','-','N','o','n','e','-','M','a','t','c','h',0 };
1252 static const WCHAR szIf_Range[] = { 'I','f','-','R','a','n','g','e',0 };
1253 static const WCHAR szIf_Unmodified_Since[] = { 'I','f','-','U','n','m','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
1254 static const WCHAR szLast_Modified[] = { 'L','a','s','t','-','M','o','d','i','f','i','e','d',0 };
1255 static const WCHAR szLocation[] = { 'L','o','c','a','t','i','o','n',0 };
1256 static const WCHAR szMax_Forwards[] = { 'M','a','x','-','F','o','r','w','a','r','d','s',0 };
1257 static const WCHAR szMime_Version[] = { 'M','i','m','e','-','V','e','r','s','i','o','n',0 };
1258 static const WCHAR szPragma[] = { 'P','r','a','g','m','a',0 };
1259 static const WCHAR szProxy_Authenticate[] = { 'P','r','o','x','y','-','A','u','t','h','e','n','t','i','c','a','t','e',0 };
1260 static const WCHAR szProxy_Connection[] = { 'P','r','o','x','y','-','C','o','n','n','e','c','t','i','o','n',0 };
1261 static const WCHAR szPublic[] = { 'P','u','b','l','i','c',0 };
1262 static const WCHAR szRange[] = { 'R','a','n','g','e',0 };
1263 static const WCHAR szReferer[] = { 'R','e','f','e','r','e','r',0 };
1264 static const WCHAR szRetry_After[] = { 'R','e','t','r','y','-','A','f','t','e','r',0 };
1265 static const WCHAR szServer[] = { 'S','e','r','v','e','r',0 };
1266 static const WCHAR szSet_Cookie[] = { 'S','e','t','-','C','o','o','k','i','e',0 };
1267 static const WCHAR szTransfer_Encoding[] = { 'T','r','a','n','s','f','e','r','-','E','n','c','o','d','i','n','g',0 };
1268 static const WCHAR szUnless_Modified_Since[] = { 'U','n','l','e','s','s','-','M','o','d','i','f','i','e','d','-','S','i','n','c','e',0 };
1269 static const WCHAR szUpgrade[] = { 'U','p','g','r','a','d','e',0 };
1270 static const WCHAR szURI[] = { 'U','R','I',0 };
1271 static const WCHAR szUser_Agent[] = { 'U','s','e','r','-','A','g','e','n','t',0 };
1272 static const WCHAR szVary[] = { 'V','a','r','y',0 };
1273 static const WCHAR szVia[] = { 'V','i','a',0 };
1274 static const WCHAR szWarning[] = { 'W','a','r','n','i','n','g',0 };
1275 static const WCHAR szWWW_Authenticate[] = { 'W','W','W','-','A','u','t','h','e','n','t','i','c','a','t','e',0 };
1277 static const LPCWSTR header_lookup[] = {
1278 szMime_Version, /* HTTP_QUERY_MIME_VERSION = 0 */
1279 szContent_Type, /* HTTP_QUERY_CONTENT_TYPE = 1 */
1280 szContent_Transfer_Encoding,/* HTTP_QUERY_CONTENT_TRANSFER_ENCODING = 2 */
1281 szContent_ID, /* HTTP_QUERY_CONTENT_ID = 3 */
1282 NULL, /* HTTP_QUERY_CONTENT_DESCRIPTION = 4 */
1283 szContent_Length, /* HTTP_QUERY_CONTENT_LENGTH = 5 */
1284 szContent_Language, /* HTTP_QUERY_CONTENT_LANGUAGE = 6 */
1285 szAllow, /* HTTP_QUERY_ALLOW = 7 */
1286 szPublic, /* HTTP_QUERY_PUBLIC = 8 */
1287 szDate, /* HTTP_QUERY_DATE = 9 */
1288 szExpires, /* HTTP_QUERY_EXPIRES = 10 */
1289 szLast_Modified, /* HTTP_QUERY_LAST_MODIFIED = 11 */
1290 NULL, /* HTTP_QUERY_MESSAGE_ID = 12 */
1291 szURI, /* HTTP_QUERY_URI = 13 */
1292 szFrom, /* HTTP_QUERY_DERIVED_FROM = 14 */
1293 NULL, /* HTTP_QUERY_COST = 15 */
1294 NULL, /* HTTP_QUERY_LINK = 16 */
1295 szPragma, /* HTTP_QUERY_PRAGMA = 17 */
1296 NULL, /* HTTP_QUERY_VERSION = 18 */
1297 szStatus, /* HTTP_QUERY_STATUS_CODE = 19 */
1298 NULL, /* HTTP_QUERY_STATUS_TEXT = 20 */
1299 NULL, /* HTTP_QUERY_RAW_HEADERS = 21 */
1300 NULL, /* HTTP_QUERY_RAW_HEADERS_CRLF = 22 */
1301 szConnection, /* HTTP_QUERY_CONNECTION = 23 */
1302 szAccept, /* HTTP_QUERY_ACCEPT = 24 */
1303 szAccept_Charset, /* HTTP_QUERY_ACCEPT_CHARSET = 25 */
1304 szAccept_Encoding, /* HTTP_QUERY_ACCEPT_ENCODING = 26 */
1305 szAccept_Language, /* HTTP_QUERY_ACCEPT_LANGUAGE = 27 */
1306 szAuthorization, /* HTTP_QUERY_AUTHORIZATION = 28 */
1307 szContent_Encoding, /* HTTP_QUERY_CONTENT_ENCODING = 29 */
1308 NULL, /* HTTP_QUERY_FORWARDED = 30 */
1309 NULL, /* HTTP_QUERY_FROM = 31 */
1310 szIf_Modified_Since, /* HTTP_QUERY_IF_MODIFIED_SINCE = 32 */
1311 szLocation, /* HTTP_QUERY_LOCATION = 33 */
1312 NULL, /* HTTP_QUERY_ORIG_URI = 34 */
1313 szReferer, /* HTTP_QUERY_REFERER = 35 */
1314 szRetry_After, /* HTTP_QUERY_RETRY_AFTER = 36 */
1315 szServer, /* HTTP_QUERY_SERVER = 37 */
1316 NULL, /* HTTP_TITLE = 38 */
1317 szUser_Agent, /* HTTP_QUERY_USER_AGENT = 39 */
1318 szWWW_Authenticate, /* HTTP_QUERY_WWW_AUTHENTICATE = 40 */
1319 szProxy_Authenticate, /* HTTP_QUERY_PROXY_AUTHENTICATE = 41 */
1320 szAccept_Ranges, /* HTTP_QUERY_ACCEPT_RANGES = 42 */
1321 szSet_Cookie, /* HTTP_QUERY_SET_COOKIE = 43 */
1322 szCookie, /* HTTP_QUERY_COOKIE = 44 */
1323 NULL, /* HTTP_QUERY_REQUEST_METHOD = 45 */
1324 NULL, /* HTTP_QUERY_REFRESH = 46 */
1325 NULL, /* HTTP_QUERY_CONTENT_DISPOSITION = 47 */
1326 szAge, /* HTTP_QUERY_AGE = 48 */
1327 szCache_Control, /* HTTP_QUERY_CACHE_CONTROL = 49 */
1328 szContent_Base, /* HTTP_QUERY_CONTENT_BASE = 50 */
1329 szContent_Location, /* HTTP_QUERY_CONTENT_LOCATION = 51 */
1330 szContent_MD5, /* HTTP_QUERY_CONTENT_MD5 = 52 */
1331 szContent_Range, /* HTTP_QUERY_CONTENT_RANGE = 53 */
1332 szETag, /* HTTP_QUERY_ETAG = 54 */
1333 szHost, /* HTTP_QUERY_HOST = 55 */
1334 szIf_Match, /* HTTP_QUERY_IF_MATCH = 56 */
1335 szIf_None_Match, /* HTTP_QUERY_IF_NONE_MATCH = 57 */
1336 szIf_Range, /* HTTP_QUERY_IF_RANGE = 58 */
1337 szIf_Unmodified_Since, /* HTTP_QUERY_IF_UNMODIFIED_SINCE = 59 */
1338 szMax_Forwards, /* HTTP_QUERY_MAX_FORWARDS = 60 */
1339 szProxy_Authorization, /* HTTP_QUERY_PROXY_AUTHORIZATION = 61 */
1340 szRange, /* HTTP_QUERY_RANGE = 62 */
1341 szTransfer_Encoding, /* HTTP_QUERY_TRANSFER_ENCODING = 63 */
1342 szUpgrade, /* HTTP_QUERY_UPGRADE = 64 */
1343 szVary, /* HTTP_QUERY_VARY = 65 */
1344 szVia, /* HTTP_QUERY_VIA = 66 */
1345 szWarning, /* HTTP_QUERY_WARNING = 67 */
1346 szExpect, /* HTTP_QUERY_EXPECT = 68 */
1347 szProxy_Connection, /* HTTP_QUERY_PROXY_CONNECTION = 69 */
1348 szUnless_Modified_Since, /* HTTP_QUERY_UNLESS_MODIFIED_SINCE = 70 */
1351 #define LAST_TABLE_HEADER (sizeof(header_lookup)/sizeof(header_lookup[0]))
1353 /***********************************************************************
1354 * HTTP_HttpQueryInfoW (internal)
1356 static BOOL WINAPI HTTP_HttpQueryInfoW( LPWININETHTTPREQW lpwhr, DWORD dwInfoLevel,
1357 LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex)
1359 LPHTTPHEADERW lphttpHdr = NULL;
1360 BOOL bSuccess = FALSE;
1361 BOOL request_only = dwInfoLevel & HTTP_QUERY_FLAG_REQUEST_HEADERS;
1362 INT requested_index = lpdwIndex ? *lpdwIndex : 0;
1363 INT level = (dwInfoLevel & ~HTTP_QUERY_MODIFIER_FLAGS_MASK);
1366 /* Find requested header structure */
1369 case HTTP_QUERY_CUSTOM:
1370 index = HTTP_GetCustomHeaderIndex(lpwhr, lpBuffer, requested_index, request_only);
1373 case HTTP_QUERY_RAW_HEADERS_CRLF:
1375 DWORD len = strlenW(lpwhr->lpszRawHeaders);
1376 if (len + 1 > *lpdwBufferLength/sizeof(WCHAR))
1378 *lpdwBufferLength = (len + 1) * sizeof(WCHAR);
1379 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1382 memcpy(lpBuffer, lpwhr->lpszRawHeaders, (len+1)*sizeof(WCHAR));
1383 *lpdwBufferLength = len * sizeof(WCHAR);
1385 TRACE("returning data: %s\n", debugstr_wn((WCHAR*)lpBuffer, len));
1389 case HTTP_QUERY_RAW_HEADERS:
1391 static const WCHAR szCrLf[] = {'\r','\n',0};
1392 LPWSTR * ppszRawHeaderLines = HTTP_Tokenize(lpwhr->lpszRawHeaders, szCrLf);
1394 LPWSTR pszString = (WCHAR*)lpBuffer;
1396 for (i = 0; ppszRawHeaderLines[i]; i++)
1397 size += strlenW(ppszRawHeaderLines[i]) + 1;
1399 if (size + 1 > *lpdwBufferLength/sizeof(WCHAR))
1401 HTTP_FreeTokens(ppszRawHeaderLines);
1402 *lpdwBufferLength = (size + 1) * sizeof(WCHAR);
1403 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1407 for (i = 0; ppszRawHeaderLines[i]; i++)
1409 DWORD len = strlenW(ppszRawHeaderLines[i]);
1410 memcpy(pszString, ppszRawHeaderLines[i], (len+1)*sizeof(WCHAR));
1415 TRACE("returning data: %s\n", debugstr_wn((WCHAR*)lpBuffer, size));
1417 *lpdwBufferLength = size * sizeof(WCHAR);
1418 HTTP_FreeTokens(ppszRawHeaderLines);
1422 case HTTP_QUERY_STATUS_TEXT:
1423 if (lpwhr->lpszStatusText)
1425 DWORD len = strlenW(lpwhr->lpszStatusText);
1426 if (len + 1 > *lpdwBufferLength/sizeof(WCHAR))
1428 *lpdwBufferLength = (len + 1) * sizeof(WCHAR);
1429 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1432 memcpy(lpBuffer, lpwhr->lpszStatusText, (len+1)*sizeof(WCHAR));
1433 *lpdwBufferLength = len * sizeof(WCHAR);
1435 TRACE("returning data: %s\n", debugstr_wn((WCHAR*)lpBuffer, len));
1440 case HTTP_QUERY_VERSION:
1441 if (lpwhr->lpszVersion)
1443 DWORD len = strlenW(lpwhr->lpszVersion);
1444 if (len + 1 > *lpdwBufferLength/sizeof(WCHAR))
1446 *lpdwBufferLength = (len + 1) * sizeof(WCHAR);
1447 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1450 memcpy(lpBuffer, lpwhr->lpszVersion, (len+1)*sizeof(WCHAR));
1451 *lpdwBufferLength = len * sizeof(WCHAR);
1453 TRACE("returning data: %s\n", debugstr_wn((WCHAR*)lpBuffer, len));
1459 assert (LAST_TABLE_HEADER == (HTTP_QUERY_UNLESS_MODIFIED_SINCE + 1));
1461 if (level >= 0 && level < LAST_TABLE_HEADER && header_lookup[level])
1462 index = HTTP_GetCustomHeaderIndex(lpwhr, header_lookup[level],
1463 requested_index,request_only);
1467 lphttpHdr = &lpwhr->pCustHeaders[index];
1469 /* Ensure header satisifies requested attributes */
1471 ((dwInfoLevel & HTTP_QUERY_FLAG_REQUEST_HEADERS) &&
1472 (~lphttpHdr->wFlags & HDR_ISREQUEST)))
1474 INTERNET_SetLastError(ERROR_HTTP_HEADER_NOT_FOUND);
1481 /* coalesce value to reuqested type */
1482 if (dwInfoLevel & HTTP_QUERY_FLAG_NUMBER)
1484 *(int *)lpBuffer = atoiW(lphttpHdr->lpszValue);
1487 TRACE(" returning number : %d\n", *(int *)lpBuffer);
1489 else if (dwInfoLevel & HTTP_QUERY_FLAG_SYSTEMTIME)
1495 tmpTime = ConvertTimeString(lphttpHdr->lpszValue);
1497 tmpTM = *gmtime(&tmpTime);
1498 STHook = (SYSTEMTIME *) lpBuffer;
1502 STHook->wDay = tmpTM.tm_mday;
1503 STHook->wHour = tmpTM.tm_hour;
1504 STHook->wMilliseconds = 0;
1505 STHook->wMinute = tmpTM.tm_min;
1506 STHook->wDayOfWeek = tmpTM.tm_wday;
1507 STHook->wMonth = tmpTM.tm_mon + 1;
1508 STHook->wSecond = tmpTM.tm_sec;
1509 STHook->wYear = tmpTM.tm_year;
1513 TRACE(" returning time : %04d/%02d/%02d - %d - %02d:%02d:%02d.%02d\n",
1514 STHook->wYear, STHook->wMonth, STHook->wDay, STHook->wDayOfWeek,
1515 STHook->wHour, STHook->wMinute, STHook->wSecond, STHook->wMilliseconds);
1517 else if (lphttpHdr->lpszValue)
1519 DWORD len = (strlenW(lphttpHdr->lpszValue) + 1) * sizeof(WCHAR);
1521 if (len > *lpdwBufferLength)
1523 *lpdwBufferLength = len;
1524 INTERNET_SetLastError(ERROR_INSUFFICIENT_BUFFER);
1528 memcpy(lpBuffer, lphttpHdr->lpszValue, len);
1529 *lpdwBufferLength = len - sizeof(WCHAR);
1532 TRACE(" returning string : %s\n", debugstr_w(lpBuffer));
1537 /***********************************************************************
1538 * HttpQueryInfoW (WININET.@)
1540 * Queries for information about an HTTP request
1547 BOOL WINAPI HttpQueryInfoW(HINTERNET hHttpRequest, DWORD dwInfoLevel,
1548 LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex)
1550 BOOL bSuccess = FALSE;
1551 LPWININETHTTPREQW lpwhr;
1553 if (TRACE_ON(wininet)) {
1554 #define FE(x) { x, #x }
1555 static const wininet_flag_info query_flags[] = {
1556 FE(HTTP_QUERY_MIME_VERSION),
1557 FE(HTTP_QUERY_CONTENT_TYPE),
1558 FE(HTTP_QUERY_CONTENT_TRANSFER_ENCODING),
1559 FE(HTTP_QUERY_CONTENT_ID),
1560 FE(HTTP_QUERY_CONTENT_DESCRIPTION),
1561 FE(HTTP_QUERY_CONTENT_LENGTH),
1562 FE(HTTP_QUERY_CONTENT_LANGUAGE),
1563 FE(HTTP_QUERY_ALLOW),
1564 FE(HTTP_QUERY_PUBLIC),
1565 FE(HTTP_QUERY_DATE),
1566 FE(HTTP_QUERY_EXPIRES),
1567 FE(HTTP_QUERY_LAST_MODIFIED),
1568 FE(HTTP_QUERY_MESSAGE_ID),
1570 FE(HTTP_QUERY_DERIVED_FROM),
1571 FE(HTTP_QUERY_COST),
1572 FE(HTTP_QUERY_LINK),
1573 FE(HTTP_QUERY_PRAGMA),
1574 FE(HTTP_QUERY_VERSION),
1575 FE(HTTP_QUERY_STATUS_CODE),
1576 FE(HTTP_QUERY_STATUS_TEXT),
1577 FE(HTTP_QUERY_RAW_HEADERS),
1578 FE(HTTP_QUERY_RAW_HEADERS_CRLF),
1579 FE(HTTP_QUERY_CONNECTION),
1580 FE(HTTP_QUERY_ACCEPT),
1581 FE(HTTP_QUERY_ACCEPT_CHARSET),
1582 FE(HTTP_QUERY_ACCEPT_ENCODING),
1583 FE(HTTP_QUERY_ACCEPT_LANGUAGE),
1584 FE(HTTP_QUERY_AUTHORIZATION),
1585 FE(HTTP_QUERY_CONTENT_ENCODING),
1586 FE(HTTP_QUERY_FORWARDED),
1587 FE(HTTP_QUERY_FROM),
1588 FE(HTTP_QUERY_IF_MODIFIED_SINCE),
1589 FE(HTTP_QUERY_LOCATION),
1590 FE(HTTP_QUERY_ORIG_URI),
1591 FE(HTTP_QUERY_REFERER),
1592 FE(HTTP_QUERY_RETRY_AFTER),
1593 FE(HTTP_QUERY_SERVER),
1594 FE(HTTP_QUERY_TITLE),
1595 FE(HTTP_QUERY_USER_AGENT),
1596 FE(HTTP_QUERY_WWW_AUTHENTICATE),
1597 FE(HTTP_QUERY_PROXY_AUTHENTICATE),
1598 FE(HTTP_QUERY_ACCEPT_RANGES),
1599 FE(HTTP_QUERY_SET_COOKIE),
1600 FE(HTTP_QUERY_COOKIE),
1601 FE(HTTP_QUERY_REQUEST_METHOD),
1602 FE(HTTP_QUERY_REFRESH),
1603 FE(HTTP_QUERY_CONTENT_DISPOSITION),
1605 FE(HTTP_QUERY_CACHE_CONTROL),
1606 FE(HTTP_QUERY_CONTENT_BASE),
1607 FE(HTTP_QUERY_CONTENT_LOCATION),
1608 FE(HTTP_QUERY_CONTENT_MD5),
1609 FE(HTTP_QUERY_CONTENT_RANGE),
1610 FE(HTTP_QUERY_ETAG),
1611 FE(HTTP_QUERY_HOST),
1612 FE(HTTP_QUERY_IF_MATCH),
1613 FE(HTTP_QUERY_IF_NONE_MATCH),
1614 FE(HTTP_QUERY_IF_RANGE),
1615 FE(HTTP_QUERY_IF_UNMODIFIED_SINCE),
1616 FE(HTTP_QUERY_MAX_FORWARDS),
1617 FE(HTTP_QUERY_PROXY_AUTHORIZATION),
1618 FE(HTTP_QUERY_RANGE),
1619 FE(HTTP_QUERY_TRANSFER_ENCODING),
1620 FE(HTTP_QUERY_UPGRADE),
1621 FE(HTTP_QUERY_VARY),
1623 FE(HTTP_QUERY_WARNING),
1624 FE(HTTP_QUERY_CUSTOM)
1626 static const wininet_flag_info modifier_flags[] = {
1627 FE(HTTP_QUERY_FLAG_REQUEST_HEADERS),
1628 FE(HTTP_QUERY_FLAG_SYSTEMTIME),
1629 FE(HTTP_QUERY_FLAG_NUMBER),
1630 FE(HTTP_QUERY_FLAG_COALESCE)
1633 DWORD info_mod = dwInfoLevel & HTTP_QUERY_MODIFIER_FLAGS_MASK;
1634 DWORD info = dwInfoLevel & HTTP_QUERY_HEADER_MASK;
1637 TRACE("(%p, 0x%08x)--> %d\n", hHttpRequest, dwInfoLevel, dwInfoLevel);
1638 TRACE(" Attribute:");
1639 for (i = 0; i < (sizeof(query_flags) / sizeof(query_flags[0])); i++) {
1640 if (query_flags[i].val == info) {
1641 TRACE(" %s", query_flags[i].name);
1645 if (i == (sizeof(query_flags) / sizeof(query_flags[0]))) {
1646 TRACE(" Unknown (%08x)", info);
1649 TRACE(" Modifier:");
1650 for (i = 0; i < (sizeof(modifier_flags) / sizeof(modifier_flags[0])); i++) {
1651 if (modifier_flags[i].val & info_mod) {
1652 TRACE(" %s", modifier_flags[i].name);
1653 info_mod &= ~ modifier_flags[i].val;
1658 TRACE(" Unknown (%08x)", info_mod);
1663 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hHttpRequest );
1664 if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
1666 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1670 bSuccess = HTTP_HttpQueryInfoW( lpwhr, dwInfoLevel,
1671 lpBuffer, lpdwBufferLength, lpdwIndex);
1675 WININET_Release( &lpwhr->hdr );
1677 TRACE("%d <--\n", bSuccess);
1681 /***********************************************************************
1682 * HttpQueryInfoA (WININET.@)
1684 * Queries for information about an HTTP request
1691 BOOL WINAPI HttpQueryInfoA(HINTERNET hHttpRequest, DWORD dwInfoLevel,
1692 LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex)
1698 if((dwInfoLevel & HTTP_QUERY_FLAG_NUMBER) ||
1699 (dwInfoLevel & HTTP_QUERY_FLAG_SYSTEMTIME))
1701 return HttpQueryInfoW( hHttpRequest, dwInfoLevel, lpBuffer,
1702 lpdwBufferLength, lpdwIndex );
1705 len = (*lpdwBufferLength)*sizeof(WCHAR);
1706 bufferW = HeapAlloc( GetProcessHeap(), 0, len );
1707 /* buffer is in/out because of HTTP_QUERY_CUSTOM */
1708 if ((dwInfoLevel & HTTP_QUERY_HEADER_MASK) == HTTP_QUERY_CUSTOM)
1709 MultiByteToWideChar(CP_ACP,0,lpBuffer,-1,bufferW,len);
1710 result = HttpQueryInfoW( hHttpRequest, dwInfoLevel, bufferW,
1714 len = WideCharToMultiByte( CP_ACP,0, bufferW, len / sizeof(WCHAR) + 1,
1715 lpBuffer, *lpdwBufferLength, NULL, NULL );
1716 *lpdwBufferLength = len - 1;
1718 TRACE("lpBuffer: %s\n", debugstr_a(lpBuffer));
1721 /* since the strings being returned from HttpQueryInfoW should be
1722 * only ASCII characters, it is reasonable to assume that all of
1723 * the Unicode characters can be reduced to a single byte */
1724 *lpdwBufferLength = len / sizeof(WCHAR);
1726 HeapFree(GetProcessHeap(), 0, bufferW );
1731 /***********************************************************************
1732 * HttpSendRequestExA (WININET.@)
1734 * Sends the specified request to the HTTP server and allows chunked
1739 * Failure: FALSE, call GetLastError() for more information.
1741 BOOL WINAPI HttpSendRequestExA(HINTERNET hRequest,
1742 LPINTERNET_BUFFERSA lpBuffersIn,
1743 LPINTERNET_BUFFERSA lpBuffersOut,
1744 DWORD dwFlags, DWORD dwContext)
1746 INTERNET_BUFFERSW BuffersInW;
1749 LPWSTR header = NULL;
1751 TRACE("(%p, %p, %p, %08x, %08x): stub\n", hRequest, lpBuffersIn,
1752 lpBuffersOut, dwFlags, dwContext);
1756 BuffersInW.dwStructSize = sizeof(LPINTERNET_BUFFERSW);
1757 if (lpBuffersIn->lpcszHeader)
1759 headerlen = MultiByteToWideChar(CP_ACP,0,lpBuffersIn->lpcszHeader,
1760 lpBuffersIn->dwHeadersLength,0,0);
1761 header = HeapAlloc(GetProcessHeap(),0,headerlen*sizeof(WCHAR));
1762 if (!(BuffersInW.lpcszHeader = header))
1764 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
1767 BuffersInW.dwHeadersLength = MultiByteToWideChar(CP_ACP, 0,
1768 lpBuffersIn->lpcszHeader, lpBuffersIn->dwHeadersLength,
1772 BuffersInW.lpcszHeader = NULL;
1773 BuffersInW.dwHeadersTotal = lpBuffersIn->dwHeadersTotal;
1774 BuffersInW.lpvBuffer = lpBuffersIn->lpvBuffer;
1775 BuffersInW.dwBufferLength = lpBuffersIn->dwBufferLength;
1776 BuffersInW.dwBufferTotal = lpBuffersIn->dwBufferTotal;
1777 BuffersInW.Next = NULL;
1780 rc = HttpSendRequestExW(hRequest, lpBuffersIn ? &BuffersInW : NULL, NULL, dwFlags, dwContext);
1782 HeapFree(GetProcessHeap(),0,header);
1787 /***********************************************************************
1788 * HttpSendRequestExW (WININET.@)
1790 * Sends the specified request to the HTTP server and allows chunked
1795 * Failure: FALSE, call GetLastError() for more information.
1797 BOOL WINAPI HttpSendRequestExW(HINTERNET hRequest,
1798 LPINTERNET_BUFFERSW lpBuffersIn,
1799 LPINTERNET_BUFFERSW lpBuffersOut,
1800 DWORD dwFlags, DWORD dwContext)
1803 LPWININETHTTPREQW lpwhr;
1804 LPWININETHTTPSESSIONW lpwhs;
1805 LPWININETAPPINFOW hIC;
1807 TRACE("(%p, %p, %p, %08x, %08x)\n", hRequest, lpBuffersIn,
1808 lpBuffersOut, dwFlags, dwContext);
1810 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hRequest );
1812 if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
1814 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1818 lpwhs = lpwhr->lpHttpSession;
1819 assert(lpwhs->hdr.htype == WH_HHTTPSESSION);
1820 hIC = lpwhs->lpAppInfo;
1821 assert(hIC->hdr.htype == WH_HINIT);
1823 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
1825 WORKREQUEST workRequest;
1826 struct WORKREQ_HTTPSENDREQUESTW *req;
1828 workRequest.asyncproc = AsyncHttpSendRequestProc;
1829 workRequest.hdr = WININET_AddRef( &lpwhr->hdr );
1830 req = &workRequest.u.HttpSendRequestW;
1833 if (lpBuffersIn->lpcszHeader)
1834 /* FIXME: this should use dwHeadersLength or may not be necessary at all */
1835 req->lpszHeader = WININET_strdupW(lpBuffersIn->lpcszHeader);
1837 req->lpszHeader = NULL;
1838 req->dwHeaderLength = lpBuffersIn->dwHeadersLength;
1839 req->lpOptional = lpBuffersIn->lpvBuffer;
1840 req->dwOptionalLength = lpBuffersIn->dwBufferLength;
1841 req->dwContentLength = lpBuffersIn->dwBufferTotal;
1845 req->lpszHeader = NULL;
1846 req->dwHeaderLength = 0;
1847 req->lpOptional = NULL;
1848 req->dwOptionalLength = 0;
1849 req->dwContentLength = 0;
1852 req->bEndRequest = FALSE;
1854 INTERNET_AsyncCall(&workRequest);
1856 * This is from windows.
1858 INTERNET_SetLastError(ERROR_IO_PENDING);
1863 ret = HTTP_HttpSendRequestW(lpwhr, lpBuffersIn->lpcszHeader, lpBuffersIn->dwHeadersLength,
1864 lpBuffersIn->lpvBuffer, lpBuffersIn->dwBufferLength,
1865 lpBuffersIn->dwBufferTotal, FALSE);
1868 WININET_Release(&lpwhr->hdr);
1873 /***********************************************************************
1874 * HttpSendRequestW (WININET.@)
1876 * Sends the specified request to the HTTP server
1883 BOOL WINAPI HttpSendRequestW(HINTERNET hHttpRequest, LPCWSTR lpszHeaders,
1884 DWORD dwHeaderLength, LPVOID lpOptional ,DWORD dwOptionalLength)
1886 LPWININETHTTPREQW lpwhr;
1887 LPWININETHTTPSESSIONW lpwhs = NULL;
1888 LPWININETAPPINFOW hIC = NULL;
1891 TRACE("%p, %p (%s), %i, %p, %i)\n", hHttpRequest,
1892 lpszHeaders, debugstr_w(lpszHeaders), dwHeaderLength, lpOptional, dwOptionalLength);
1894 lpwhr = (LPWININETHTTPREQW) WININET_GetObject( hHttpRequest );
1895 if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
1897 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1902 lpwhs = lpwhr->lpHttpSession;
1903 if (NULL == lpwhs || lpwhs->hdr.htype != WH_HHTTPSESSION)
1905 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1910 hIC = lpwhs->lpAppInfo;
1911 if (NULL == hIC || hIC->hdr.htype != WH_HINIT)
1913 INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
1918 if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
1920 WORKREQUEST workRequest;
1921 struct WORKREQ_HTTPSENDREQUESTW *req;
1923 workRequest.asyncproc = AsyncHttpSendRequestProc;
1924 workRequest.hdr = WININET_AddRef( &lpwhr->hdr );
1925 req = &workRequest.u.HttpSendRequestW;
1927 req->lpszHeader = WININET_strdupW(lpszHeaders);
1929 req->lpszHeader = 0;
1930 req->dwHeaderLength = dwHeaderLength;
1931 req->lpOptional = lpOptional;
1932 req->dwOptionalLength = dwOptionalLength;
1933 req->dwContentLength = dwOptionalLength;
1934 req->bEndRequest = TRUE;
1936 INTERNET_AsyncCall(&workRequest);
1938 * This is from windows.
1940 INTERNET_SetLastError(ERROR_IO_PENDING);
1945 r = HTTP_HttpSendRequestW(lpwhr, lpszHeaders,
1946 dwHeaderLength, lpOptional, dwOptionalLength,
1947 dwOptionalLength, TRUE);
1951 WININET_Release( &lpwhr->hdr );
1955 /***********************************************************************
1956 * HttpSendRequestA (WININET.@)
1958 * Sends the specified request to the HTTP server
1965 BOOL WINAPI HttpSendRequestA(HINTERNET hHttpRequest, LPCSTR lpszHeaders,
1966 DWORD dwHeaderLength, LPVOID lpOptional ,DWORD dwOptionalLength)
1969 LPWSTR szHeaders=NULL;
1970 DWORD nLen=dwHeaderLength;
1971 if(lpszHeaders!=NULL)
1973 nLen=MultiByteToWideChar(CP_ACP,0,lpszHeaders,dwHeaderLength,NULL,0);
1974 szHeaders=HeapAlloc(GetProcessHeap(),0,nLen*sizeof(WCHAR));
1975 MultiByteToWideChar(CP_ACP,0,lpszHeaders,dwHeaderLength,szHeaders,nLen);
1977 result=HttpSendRequestW(hHttpRequest, szHeaders, nLen, lpOptional, dwOptionalLength);
1978 HeapFree(GetProcessHeap(),0,szHeaders);
1982 /***********************************************************************
1983 * HTTP_HandleRedirect (internal)
1985 static BOOL HTTP_HandleRedirect(LPWININETHTTPREQW lpwhr, LPCWSTR lpszUrl)
1987 LPWININETHTTPSESSIONW lpwhs = lpwhr->lpHttpSession;
1988 LPWININETAPPINFOW hIC = lpwhs->lpAppInfo;
1993 /* if it's an absolute path, keep the same session info */
1994 lstrcpynW(path, lpszUrl, 2048);
1996 else if (NULL != hIC->lpszProxy && hIC->lpszProxy[0] != 0)
1998 TRACE("Redirect through proxy\n");
1999 lstrcpynW(path, lpszUrl, 2048);
2003 URL_COMPONENTSW urlComponents;
2004 WCHAR protocol[32], hostName[MAXHOSTNAME], userName[1024];
2005 static WCHAR szHttp[] = {'h','t','t','p',0};
2006 static WCHAR szHttps[] = {'h','t','t','p','s',0};
2007 DWORD url_length = 0;
2009 LPWSTR combined_url;
2011 urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
2012 urlComponents.lpszScheme = (lpwhr->hdr.dwFlags & INTERNET_FLAG_SECURE) ? szHttps : szHttp;
2013 urlComponents.dwSchemeLength = 0;
2014 urlComponents.lpszHostName = lpwhs->lpszHostName;
2015 urlComponents.dwHostNameLength = 0;
2016 urlComponents.nPort = lpwhs->nHostPort;
2017 urlComponents.lpszUserName = lpwhs->lpszUserName;
2018 urlComponents.dwUserNameLength = 0;
2019 urlComponents.lpszPassword = NULL;
2020 urlComponents.dwPasswordLength = 0;
2021 urlComponents.lpszUrlPath = lpwhr->lpszPath;
2022 urlComponents.dwUrlPathLength = 0;
2023 urlComponents.lpszExtraInfo = NULL;
2024 urlComponents.dwExtraInfoLength = 0;
2026 if (!InternetCreateUrlW(&urlComponents, 0, NULL, &url_length) &&
2027 (GetLastError() != ERROR_INSUFFICIENT_BUFFER))
2030 orig_url = HeapAlloc(GetProcessHeap(), 0, url_length);
2032 /* convert from bytes to characters */
2033 url_length = url_length / sizeof(WCHAR) - 1;
2034 if (!InternetCreateUrlW(&urlComponents, 0, orig_url, &url_length))
2036 HeapFree(GetProcessHeap(), 0, orig_url);
2041 if (!InternetCombineUrlW(orig_url, lpszUrl, NULL, &url_length, ICU_ENCODE_SPACES_ONLY) &&
2042 (GetLastError() != ERROR_INSUFFICIENT_BUFFER))
2044 HeapFree(GetProcessHeap(), 0, orig_url);
2047 combined_url = HeapAlloc(GetProcessHeap(), 0, url_length * sizeof(WCHAR));
2049 if (!InternetCombineUrlW(orig_url, lpszUrl, combined_url, &url_length, ICU_ENCODE_SPACES_ONLY))
2051 HeapFree(GetProcessHeap(), 0, orig_url);
2052 HeapFree(GetProcessHeap(), 0, combined_url);
2055 HeapFree(GetProcessHeap(), 0, orig_url);
2061 urlComponents.dwStructSize = sizeof(URL_COMPONENTSW);
2062 urlComponents.lpszScheme = protocol;
2063 urlComponents.dwSchemeLength = 32;
2064 urlComponents.lpszHostName = hostName;
2065 urlComponents.dwHostNameLength = MAXHOSTNAME;
2066 urlComponents.lpszUserName = userName;
2067 urlComponents.dwUserNameLength = 1024;
2068 urlComponents.lpszPassword = NULL;
2069 urlComponents.dwPasswordLength = 0;
2070 urlComponents.lpszUrlPath = path;
2071 urlComponents.dwUrlPathLength = 2048;
2072 urlComponents.lpszExtraInfo = NULL;
2073 urlComponents.dwExtraInfoLength = 0;
2074 if(!InternetCrackUrlW(combined_url, strlenW(combined_url), 0, &urlComponents))
2076 HeapFree(GetProcessHeap(), 0, combined_url);
2079 HeapFree(GetProcessHeap(), 0, combined_url);
2081 if (!strncmpW(szHttp, urlComponents.lpszScheme, strlenW(szHttp)) &&
2082 (lpwhr->hdr.dwFlags & INTERNET_FLAG_SECURE))
2084 TRACE("redirect from secure page to non-secure page\n");
2085 /* FIXME: warn about from secure redirect to non-secure page */
2086 lpwhr->hdr.dwFlags &= ~INTERNET_FLAG_SECURE;
2088 if (!strncmpW(szHttps, urlComponents.lpszScheme, strlenW(szHttps)) &&
2089 !(lpwhr->hdr.dwFlags & INTERNET_FLAG_SECURE))
2091 TRACE("redirect from non-secure page to secure page\n");
2092 /* FIXME: notify about redirect to secure page */
2093 lpwhr->hdr.dwFlags |= INTERNET_FLAG_SECURE;
2096 if (urlComponents.nPort == INTERNET_INVALID_PORT_NUMBER)
2098 if (lstrlenW(protocol)>4) /*https*/
2099 urlComponents.nPort = INTERNET_DEFAULT_HTTPS_PORT;
2101 urlComponents.nPort = INTERNET_DEFAULT_HTTP_PORT;
2106 * This upsets redirects to binary files on sourceforge.net
2107 * and gives an html page instead of the target file
2108 * Examination of the HTTP request sent by native wininet.dll
2109 * reveals that it doesn't send a referrer in that case.
2110 * Maybe there's a flag that enables this, or maybe a referrer
2111 * shouldn't be added in case of a redirect.
2114 /* consider the current host as the referrer */
2115 if (NULL != lpwhs->lpszServerName && strlenW(lpwhs->lpszServerName))
2116 HTTP_ProcessHeader(lpwhr, HTTP_REFERER, lpwhs->lpszServerName,
2117 HTTP_ADDHDR_FLAG_REQ|HTTP_ADDREQ_FLAG_REPLACE|
2118 HTTP_ADDHDR_FLAG_ADD_IF_NEW);
2121 HeapFree(GetProcessHeap(), 0, lpwhs->lpszServerName);
2122 lpwhs->lpszServerName = WININET_strdupW(hostName);
2123 HeapFree(GetProcessHeap(), 0, lpwhs->lpszHostName);
2124 if (urlComponents.nPort != INTERNET_DEFAULT_HTTP_PORT &&
2125 urlComponents.nPort != INTERNET_DEFAULT_HTTPS_PORT)
2128 static const WCHAR fmt[] = {'%','s',':','%','i',0};
2129 len = lstrlenW(hostName);
2130 len += 7; /* 5 for strlen("65535") + 1 for ":" + 1 for '\0' */
2131 lpwhs->lpszHostName = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
2132 sprintfW(lpwhs->lpszHostName, fmt, hostName, urlComponents.nPort);
2135 lpwhs->lpszHostName = WININET_strdupW(hostName);
2137 HTTP_ProcessHeader(lpwhr, szHost, lpwhs->lpszHostName, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE | HTTP_ADDHDR_FLAG_REQ);
2140 HeapFree(GetProcessHeap(), 0, lpwhs->lpszUserName);
2141 lpwhs->lpszUserName = NULL;
2143 lpwhs->lpszUserName = WININET_strdupW(userName);
2144 lpwhs->nServerPort = urlComponents.nPort;
2146 if (!HTTP_ResolveName(lpwhr))
2149 NETCON_close(&lpwhr->netConnection);
2151 if (!NETCON_init(&lpwhr->netConnection,lpwhr->hdr.dwFlags & INTERNET_FLAG_SECURE))
2155 HeapFree(GetProcessHeap(), 0, lpwhr->lpszPath);
2156 lpwhr->lpszPath=NULL;
2162 rc = UrlEscapeW(path, NULL, &needed, URL_ESCAPE_SPACES_ONLY);
2163 if (rc != E_POINTER)
2164 needed = strlenW(path)+1;
2165 lpwhr->lpszPath = HeapAlloc(GetProcessHeap(), 0, needed*sizeof(WCHAR));
2166 rc = UrlEscapeW(path, lpwhr->lpszPath, &needed,
2167 URL_ESCAPE_SPACES_ONLY);
2170 ERR("Unable to escape string!(%s) (%d)\n",debugstr_w(path),rc);
2171 strcpyW(lpwhr->lpszPath,path);
2178 /***********************************************************************
2179 * HTTP_build_req (internal)
2181 * concatenate all the strings in the request together
2183 static LPWSTR HTTP_build_req( LPCWSTR *list, int len )
2188 for( t = list; *t ; t++ )
2189 len += strlenW( *t );
2192 str = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
2195 for( t = list; *t ; t++ )
2201 static BOOL HTTP_SecureProxyConnect(LPWININETHTTPREQW lpwhr)
2204 LPWSTR requestString;
2210 static const WCHAR szConnect[] = {'C','O','N','N','E','C','T',0};
2211 static const WCHAR szFormat[] = {'%','s',':','%','d',0};
2212 LPWININETHTTPSESSIONW lpwhs = lpwhr->lpHttpSession;
2216 lpszPath = HeapAlloc( GetProcessHeap(), 0, (lstrlenW( lpwhs->lpszHostName ) + 13)*sizeof(WCHAR) );
2217 sprintfW( lpszPath, szFormat, lpwhs->lpszHostName, lpwhs->nHostPort );
2218 requestString = HTTP_BuildHeaderRequestString( lpwhr, szConnect, lpszPath, FALSE );
2219 HeapFree( GetProcessHeap(), 0, lpszPath );
2221 len = WideCharToMultiByte( CP_ACP, 0, requestString, -1,
2222 NULL, 0, NULL, NULL );
2223 len--; /* the nul terminator isn't needed */
2224 ascii_req = HeapAlloc( GetProcessHeap(), 0, len );
2225 WideCharToMultiByte( CP_ACP, 0, requestString, -1,
2226 ascii_req, len, NULL, NULL );
2227 HeapFree( GetProcessHeap(), 0, requestString );
2229 TRACE("full request -> %s\n", debugstr_an( ascii_req, len ) );
2231 ret = NETCON_send( &lpwhr->netConnection, ascii_req, len, 0, &cnt );
2232 HeapFree( GetProcessHeap(), 0, ascii_req );
2233 if (!ret || cnt < 0)
2236 responseLen = HTTP_GetResponseHeaders( lpwhr );
2243 /***********************************************************************
2244 * HTTP_HttpSendRequestW (internal)
2246 * Sends the specified request to the HTTP server
2253 BOOL WINAPI HTTP_HttpSendRequestW(LPWININETHTTPREQW lpwhr, LPCWSTR lpszHeaders,
2254 DWORD dwHeaderLength, LPVOID lpOptional, DWORD dwOptionalLength,
2255 DWORD dwContentLength, BOOL bEndRequest)
2258 BOOL bSuccess = FALSE;
2259 LPWSTR requestString = NULL;
2262 INTERNET_ASYNC_RESULT iar;
2263 static const WCHAR szClose[] = { 'C','l','o','s','e',0 };
2265 TRACE("--> %p\n", lpwhr);
2267 assert(lpwhr->hdr.htype == WH_HHTTPREQ);
2269 /* Clear any error information */
2270 INTERNET_SetLastError(0);
2272 HTTP_FixVerb(lpwhr);
2274 /* if we are using optional stuff, we must add the fixed header of that option length */
2275 if (dwContentLength > 0)
2277 static const WCHAR szContentLength[] = {
2278 'C','o','n','t','e','n','t','-','L','e','n','g','t','h',':',' ','%','l','i','\r','\n',0};
2279 WCHAR contentLengthStr[sizeof szContentLength/2 /* includes \n\r */ + 20 /* int */ ];
2280 sprintfW(contentLengthStr, szContentLength, dwContentLength);
2281 HTTP_HttpAddRequestHeadersW(lpwhr, contentLengthStr, -1L,
2282 HTTP_ADDREQ_FLAG_ADD | HTTP_ADDHDR_FLAG_REPLACE);
2292 /* like native, just in case the caller forgot to call InternetReadFile
2293 * for all the data */
2294 HTTP_DrainContent(lpwhr);
2295 lpwhr->dwContentRead = 0;
2297 if (TRACE_ON(wininet))
2299 LPHTTPHEADERW Host = HTTP_GetHeader(lpwhr,szHost);
2300 TRACE("Going to url %s %s\n", debugstr_w(Host->lpszValue), debugstr_w(lpwhr->lpszPath));
2305 /* add the headers the caller supplied */
2306 if( lpszHeaders && dwHeaderLength )
2308 HTTP_HttpAddRequestHeadersW(lpwhr, lpszHeaders, dwHeaderLength,
2309 HTTP_ADDREQ_FLAG_ADD | HTTP_ADDHDR_FLAG_REPLACE);
2312 HTTP_ProcessHeader(lpwhr, szConnection,
2313 lpwhr->hdr.dwFlags & INTERNET_FLAG_KEEP_CONNECTION ? szKeepAlive : szClose,
2314 HTTP_ADDHDR_FLAG_REQ | HTTP_ADDHDR_FLAG_REPLACE);
2316 /* if there's a proxy username and password, add it to the headers */
2317 HTTP_AddProxyInfo(lpwhr);
2319 requestString = HTTP_BuildHeaderRequestString(lpwhr, lpwhr->lpszVerb, lpwhr->lpszPath, FALSE);
2321 TRACE("Request header -> %s\n", debugstr_w(requestString) );
2323 /* Send the request and store the results */
2324 if (!HTTP_OpenConnection(lpwhr))
2327 /* send the request as ASCII, tack on the optional data */
2329 dwOptionalLength = 0;
2330 len = WideCharToMultiByte( CP_ACP, 0, requestString, -1,
2331 NULL, 0, NULL, NULL );
2332 ascii_req = HeapAlloc( GetProcessHeap(), 0, len + dwOptionalLength );
2333 WideCharToMultiByte( CP_ACP, 0, requestString, -1,
2334 ascii_req, len, NULL, NULL );
2336 memcpy( &ascii_req[len-1], lpOptional, dwOptionalLength );
2337 len = (len + dwOptionalLength - 1);
2339 TRACE("full request -> %s\n", debugstr_a(ascii_req) );
2341 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2342 INTERNET_STATUS_SENDING_REQUEST, NULL, 0);
2344 NETCON_send(&lpwhr->netConnection, ascii_req, len, 0, &cnt);
2345 HeapFree( GetProcessHeap(), 0, ascii_req );
2347 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2348 INTERNET_STATUS_REQUEST_SENT,
2349 &len, sizeof(DWORD));
2355 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2356 INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
2361 responseLen = HTTP_GetResponseHeaders(lpwhr);
2365 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2366 INTERNET_STATUS_RESPONSE_RECEIVED, &responseLen,
2369 HTTP_ProcessHeaders(lpwhr);
2371 dwBufferSize = sizeof(lpwhr->dwContentLength);
2372 if (!HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_FLAG_NUMBER|HTTP_QUERY_CONTENT_LENGTH,
2373 &lpwhr->dwContentLength,&dwBufferSize,NULL))
2374 lpwhr->dwContentLength = -1;
2376 if (lpwhr->dwContentLength == 0)
2377 HTTP_FinishedReading(lpwhr);
2379 if (!(lpwhr->hdr.dwFlags & INTERNET_FLAG_NO_AUTO_REDIRECT) && bSuccess)
2381 DWORD dwCode,dwCodeLength=sizeof(DWORD);
2382 WCHAR szNewLocation[2048];
2383 dwBufferSize=sizeof(szNewLocation);
2384 if (HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_FLAG_NUMBER|HTTP_QUERY_STATUS_CODE,&dwCode,&dwCodeLength,NULL) &&
2385 (dwCode==HTTP_STATUS_REDIRECT || dwCode==HTTP_STATUS_MOVED) &&
2386 HTTP_HttpQueryInfoW(lpwhr,HTTP_QUERY_LOCATION,szNewLocation,&dwBufferSize,NULL))
2388 HTTP_DrainContent(lpwhr);
2389 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2390 INTERNET_STATUS_REDIRECT, szNewLocation,
2392 bSuccess = HTTP_HandleRedirect(lpwhr, szNewLocation);
2395 HeapFree(GetProcessHeap(), 0, requestString);
2409 HeapFree(GetProcessHeap(), 0, requestString);
2411 /* TODO: send notification for P3P header */
2413 iar.dwResult = (DWORD)bSuccess;
2414 iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
2416 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2417 INTERNET_STATUS_REQUEST_COMPLETE, &iar,
2418 sizeof(INTERNET_ASYNC_RESULT));
2424 /***********************************************************************
2425 * HTTP_Connect (internal)
2427 * Create http session handle
2430 * HINTERNET a session handle on success
2434 HINTERNET HTTP_Connect(LPWININETAPPINFOW hIC, LPCWSTR lpszServerName,
2435 INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
2436 LPCWSTR lpszPassword, DWORD dwFlags, DWORD dwContext,
2437 DWORD dwInternalFlags)
2439 BOOL bSuccess = FALSE;
2440 LPWININETHTTPSESSIONW lpwhs = NULL;
2441 HINTERNET handle = NULL;
2445 assert( hIC->hdr.htype == WH_HINIT );
2447 hIC->hdr.dwContext = dwContext;
2449 lpwhs = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WININETHTTPSESSIONW));
2452 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
2457 * According to my tests. The name is not resolved until a request is sent
2460 lpwhs->hdr.htype = WH_HHTTPSESSION;
2461 lpwhs->hdr.dwFlags = dwFlags;
2462 lpwhs->hdr.dwContext = dwContext;
2463 lpwhs->hdr.dwInternalFlags = dwInternalFlags | (hIC->hdr.dwInternalFlags & INET_CALLBACKW);
2464 lpwhs->hdr.dwRefCount = 1;
2465 lpwhs->hdr.destroy = HTTP_CloseHTTPSessionHandle;
2466 lpwhs->hdr.lpfnStatusCB = hIC->hdr.lpfnStatusCB;
2468 WININET_AddRef( &hIC->hdr );
2469 lpwhs->lpAppInfo = hIC;
2471 handle = WININET_AllocHandle( &lpwhs->hdr );
2474 ERR("Failed to alloc handle\n");
2475 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
2479 if(hIC->lpszProxy && hIC->dwAccessType == INTERNET_OPEN_TYPE_PROXY) {
2480 if(strchrW(hIC->lpszProxy, ' '))
2481 FIXME("Several proxies not implemented.\n");
2482 if(hIC->lpszProxyBypass)
2483 FIXME("Proxy bypass is ignored.\n");
2485 if (lpszServerName && lpszServerName[0])
2487 lpwhs->lpszServerName = WININET_strdupW(lpszServerName);
2488 lpwhs->lpszHostName = WININET_strdupW(lpszServerName);
2490 if (lpszUserName && lpszUserName[0])
2491 lpwhs->lpszUserName = WININET_strdupW(lpszUserName);
2492 lpwhs->nServerPort = nServerPort;
2493 lpwhs->nHostPort = nServerPort;
2495 /* Don't send a handle created callback if this handle was created with InternetOpenUrl */
2496 if (!(lpwhs->hdr.dwInternalFlags & INET_OPENURL))
2498 INTERNET_SendCallback(&hIC->hdr, dwContext,
2499 INTERNET_STATUS_HANDLE_CREATED, &handle,
2507 WININET_Release( &lpwhs->hdr );
2510 * an INTERNET_STATUS_REQUEST_COMPLETE is NOT sent here as per my tests on
2514 TRACE("%p --> %p (%p)\n", hIC, handle, lpwhs);
2519 /***********************************************************************
2520 * HTTP_OpenConnection (internal)
2522 * Connect to a web server
2529 static BOOL HTTP_OpenConnection(LPWININETHTTPREQW lpwhr)
2531 BOOL bSuccess = FALSE;
2532 LPWININETHTTPSESSIONW lpwhs;
2533 LPWININETAPPINFOW hIC = NULL;
2539 if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
2541 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
2545 if (NETCON_connected(&lpwhr->netConnection))
2551 lpwhs = lpwhr->lpHttpSession;
2553 hIC = lpwhs->lpAppInfo;
2554 inet_ntop(lpwhs->socketAddress.sin_family, &lpwhs->socketAddress.sin_addr,
2555 szaddr, sizeof(szaddr));
2556 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2557 INTERNET_STATUS_CONNECTING_TO_SERVER,
2561 if (!NETCON_create(&lpwhr->netConnection, lpwhs->socketAddress.sin_family,
2564 WARN("Socket creation failed\n");
2568 if (!NETCON_connect(&lpwhr->netConnection, (struct sockaddr *)&lpwhs->socketAddress,
2569 sizeof(lpwhs->socketAddress)))
2572 if (lpwhr->hdr.dwFlags & INTERNET_FLAG_SECURE)
2574 /* Note: we differ from Microsoft's WinINet here. they seem to have
2575 * a bug that causes no status callbacks to be sent when starting
2576 * a tunnel to a proxy server using the CONNECT verb. i believe our
2577 * behaviour to be more correct and to not cause any incompatibilities
2578 * because using a secure connection through a proxy server is a rare
2579 * case that would be hard for anyone to depend on */
2580 if (hIC->lpszProxy && !HTTP_SecureProxyConnect(lpwhr))
2583 if (!NETCON_secure_connect(&lpwhr->netConnection, lpwhs->lpszHostName))
2585 WARN("Couldn't connect securely to host\n");
2590 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2591 INTERNET_STATUS_CONNECTED_TO_SERVER,
2592 szaddr, strlen(szaddr)+1);
2597 TRACE("%d <--\n", bSuccess);
2602 /***********************************************************************
2603 * HTTP_clear_response_headers (internal)
2605 * clear out any old response headers
2607 static void HTTP_clear_response_headers( LPWININETHTTPREQW lpwhr )
2611 for( i=0; i<lpwhr->nCustHeaders; i++)
2613 if( !lpwhr->pCustHeaders[i].lpszField )
2615 if( !lpwhr->pCustHeaders[i].lpszValue )
2617 if ( lpwhr->pCustHeaders[i].wFlags & HDR_ISREQUEST )
2619 HTTP_DeleteCustomHeader( lpwhr, i );
2624 /***********************************************************************
2625 * HTTP_GetResponseHeaders (internal)
2627 * Read server response
2634 static INT HTTP_GetResponseHeaders(LPWININETHTTPREQW lpwhr)
2637 WCHAR buffer[MAX_REPLY_LEN];
2638 DWORD buflen = MAX_REPLY_LEN;
2639 BOOL bSuccess = FALSE;
2641 static const WCHAR szCrLf[] = {'\r','\n',0};
2642 char bufferA[MAX_REPLY_LEN];
2643 LPWSTR status_code, status_text;
2644 DWORD cchMaxRawHeaders = 1024;
2645 LPWSTR lpszRawHeaders = HeapAlloc(GetProcessHeap(), 0, (cchMaxRawHeaders+1)*sizeof(WCHAR));
2646 DWORD cchRawHeaders = 0;
2650 /* clear old response headers (eg. from a redirect response) */
2651 HTTP_clear_response_headers( lpwhr );
2653 if (!NETCON_connected(&lpwhr->netConnection))
2657 * HACK peek at the buffer
2659 NETCON_recv(&lpwhr->netConnection, buffer, buflen, MSG_PEEK, &rc);
2662 * We should first receive 'HTTP/1.x nnn OK' where nnn is the status code.
2664 buflen = MAX_REPLY_LEN;
2665 memset(buffer, 0, MAX_REPLY_LEN);
2666 if (!NETCON_getNextLine(&lpwhr->netConnection, bufferA, &buflen))
2668 MultiByteToWideChar( CP_ACP, 0, bufferA, buflen, buffer, MAX_REPLY_LEN );
2670 /* regenerate raw headers */
2671 while (cchRawHeaders + buflen + strlenW(szCrLf) > cchMaxRawHeaders)
2673 cchMaxRawHeaders *= 2;
2674 lpszRawHeaders = HeapReAlloc(GetProcessHeap(), 0, lpszRawHeaders, (cchMaxRawHeaders+1)*sizeof(WCHAR));
2676 memcpy(lpszRawHeaders+cchRawHeaders, buffer, (buflen-1)*sizeof(WCHAR));
2677 cchRawHeaders += (buflen-1);
2678 memcpy(lpszRawHeaders+cchRawHeaders, szCrLf, sizeof(szCrLf));
2679 cchRawHeaders += sizeof(szCrLf)/sizeof(szCrLf[0])-1;
2680 lpszRawHeaders[cchRawHeaders] = '\0';
2682 /* split the version from the status code */
2683 status_code = strchrW( buffer, ' ' );
2688 /* split the status code from the status text */
2689 status_text = strchrW( status_code, ' ' );
2694 TRACE("version [%s] status code [%s] status text [%s]\n",
2695 debugstr_w(buffer), debugstr_w(status_code), debugstr_w(status_text) );
2697 HTTP_ProcessHeader(lpwhr, szStatus, status_code,
2698 HTTP_ADDHDR_FLAG_REPLACE);
2700 HeapFree(GetProcessHeap(),0,lpwhr->lpszVersion);
2701 HeapFree(GetProcessHeap(),0,lpwhr->lpszStatusText);
2703 lpwhr->lpszVersion= WININET_strdupW(buffer);
2704 lpwhr->lpszStatusText = WININET_strdupW(status_text);
2706 /* Parse each response line */
2709 buflen = MAX_REPLY_LEN;
2710 if (NETCON_getNextLine(&lpwhr->netConnection, bufferA, &buflen))
2712 LPWSTR * pFieldAndValue;
2714 TRACE("got line %s, now interpreting\n", debugstr_a(bufferA));
2715 MultiByteToWideChar( CP_ACP, 0, bufferA, buflen, buffer, MAX_REPLY_LEN );
2717 while (cchRawHeaders + buflen + strlenW(szCrLf) > cchMaxRawHeaders)
2719 cchMaxRawHeaders *= 2;
2720 lpszRawHeaders = HeapReAlloc(GetProcessHeap(), 0, lpszRawHeaders, (cchMaxRawHeaders+1)*sizeof(WCHAR));
2722 memcpy(lpszRawHeaders+cchRawHeaders, buffer, (buflen-1)*sizeof(WCHAR));
2723 cchRawHeaders += (buflen-1);
2724 memcpy(lpszRawHeaders+cchRawHeaders, szCrLf, sizeof(szCrLf));
2725 cchRawHeaders += sizeof(szCrLf)/sizeof(szCrLf[0])-1;
2726 lpszRawHeaders[cchRawHeaders] = '\0';
2728 pFieldAndValue = HTTP_InterpretHttpHeader(buffer);
2729 if (!pFieldAndValue)
2732 HTTP_ProcessHeader(lpwhr, pFieldAndValue[0], pFieldAndValue[1],
2733 HTTP_ADDREQ_FLAG_ADD );
2735 HTTP_FreeTokens(pFieldAndValue);
2745 HeapFree(GetProcessHeap(), 0, lpwhr->lpszRawHeaders);
2746 lpwhr->lpszRawHeaders = lpszRawHeaders;
2747 TRACE("raw headers: %s\n", debugstr_w(lpszRawHeaders));
2760 static void strip_spaces(LPWSTR start)
2765 while (*str == ' ' && *str != '\0')
2769 memmove(start, str, sizeof(WCHAR) * (strlenW(str) + 1));
2771 end = start + strlenW(start) - 1;
2772 while (end >= start && *end == ' ')
2780 /***********************************************************************
2781 * HTTP_InterpretHttpHeader (internal)
2783 * Parse server response
2787 * Pointer to array of field, value, NULL on success.
2790 static LPWSTR * HTTP_InterpretHttpHeader(LPCWSTR buffer)
2792 LPWSTR * pTokenPair;
2796 pTokenPair = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*pTokenPair)*3);
2798 pszColon = strchrW(buffer, ':');
2799 /* must have two tokens */
2802 HTTP_FreeTokens(pTokenPair);
2804 TRACE("No ':' in line: %s\n", debugstr_w(buffer));
2808 pTokenPair[0] = HeapAlloc(GetProcessHeap(), 0, (pszColon - buffer + 1) * sizeof(WCHAR));
2811 HTTP_FreeTokens(pTokenPair);
2814 memcpy(pTokenPair[0], buffer, (pszColon - buffer) * sizeof(WCHAR));
2815 pTokenPair[0][pszColon - buffer] = '\0';
2819 len = strlenW(pszColon);
2820 pTokenPair[1] = HeapAlloc(GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR));
2823 HTTP_FreeTokens(pTokenPair);
2826 memcpy(pTokenPair[1], pszColon, (len + 1) * sizeof(WCHAR));
2828 strip_spaces(pTokenPair[0]);
2829 strip_spaces(pTokenPair[1]);
2831 TRACE("field(%s) Value(%s)\n", debugstr_w(pTokenPair[0]), debugstr_w(pTokenPair[1]));
2835 /***********************************************************************
2836 * HTTP_ProcessHeader (internal)
2838 * Stuff header into header tables according to <dwModifier>
2842 #define COALESCEFLASG (HTTP_ADDHDR_FLAG_COALESCE|HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA|HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON)
2844 static BOOL HTTP_ProcessHeader(LPWININETHTTPREQW lpwhr, LPCWSTR field, LPCWSTR value, DWORD dwModifier)
2846 LPHTTPHEADERW lphttpHdr = NULL;
2847 BOOL bSuccess = FALSE;
2849 BOOL request_only = dwModifier & HTTP_ADDHDR_FLAG_REQ;
2851 TRACE("--> %s: %s - 0x%08x\n", debugstr_w(field), debugstr_w(value), dwModifier);
2853 /* REPLACE wins out over ADD */
2854 if (dwModifier & HTTP_ADDHDR_FLAG_REPLACE)
2855 dwModifier &= ~HTTP_ADDHDR_FLAG_ADD;
2857 if (dwModifier & HTTP_ADDHDR_FLAG_ADD)
2860 index = HTTP_GetCustomHeaderIndex(lpwhr, field, 0, request_only);
2864 if (dwModifier & HTTP_ADDHDR_FLAG_ADD_IF_NEW)
2868 lphttpHdr = &lpwhr->pCustHeaders[index];
2874 hdr.lpszField = (LPWSTR)field;
2875 hdr.lpszValue = (LPWSTR)value;
2876 hdr.wFlags = hdr.wCount = 0;
2878 if (dwModifier & HTTP_ADDHDR_FLAG_REQ)
2879 hdr.wFlags |= HDR_ISREQUEST;
2881 return HTTP_InsertCustomHeader(lpwhr, &hdr);
2883 /* no value to delete */
2886 if (dwModifier & HTTP_ADDHDR_FLAG_REQ)
2887 lphttpHdr->wFlags |= HDR_ISREQUEST;
2889 lphttpHdr->wFlags &= ~HDR_ISREQUEST;
2891 if (dwModifier & HTTP_ADDHDR_FLAG_REPLACE)
2893 HTTP_DeleteCustomHeader( lpwhr, index );
2899 hdr.lpszField = (LPWSTR)field;
2900 hdr.lpszValue = (LPWSTR)value;
2901 hdr.wFlags = hdr.wCount = 0;
2903 if (dwModifier & HTTP_ADDHDR_FLAG_REQ)
2904 hdr.wFlags |= HDR_ISREQUEST;
2906 return HTTP_InsertCustomHeader(lpwhr, &hdr);
2911 else if (dwModifier & COALESCEFLASG)
2916 INT origlen = strlenW(lphttpHdr->lpszValue);
2917 INT valuelen = strlenW(value);
2919 if (dwModifier & HTTP_ADDHDR_FLAG_COALESCE_WITH_COMMA)
2922 lphttpHdr->wFlags |= HDR_COMMADELIMITED;
2924 else if (dwModifier & HTTP_ADDHDR_FLAG_COALESCE_WITH_SEMICOLON)
2927 lphttpHdr->wFlags |= HDR_COMMADELIMITED;
2930 len = origlen + valuelen + ((ch > 0) ? 2 : 0);
2932 lpsztmp = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, lphttpHdr->lpszValue, (len+1)*sizeof(WCHAR));
2935 lphttpHdr->lpszValue = lpsztmp;
2936 /* FIXME: Increment lphttpHdr->wCount. Perhaps lpszValue should be an array */
2939 lphttpHdr->lpszValue[origlen] = ch;
2941 lphttpHdr->lpszValue[origlen] = ' ';
2945 memcpy(&lphttpHdr->lpszValue[origlen], value, valuelen*sizeof(WCHAR));
2946 lphttpHdr->lpszValue[len] = '\0';
2951 WARN("HeapReAlloc (%d bytes) failed\n",len+1);
2952 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
2955 TRACE("<-- %d\n",bSuccess);
2960 /***********************************************************************
2961 * HTTP_CloseConnection (internal)
2963 * Close socket connection
2966 static VOID HTTP_CloseConnection(LPWININETHTTPREQW lpwhr)
2968 LPWININETHTTPSESSIONW lpwhs = NULL;
2969 LPWININETAPPINFOW hIC = NULL;
2971 TRACE("%p\n",lpwhr);
2973 if (!NETCON_connected(&lpwhr->netConnection))
2976 lpwhs = lpwhr->lpHttpSession;
2977 hIC = lpwhs->lpAppInfo;
2979 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2980 INTERNET_STATUS_CLOSING_CONNECTION, 0, 0);
2982 NETCON_close(&lpwhr->netConnection);
2984 INTERNET_SendCallback(&lpwhr->hdr, lpwhr->hdr.dwContext,
2985 INTERNET_STATUS_CONNECTION_CLOSED, 0, 0);
2989 /***********************************************************************
2990 * HTTP_FinishedReading (internal)
2992 * Called when all content from server has been read by client.
2995 BOOL HTTP_FinishedReading(LPWININETHTTPREQW lpwhr)
2997 WCHAR szConnectionResponse[20];
2998 DWORD dwBufferSize = sizeof(szConnectionResponse);
3002 if (!HTTP_HttpQueryInfoW(lpwhr, HTTP_QUERY_CONNECTION, szConnectionResponse,
3003 &dwBufferSize, NULL) ||
3004 strcmpiW(szConnectionResponse, szKeepAlive))
3006 HTTP_CloseConnection(lpwhr);
3009 /* FIXME: store data in the URL cache here */
3014 /***********************************************************************
3015 * HTTP_CloseHTTPRequestHandle (internal)
3017 * Deallocate request handle
3020 static void HTTP_CloseHTTPRequestHandle(LPWININETHANDLEHEADER hdr)
3023 LPWININETHTTPREQW lpwhr = (LPWININETHTTPREQW) hdr;
3027 WININET_Release(&lpwhr->lpHttpSession->hdr);
3029 HTTP_CloseConnection(lpwhr);
3031 HeapFree(GetProcessHeap(), 0, lpwhr->lpszPath);
3032 HeapFree(GetProcessHeap(), 0, lpwhr->lpszVerb);
3033 HeapFree(GetProcessHeap(), 0, lpwhr->lpszRawHeaders);
3034 HeapFree(GetProcessHeap(), 0, lpwhr->lpszVersion);
3035 HeapFree(GetProcessHeap(), 0, lpwhr->lpszStatusText);
3037 for (i = 0; i < lpwhr->nCustHeaders; i++)
3039 HeapFree(GetProcessHeap(), 0, lpwhr->pCustHeaders[i].lpszField);
3040 HeapFree(GetProcessHeap(), 0, lpwhr->pCustHeaders[i].lpszValue);
3043 HeapFree(GetProcessHeap(), 0, lpwhr->pCustHeaders);
3044 HeapFree(GetProcessHeap(), 0, lpwhr);
3048 /***********************************************************************
3049 * HTTP_CloseHTTPSessionHandle (internal)
3051 * Deallocate session handle
3054 static void HTTP_CloseHTTPSessionHandle(LPWININETHANDLEHEADER hdr)
3056 LPWININETHTTPSESSIONW lpwhs = (LPWININETHTTPSESSIONW) hdr;
3058 TRACE("%p\n", lpwhs);
3060 WININET_Release(&lpwhs->lpAppInfo->hdr);
3062 HeapFree(GetProcessHeap(), 0, lpwhs->lpszHostName);
3063 HeapFree(GetProcessHeap(), 0, lpwhs->lpszServerName);
3064 HeapFree(GetProcessHeap(), 0, lpwhs->lpszUserName);
3065 HeapFree(GetProcessHeap(), 0, lpwhs);
3069 /***********************************************************************
3070 * HTTP_GetCustomHeaderIndex (internal)
3072 * Return index of custom header from header array
3075 static INT HTTP_GetCustomHeaderIndex(LPWININETHTTPREQW lpwhr, LPCWSTR lpszField,
3076 int requested_index, BOOL request_only)
3080 TRACE("%s\n", debugstr_w(lpszField));
3082 for (index = 0; index < lpwhr->nCustHeaders; index++)
3084 if (strcmpiW(lpwhr->pCustHeaders[index].lpszField, lpszField))
3087 if (request_only && !(lpwhr->pCustHeaders[index].wFlags & HDR_ISREQUEST))
3090 if (!request_only && (lpwhr->pCustHeaders[index].wFlags & HDR_ISREQUEST))
3093 if (requested_index == 0)
3098 if (index >= lpwhr->nCustHeaders)
3101 TRACE("Return: %d\n", index);
3106 /***********************************************************************
3107 * HTTP_InsertCustomHeader (internal)
3109 * Insert header into array
3112 static BOOL HTTP_InsertCustomHeader(LPWININETHTTPREQW lpwhr, LPHTTPHEADERW lpHdr)
3115 LPHTTPHEADERW lph = NULL;
3118 TRACE("--> %s: %s\n", debugstr_w(lpHdr->lpszField), debugstr_w(lpHdr->lpszValue));
3119 count = lpwhr->nCustHeaders + 1;
3121 lph = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, lpwhr->pCustHeaders, sizeof(HTTPHEADERW) * count);
3123 lph = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(HTTPHEADERW) * count);
3127 lpwhr->pCustHeaders = lph;
3128 lpwhr->pCustHeaders[count-1].lpszField = WININET_strdupW(lpHdr->lpszField);
3129 lpwhr->pCustHeaders[count-1].lpszValue = WININET_strdupW(lpHdr->lpszValue);
3130 lpwhr->pCustHeaders[count-1].wFlags = lpHdr->wFlags;
3131 lpwhr->pCustHeaders[count-1].wCount= lpHdr->wCount;
3132 lpwhr->nCustHeaders++;
3137 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
3144 /***********************************************************************
3145 * HTTP_DeleteCustomHeader (internal)
3147 * Delete header from array
3148 * If this function is called, the indexs may change.
3150 static BOOL HTTP_DeleteCustomHeader(LPWININETHTTPREQW lpwhr, DWORD index)
3152 if( lpwhr->nCustHeaders <= 0 )
3154 if( index >= lpwhr->nCustHeaders )
3156 lpwhr->nCustHeaders--;
3158 memmove( &lpwhr->pCustHeaders[index], &lpwhr->pCustHeaders[index+1],
3159 (lpwhr->nCustHeaders - index)* sizeof(HTTPHEADERW) );
3160 memset( &lpwhr->pCustHeaders[lpwhr->nCustHeaders], 0, sizeof(HTTPHEADERW) );
3165 /***********************************************************************
3166 * IsHostInProxyBypassList (@)
3171 BOOL WINAPI IsHostInProxyBypassList(DWORD flags, LPCSTR szHost, DWORD length)
3173 FIXME("STUB: flags=%d host=%s length=%d\n",flags,szHost,length);