gambas-source-code/gb.net.curl/src/gbcurl.h
Benoît Minisini 2fbf67cb29 [CONFIGURATION]
* NEW: Update FSF address in every source file.


git-svn-id: svn://localhost/gambas/trunk@3870 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2011-06-03 00:51:09 +00:00

78 lines
2 KiB
C

/***************************************************************************
gbcurl.h
(c) 2003-2008 Daniel Campos Fernández <dcamposf@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
***************************************************************************/
#ifndef __GB_CURL_H
#define __GB_CURL_H
#include <curl/curl.h>
#include "main.h"
typedef void** Adv_ARRAY;
typedef struct
{
int type;
int auth;
char *host;
char *user;
char *pwd;
char *userpwd;
} Adv_proxy;
typedef struct
{
char *user;
char *pwd;
char *userpwd;
int auth;
} Adv_user;
char *CURL_get_protocol(char *url, char *default_protocol);
void Adv_correct_url(char **buf,char *protocol);
void Adv_add_info (Adv_ARRAY *Array, int *narray, void *Obj);
void Adv_remove_info (Adv_ARRAY *Array,int *narray,void *Obj);
int Adv_Comp(char *str1,char *user, char *pwd);
void Adv_proxy_NEW (Adv_proxy *proxy);
void Adv_proxy_CLEAR (Adv_proxy *proxy);
void Adv_proxy_SET (Adv_proxy *proxy,CURL *curl);
int Adv_proxy_SETAUTH (Adv_proxy *user,int auth);
int Adv_proxy_SETTYPE (Adv_proxy *proxy,int type);
void Adv_user_NEW (Adv_user *user);
void Adv_user_CLEAR (Adv_user *user);
void Adv_user_SET (Adv_user *user,CURL *curl);
int Adv_user_SETAUTH (Adv_user *user,int auth);
enum {
STATUS_INACTIVE = 0,
STATUS_RECEIVING_DATA = 4,
STATUS_CONNECTING = 6
};
#endif