~steve-sk2/mingw-w64/oneiric

« back to all changes in this revision

Viewing changes to mingw-w64-headers/include/http.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Kitt
  • Date: 2010-11-18 00:04:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101118000446-xe24b423su55onyl
Tags: 1.0+20101003-1
* New maintainer. (Closes: #594371.)
* New upstream snapshot:
  - Includes getopt.h. (Closes: #569914.)
* Build g++ for Win64. (Closes: #600451.)
* Standards-Version 3.9.1 (new packaging).
* Include patch from
  http://mingw-w64.svn.sourceforge.net/viewvc/mingw-w64?view=revision&revision=3715
  as suggested by Rafaël Carré.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
  typedef HTTP_OPAQUE_ID HTTP_CONNECTION_ID,*PHTTP_CONNECTION_ID;
31
31
  typedef HTTP_OPAQUE_ID HTTP_RAW_CONNECTION_ID,*PHTTP_RAW_CONNECTION_ID;
32
32
 
33
 
#define HTTP_NULL_ID (0ui64)
 
33
#define HTTP_NULL_ID (0ull)
34
34
#define HTTP_IS_NULL_ID(pid) (HTTP_NULL_ID==*(pid))
35
35
#define HTTP_SET_NULL_ID(pid) (*(pid) = HTTP_NULL_ID)
36
36
 
203
203
  } HTTP_RESPONSE,*PHTTP_RESPONSE;
204
204
 
205
205
  typedef enum _HTTP_CACHE_POLICY_TYPE {
206
 
    HttpCachePolicyNocache,HttpCachePolicyUserInvalidates,HttpCachePolicyTimeToLive,HttpCachePolicyMaximum
 
206
    HttpCachePolicyNocache,
 
207
    HttpCachePolicyUserInvalidates,
 
208
    HttpCachePolicyTimeToLive,
 
209
    HttpCachePolicyMaximum
207
210
  } HTTP_CACHE_POLICY_TYPE,*PHTTP_CACHE_POLICY_TYPE;
208
211
 
209
212
  typedef struct _HTTP_CACHE_POLICY {
212
215
  } HTTP_CACHE_POLICY,*PHTTP_CACHE_POLICY;
213
216
 
214
217
  typedef enum _HTTP_SERVICE_CONFIG_ID {
215
 
    HttpServiceConfigIPListenList,HttpServiceConfigSSLCertInfo,HttpServiceConfigUrlAclInfo,HttpServiceConfigMax
 
218
    HttpServiceConfigIPListenList,
 
219
    HttpServiceConfigSSLCertInfo,
 
220
    HttpServiceConfigUrlAclInfo,
 
221
    HttpServiceConfigMax
216
222
  } HTTP_SERVICE_CONFIG_ID,*PHTTP_SERVICE_CONFIG_ID;
217
223
 
218
224
  typedef enum _HTTP_SERVICE_CONFIG_QUERY_TYPE {
219
 
    HttpServiceConfigQueryExact,HttpServiceConfigQueryNext,HttpServiceConfigQueryMax
 
225
    HttpServiceConfigQueryExact,
 
226
    HttpServiceConfigQueryNext,
 
227
    HttpServiceConfigQueryMax
220
228
  } HTTP_SERVICE_CONFIG_QUERY_TYPE,*PHTTP_SERVICE_CONFIG_QUERY_TYPE;
221
229
 
222
230
  typedef struct _HTTP_SERVICE_CONFIG_SSL_KEY {
312
320
#ifdef __cplusplus
313
321
}
314
322
#endif
315
 
#endif
 
323
 
 
324
#endif /* __HTTP_H__ */