netcdf-c/oc/http.h
2010-06-03 13:24:43 +00:00

21 lines
536 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 int ocfetchurl(CURL*, char*, OCbytes*, long*);
extern int ocfetchurl_file(CURL*, char*, FILE*, unsigned long*, long*);
extern long ocfetchhttpcode(CURL* curl);
extern int ocfetchlastmodified(CURL* curl, char* url, long* filetime);
extern int occurlopen(CURL** curlp);
extern void occurlclose(CURL* curlp);
#endif /*HTTP_H*/