This commit is contained in:
Dennis Heimbigner 2010-07-10 01:43:45 +00:00
parent 0ed66db735
commit cee2274995
2 changed files with 20 additions and 1 deletions

View File

@ -19,7 +19,7 @@ oc.c occompile.c occontent.c ocdata.c ocdebug.c ocdrno.c ocdump.c \
ocinternal.c oclist.c oclog.c ocnode.c ocutil.c occlientparams.c \
ocxdr_stdio.c rc.c read.c
HDRS= constraints.h dapparselex.h dapurl.h http.h ocbytes.h \
HDRS= curlfunctions.h constraints.h dapparselex.h dapurl.h http.h ocbytes.h \
occontent.h ocdata.h ocdatatypes.h ocdebug.h ocdrno.h ocdump.h oc.h \
ocinternal.h oclist.h oclog.h ocnode.h occlientparams.h ocutil.h rc.h \
read.h

19
oc/curlfunctions.h Normal file
View File

@ -0,0 +1,19 @@
/*
* rc.h
*
* Created on: Mar 5, 2009
* Author: rikki
*/
#ifndef _CURLFUNCTION_H_
#define _CURLFUNCTION_H_
extern int ocset_curl_flags(CURL*, OCstate*);
extern int ocset_user_password(CURL*, const char *user, const char *pwd);
extern int ocset_proxy(CURL*, OCstate*);
extern int ocset_ssl(CURL*, OCstate*);
#endif /*_CURLFUNCTION_H_*/