mirror of
https://github.com/lxsang/ant-http
synced 2024-11-14 07:48:21 +01:00
58a7738afe
All checks were successful
gitea-sync/ant-http/pipeline/head This commit looks good
- New plugin interface that supports multiple instances - Fix and improve memory bugs - Refactory and cleanup lib - Improve scheduler
100 lines
2.3 KiB
C
100 lines
2.3 KiB
C
#ifndef HANDLE_H
|
|
#define HANDLE_H
|
|
|
|
#include <time.h>
|
|
|
|
#include "list.h"
|
|
#include "dictionary.h"
|
|
#include "plugin.h"
|
|
|
|
#define SERVER_NAME "Antd"
|
|
#define IS_POST(method) (strcmp(method, "POST") == 0)
|
|
#define IS_GET(method) (strcmp(method, "GET") == 0)
|
|
#define R_STR(d, k) ((char *)dvalue(d, k))
|
|
#define R_INT(d, k) (atoi(dvalue(d, k)))
|
|
#define R_FLOAT(d, k) ((double)atof(dvalue(d, k)))
|
|
#define R_PTR(d, k) (dvalue(d, k))
|
|
#define __RESULT__ "{\"result\":%d,\"msg\":\"%s\"}"
|
|
#define FORM_URL_ENCODE "application/x-www-form-urlencoded"
|
|
#define FORM_MULTI_PART "multipart/form-data"
|
|
#define MAX_IO_WAIT_TIME 5 // second
|
|
|
|
#define ANTD_CLIENT_ACCEPT 0x0
|
|
#define ANTD_CLIENT_HANDSHAKE 0x1
|
|
#define ANTD_CLIENT_HEADER_DECODE 0x2
|
|
#define ANTD_CLIENT_PLUGIN_EXEC 0x3
|
|
#define ANTD_CLIENT_PROTO_CHECK 0x4
|
|
#define ANTD_CLIENT_RESOLVE_REQUEST 0x5
|
|
#define ANTD_CLIENT_SERVE_FILE 0x6
|
|
#define ANTD_CLIENT_RQ_DATA_DECODE 0x7
|
|
#define ANTD_CLIENT_PROXY_MONITOR 0x8
|
|
|
|
#define MAX_PATH_LEN 256
|
|
|
|
typedef enum
|
|
{
|
|
ANTD_CGZ,
|
|
ANTD_CDEFL,
|
|
ANTD_CNONE
|
|
} antd_compress_t;
|
|
|
|
|
|
typedef enum {
|
|
ANTD_PROTO_IP_4,
|
|
ANTD_PROTO_IP_6,
|
|
ANTD_PROTO_ALL
|
|
} antd_proto_t;
|
|
|
|
typedef struct
|
|
{
|
|
int sock;
|
|
void *ssl;
|
|
int state;
|
|
time_t last_io;
|
|
// compress
|
|
antd_compress_t z_level;
|
|
void *zstream;
|
|
int z_status;
|
|
} antd_client_t;
|
|
|
|
typedef struct
|
|
{
|
|
antd_client_t *client;
|
|
dictionary_t request;
|
|
antd_plugin_ctx_t * context;
|
|
} antd_request_t;
|
|
|
|
typedef struct
|
|
{
|
|
dictionary_t header;
|
|
list_t cookie;
|
|
int status;
|
|
|
|
} antd_response_header_t;
|
|
|
|
void set_nonblock(int socket);
|
|
//void set_block(int socket);
|
|
#ifdef USE_ZLIB
|
|
int compressable(char *ctype);
|
|
void set_gzip_types(list_t list);
|
|
#endif
|
|
void antd_send_header(void *, antd_response_header_t *);
|
|
const char *get_status_str(int stat);
|
|
int __t(void *, const char *, ...);
|
|
int __b(void *, const unsigned char *, int);
|
|
int __f(void *, const char *);
|
|
|
|
int upload(const char *, const char *);
|
|
|
|
/*Default function for plugin*/
|
|
void antd_error(void *client, int status, const char *msg);
|
|
|
|
int ws_enable(dictionary_t);
|
|
int read_buf(void *sock, char *buf, int i);
|
|
int antd_send(void *source, const void *data, int len);
|
|
int antd_recv(void *source, void *data, int len);
|
|
int antd_recv_upto(void* src, void* data, int len);
|
|
int antd_close(void *source);
|
|
void destroy_request(void *data);
|
|
#endif
|