bug every where

This commit is contained in:
Xuan Sang LE
2018-02-10 11:22:41 +01:00
parent 8a6dcb0793
commit aba40b16f5
23 changed files with 405 additions and 156 deletions

View File

@ -8,7 +8,7 @@ void init()
printf("Finish init\n");
}
void execute(int client,const char* method,dictionary rq)
void execute(void* client,const char* method,dictionary rq)
{
/**
@ -25,7 +25,7 @@ void execute(int client,const char* method,dictionary rq)
freedict(d);
}
void get(int client,const char* method,dictionary rq)
void get(void* client,const char* method,dictionary rq)
{
html(client);
if(rq)
@ -46,7 +46,7 @@ void get(int client,const char* method,dictionary rq)
__t(client,"no request");
}
void handler(int client, const char* method, const char* rqpth, dictionary rq)
void handler(void* client, const char* method, const char* rqpth, dictionary rq)
{
if(EQU(rqpth,"default"))
{