mirror of
https://github.com/lxsang/ant-http
synced 2024-11-12 14:58:21 +01:00
65 lines
1.5 KiB
C
65 lines
1.5 KiB
C
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#ifdef USE_DB
|
|
#include "dbhelper.h"
|
|
#endif
|
|
#include "dictionary.h"
|
|
#include "list.h"
|
|
#include "ini.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\"}"
|
|
|
|
typedef struct {
|
|
char *name;
|
|
char *dbpath;
|
|
char * htdocs;
|
|
char*pdir;
|
|
int *sport;
|
|
} plugin_header;
|
|
|
|
|
|
|
|
typedef void(*call)();
|
|
#ifdef USE_DB
|
|
typedef sqlite3* sqldb;
|
|
#endif
|
|
extern plugin_header __plugin__;
|
|
extern call __init__;
|
|
|
|
int response(int, const char*);
|
|
void header_base(int);
|
|
void header(int,const char*);
|
|
void redirect(int,const char*);
|
|
void html(int);
|
|
void text(int);
|
|
void json(int);
|
|
void jpeg(int);
|
|
void octstream(int, char*);
|
|
void textstream(int);
|
|
int __ti(int,int);
|
|
int __t(int, const char*,...);
|
|
int __b(int, const unsigned char*, int);
|
|
int __f(int, const char*);
|
|
int __fb(int, const char*);
|
|
int upload(const char*, const char*);
|
|
char* config_dir();
|
|
char* route(const char*);
|
|
char* htdocs(const char*);
|
|
#ifdef USE_DB
|
|
sqldb getdb();
|
|
sqldb __getdb(char *name);
|
|
#endif
|
|
void set_cookie(int,dictionary);
|
|
void clear_cookie(int, dictionary);
|
|
/*Default function for plugin*/
|
|
void handler(int, const char*,const char*,dictionary);
|
|
void unknow(int);
|