doom3-gpl
Doom 3 GPL source release
|
#include "setup.h"
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <sys/time.h>
#include <netdb.h>
#include <sys/ioctl.h>
#include <signal.h>
#include "urldata.h"
#include <curl/curl.h>
#include "transfer.h"
#include "sendf.h"
#include "formdata.h"
#include "progress.h"
#include "base64.h"
#include "cookie.h"
#include "strequal.h"
#include "ssluse.h"
#include "http_digest.h"
#include "http_ntlm.h"
#include "http_negotiate.h"
#include "url.h"
#include "share.h"
#include "http.h"
#include <curl/mprintf.h>
Go to the source code of this file.
Classes | |
struct | send_buffer |
Macros | |
#define | _MPRINTF_REPLACE /* use our functions only */ |
#define | SELECT_OK 0 |
#define | SELECT_ERROR 1 |
#define | SELECT_TIMEOUT 2 |
Typedefs | |
typedef struct send_buffer | send_buffer |
Functions | |
void | Curl_http_auth_act (struct connectdata *conn) |
CURLcode | Curl_http_auth (struct connectdata *conn, int httpcode, char *header) |
bool | Curl_compareheader (char *headerline, const char *header, const char *content) |
CURLcode | Curl_ConnectHTTPProxyTunnel (struct connectdata *conn, int sockindex, char *hostname, int remote_port) |
CURLcode | Curl_http_connect (struct connectdata *conn) |
CURLcode | Curl_http_done (struct connectdata *conn) |
void | Curl_http_auth_stage (struct SessionHandle *data, int stage) |
CURLcode | Curl_http (struct connectdata *conn) |
#define SELECT_ERROR 1 |
#define SELECT_OK 0 |
#define SELECT_TIMEOUT 2 |
typedef struct send_buffer send_buffer |
CURLcode Curl_ConnectHTTPProxyTunnel | ( | struct connectdata * | conn, |
int | sockindex, | ||
char * | hostname, | ||
int | remote_port | ||
) |
CURLcode Curl_http | ( | struct connectdata * | conn | ) |
CURLcode Curl_http_auth | ( | struct connectdata * | conn, |
int | httpcode, | ||
char * | header | ||
) |
void Curl_http_auth_act | ( | struct connectdata * | conn | ) |
void Curl_http_auth_stage | ( | struct SessionHandle * | data, |
int | stage | ||
) |
CURLcode Curl_http_connect | ( | struct connectdata * | conn | ) |
CURLcode Curl_http_done | ( | struct connectdata * | conn | ) |