1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-09 23:49:47 +02:00
ant-http/plugins/cookiex/cookiex.c

43 lines
645 B
C
Raw Normal View History

2015-10-22 11:49:38 +02:00
#include "../plugin.h"
void init();
call __init__ = init;
void init()
{
printf("Finish init\n");
}
void execute(int client,const char* method,dictionary rq)
{
/**
* Set cookie to the browser
*/
char* c = server_time();
dictionary d = dict();
dput(d,"test",c);
dput(d,"test1","This is another cookie");
set_cookie(client,d);
LOG("%s",c);
__t(client,"<h1>Set the cookie</h1>");
freedict(d);
}
void get(int client,const char* method,dictionary rq)
{
2016-10-29 15:02:16 +02:00
}
void handler(int client, const char* method, const char* rqpth, dictionary rq)
{
if(EQU(rqpth,"default"))
{
execute(client,method,rq);
}
else
{
unknow(client);
}
2015-10-22 11:49:38 +02:00
}