1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-01 12:59:47 +02:00

fix missing symbol

This commit is contained in:
lxsang 2019-12-13 13:42:39 +01:00
parent 079f96de66
commit 1e2e600bfc
2 changed files with 12 additions and 0 deletions

Binary file not shown.

View File

@ -6,6 +6,18 @@ int usessl()
}
#endif
void error_log(const char* fmt, ...)
{
UNUSED(fmt);
return;
}
#ifdef DEBUG
void server_log(const char* fmt, ...)
{
UNUSED(fmt);
return;
}
#endif
void set_status(void* client,int code,const char* msg)
{
char *s = __s("HTTP/1.1 %d %s", code, msg);