4 * Copyright 1999 Corel Corporation
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #ifndef _WINE_INTERNET_H_
24 #define _WINE_INTERNET_H_
26 #ifndef __WINE_CONFIG_H
27 # error You must include config.h to use this header
30 #include "wine/unicode.h"
31 #include "wine/list.h"
37 #ifdef HAVE_NETINET_IN_H
38 # include <sys/types.h>
39 # include <netinet/in.h>
41 #ifdef HAVE_SYS_SOCKET_H
42 # include <sys/socket.h>
45 #if !defined(__MINGW32__) && !defined(_MSC_VER)
46 #define closesocket close
47 #define ioctlsocket ioctl
48 #endif /* __MINGW32__ */
50 /* used for netconnection.c stuff */
56 } WININET_NETCONNECTION;
58 static inline LPWSTR heap_strdupW(LPCWSTR str)
65 size = (strlenW(str)+1)*sizeof(WCHAR);
66 ret = HeapAlloc(GetProcessHeap(), 0, size);
68 memcpy(ret, str, size);
74 static inline WCHAR *heap_strdupAtoW(const char *str)
81 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
82 ret = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
84 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
90 static inline char *heap_strdupWtoA(LPCWSTR str)
95 DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
96 ret = HeapAlloc(GetProcessHeap(), 0, size);
98 WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
104 static inline void WININET_find_data_WtoA(LPWIN32_FIND_DATAW dataW, LPWIN32_FIND_DATAA dataA)
106 dataA->dwFileAttributes = dataW->dwFileAttributes;
107 dataA->ftCreationTime = dataW->ftCreationTime;
108 dataA->ftLastAccessTime = dataW->ftLastAccessTime;
109 dataA->ftLastWriteTime = dataW->ftLastWriteTime;
110 dataA->nFileSizeHigh = dataW->nFileSizeHigh;
111 dataA->nFileSizeLow = dataW->nFileSizeLow;
112 dataA->dwReserved0 = dataW->dwReserved0;
113 dataA->dwReserved1 = dataW->dwReserved1;
114 WideCharToMultiByte(CP_ACP, 0, dataW->cFileName, -1,
115 dataA->cFileName, sizeof(dataA->cFileName),
117 WideCharToMultiByte(CP_ACP, 0, dataW->cAlternateFileName, -1,
118 dataA->cAlternateFileName, sizeof(dataA->cAlternateFileName),
124 WH_HINIT = INTERNET_HANDLE_TYPE_INTERNET,
125 WH_HFTPSESSION = INTERNET_HANDLE_TYPE_CONNECT_FTP,
126 WH_HGOPHERSESSION = INTERNET_HANDLE_TYPE_CONNECT_GOPHER,
127 WH_HHTTPSESSION = INTERNET_HANDLE_TYPE_CONNECT_HTTP,
128 WH_HFILE = INTERNET_HANDLE_TYPE_FTP_FILE,
129 WH_HFTPFINDNEXT = INTERNET_HANDLE_TYPE_FTP_FIND,
130 WH_HHTTPREQ = INTERNET_HANDLE_TYPE_HTTP_REQUEST,
133 #define INET_OPENURL 0x0001
134 #define INET_CALLBACKW 0x0002
136 typedef struct _object_header_t object_header_t;
139 void (*Destroy)(object_header_t*);
140 void (*CloseConnection)(object_header_t*);
141 DWORD (*QueryOption)(object_header_t*,DWORD,void*,DWORD*,BOOL);
142 DWORD (*SetOption)(object_header_t*,DWORD,void*,DWORD);
143 DWORD (*ReadFile)(object_header_t*,void*,DWORD,DWORD*);
144 DWORD (*ReadFileExA)(object_header_t*,INTERNET_BUFFERSA*,DWORD,DWORD_PTR);
145 DWORD (*ReadFileExW)(object_header_t*,INTERNET_BUFFERSW*,DWORD,DWORD_PTR);
146 DWORD (*WriteFile)(object_header_t*,const void*,DWORD,DWORD*);
147 DWORD (*QueryDataAvailable)(object_header_t*,DWORD*,DWORD,DWORD_PTR);
148 DWORD (*FindNextFileW)(object_header_t*,void*);
151 struct _object_header_t
154 const object_vtbl_t *vtbl;
159 DWORD dwInternalFlags;
161 INTERNET_STATUS_CALLBACK lpfnStatusCB;
163 struct list children;
172 LPWSTR lpszProxyBypass;
173 LPWSTR lpszProxyUsername;
174 LPWSTR lpszProxyPassword;
182 appinfo_t *lpAppInfo;
183 LPWSTR lpszHostName; /* the final destination of the request */
184 LPWSTR lpszServerName; /* the name of the server we directly connect to */
187 INTERNET_PORT nHostPort; /* the final destination port of the request */
188 INTERNET_PORT nServerPort; /* the port of the server we directly connect to */
189 struct sockaddr_storage socketAddress;
193 #define HDR_ISREQUEST 0x0001
194 #define HDR_COMMADELIMITED 0x0002
195 #define HDR_SEMIDELIMITED 0x0004
203 } HTTPHEADERW, *LPHTTPHEADERW;
208 typedef struct gzip_stream_t gzip_stream_t;
213 http_session_t *lpHttpSession;
216 LPWSTR lpszRawHeaders;
217 WININET_NETCONNECTION netConnection;
219 LPWSTR lpszStatusText;
220 DWORD dwBytesToWrite;
221 DWORD dwBytesWritten;
222 HTTPHEADERW *pCustHeaders;
225 LPWSTR lpszCacheFile;
226 struct HttpAuthInfo *pAuthInfo;
227 struct HttpAuthInfo *pProxyAuthInfo;
229 CRITICAL_SECTION read_section; /* section to protect the following fields */
230 DWORD dwContentLength; /* total number of bytes to be read */
231 DWORD dwContentRead; /* bytes of the content read so far */
232 BOOL read_chunked; /* are we reading in chunked mode? */
233 DWORD read_pos; /* current read position in read_buf */
234 DWORD read_size; /* valid data size in read_buf */
235 BYTE read_buf[4096]; /* buffer for already read but not returned data */
238 gzip_stream_t *gzip_stream;
243 struct WORKREQ_FTPPUTFILEW
245 LPWSTR lpszLocalFile;
246 LPWSTR lpszNewRemoteFile;
251 struct WORKREQ_FTPSETCURRENTDIRECTORYW
253 LPWSTR lpszDirectory;
256 struct WORKREQ_FTPCREATEDIRECTORYW
258 LPWSTR lpszDirectory;
261 struct WORKREQ_FTPFINDFIRSTFILEW
263 LPWSTR lpszSearchFile;
264 LPWIN32_FIND_DATAW lpFindFileData;
269 struct WORKREQ_FTPGETCURRENTDIRECTORYW
271 LPWSTR lpszDirectory;
272 DWORD *lpdwDirectory;
275 struct WORKREQ_FTPOPENFILEW
283 struct WORKREQ_FTPGETFILEW
285 LPWSTR lpszRemoteFile;
288 DWORD dwLocalFlagsAttribute;
293 struct WORKREQ_FTPDELETEFILEW
298 struct WORKREQ_FTPREMOVEDIRECTORYW
300 LPWSTR lpszDirectory;
303 struct WORKREQ_FTPRENAMEFILEW
309 struct WORKREQ_FTPFINDNEXTW
311 LPWIN32_FIND_DATAW lpFindFileData;
314 struct WORKREQ_HTTPSENDREQUESTW
317 DWORD dwHeaderLength;
319 DWORD dwOptionalLength;
320 DWORD dwContentLength;
324 struct WORKREQ_HTTPENDREQUESTW
330 struct WORKREQ_SENDCALLBACK
333 DWORD dwInternetStatus;
334 LPVOID lpvStatusInfo;
335 DWORD dwStatusInfoLength;
338 struct WORKREQ_INTERNETOPENURLW
343 DWORD dwHeadersLength;
348 struct WORKREQ_INTERNETREADFILEEXA
350 LPINTERNET_BUFFERSA lpBuffersOut;
353 struct WORKREQ_INTERNETREADFILEEXW
355 LPINTERNET_BUFFERSW lpBuffersOut;
358 typedef struct WORKREQ
360 void (*asyncproc)(struct WORKREQ*);
361 object_header_t *hdr;
364 struct WORKREQ_FTPPUTFILEW FtpPutFileW;
365 struct WORKREQ_FTPSETCURRENTDIRECTORYW FtpSetCurrentDirectoryW;
366 struct WORKREQ_FTPCREATEDIRECTORYW FtpCreateDirectoryW;
367 struct WORKREQ_FTPFINDFIRSTFILEW FtpFindFirstFileW;
368 struct WORKREQ_FTPGETCURRENTDIRECTORYW FtpGetCurrentDirectoryW;
369 struct WORKREQ_FTPOPENFILEW FtpOpenFileW;
370 struct WORKREQ_FTPGETFILEW FtpGetFileW;
371 struct WORKREQ_FTPDELETEFILEW FtpDeleteFileW;
372 struct WORKREQ_FTPREMOVEDIRECTORYW FtpRemoveDirectoryW;
373 struct WORKREQ_FTPRENAMEFILEW FtpRenameFileW;
374 struct WORKREQ_FTPFINDNEXTW FtpFindNextW;
375 struct WORKREQ_HTTPSENDREQUESTW HttpSendRequestW;
376 struct WORKREQ_HTTPENDREQUESTW HttpEndRequestW;
377 struct WORKREQ_SENDCALLBACK SendCallback;
378 struct WORKREQ_INTERNETOPENURLW InternetOpenUrlW;
379 struct WORKREQ_INTERNETREADFILEEXA InternetReadFileExA;
380 struct WORKREQ_INTERNETREADFILEEXW InternetReadFileExW;
383 } WORKREQUEST, *LPWORKREQUEST;
385 HINTERNET WININET_AllocHandle( object_header_t *info );
386 object_header_t *WININET_GetObject( HINTERNET hinternet );
387 object_header_t *WININET_AddRef( object_header_t *info );
388 BOOL WININET_Release( object_header_t *info );
389 BOOL WININET_FreeHandle( HINTERNET hinternet );
391 DWORD INET_QueryOption(DWORD,void*,DWORD*,BOOL);
393 time_t ConvertTimeString(LPCWSTR asctime);
395 HINTERNET FTP_Connect(appinfo_t *hIC, LPCWSTR lpszServerName,
396 INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
397 LPCWSTR lpszPassword, DWORD dwFlags, DWORD_PTR dwContext,
398 DWORD dwInternalFlags);
400 HINTERNET HTTP_Connect(appinfo_t *hIC, LPCWSTR lpszServerName,
401 INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
402 LPCWSTR lpszPassword, DWORD dwFlags, DWORD_PTR dwContext,
403 DWORD dwInternalFlags);
405 BOOL GetAddress(LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
406 struct sockaddr *psa, socklen_t *sa_len);
408 void INTERNET_SetLastError(DWORD dwError);
409 DWORD INTERNET_GetLastError(void);
410 BOOL INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest);
411 LPSTR INTERNET_GetResponseBuffer(void);
412 LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen);
414 VOID SendAsyncCallback(object_header_t *hdr, DWORD_PTR dwContext,
415 DWORD dwInternetStatus, LPVOID lpvStatusInfo,
416 DWORD dwStatusInfoLength);
418 VOID INTERNET_SendCallback(object_header_t *hdr, DWORD_PTR dwContext,
419 DWORD dwInternetStatus, LPVOID lpvStatusInfo,
420 DWORD dwStatusInfoLength);
422 BOOL NETCON_connected(WININET_NETCONNECTION *connection);
423 DWORD NETCON_init(WININET_NETCONNECTION *connnection, BOOL useSSL);
424 void NETCON_unload(void);
425 DWORD NETCON_create(WININET_NETCONNECTION *connection, int domain,
426 int type, int protocol);
427 DWORD NETCON_close(WININET_NETCONNECTION *connection);
428 DWORD NETCON_connect(WININET_NETCONNECTION *connection, const struct sockaddr *serv_addr,
429 unsigned int addrlen);
430 DWORD NETCON_secure_connect(WININET_NETCONNECTION *connection, LPCWSTR hostname);
431 DWORD NETCON_send(WININET_NETCONNECTION *connection, const void *msg, size_t len, int flags,
432 int *sent /* out */);
433 DWORD NETCON_recv(WININET_NETCONNECTION *connection, void *buf, size_t len, int flags,
434 int *recvd /* out */);
435 BOOL NETCON_query_data_available(WININET_NETCONNECTION *connection, DWORD *available);
436 LPCVOID NETCON_GetCert(WININET_NETCONNECTION *connection);
437 DWORD NETCON_set_timeout(WININET_NETCONNECTION *connection, BOOL send, int value);
438 int sock_get_error(int);
440 extern void URLCacheContainers_CreateDefaults(void);
441 extern void URLCacheContainers_DeleteAll(void);
443 #define MAX_REPLY_LEN 0x5B4
445 /* Used for debugging - maybe need to be shared in the Wine debugging code ? */
452 #endif /* _WINE_INTERNET_H_ */