mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
23 lines
620 B
C
23 lines
620 B
C
/* Copyright 2009, UCAR/Unidata and OPeNDAP, Inc.
|
|
See the COPYRIGHT file for more information. */
|
|
|
|
#ifndef HTTP_H
|
|
#define HTTP_H 1
|
|
|
|
extern int curlopen(CURL** curlp);
|
|
extern void curlclose(CURL*);
|
|
|
|
extern OCerror ocfetchurl(CURL*, const char*, OCbytes*, long*, struct OCcredentials*);
|
|
extern OCerror ocfetchurl_file(CURL*, const char*, FILE*, off_t*, long*);
|
|
|
|
extern long ocfetchhttpcode(CURL* curl);
|
|
|
|
extern OCerror ocfetchlastmodified(CURL* curl, char* url, long* filetime);
|
|
|
|
extern OCerror occurlopen(CURL** curlp);
|
|
extern void occurlclose(CURL* curlp);
|
|
|
|
extern OCerror ocping(const char* url);
|
|
|
|
#endif /*HTTP_H*/
|