mirror of
https://github.com/lxsang/ant-http
synced 2024-11-17 17:08:20 +01:00
fix missing symbol
This commit is contained in:
parent
079f96de66
commit
1e2e600bfc
BIN
dist/antd-1.0.4b.tar.gz
vendored
BIN
dist/antd-1.0.4b.tar.gz
vendored
Binary file not shown.
12
lib/handle.c
12
lib/handle.c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user