1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-01 12:59:47 +02:00
This commit is contained in:
lxsang 2019-12-04 18:18:48 +00:00
parent 5d795ce4c3
commit 2dc6d09413
2 changed files with 17 additions and 2 deletions

Binary file not shown.

View File

@ -482,11 +482,26 @@ void *serve_file(void *data)
task->priority++;
char *path = (char *)dvalue(rq->request, "ABS_RESOURCE_PATH");
char *mime_type = (char *)dvalue(rq->request, "RESOURCE_MIME");
ctype(rq->client, mime_type);
// find content length
/*if (is_bin(path))
__fb(rq->client, path);
else*/
__f(rq->client, path);
struct stat st;
int s = stat(path, &st);
if(s == -1)
{
notfound(rq->client);
}
else
{
int size = (int)st.st_size;
set_status(rq->client,200,"OK");
__t(rq->client,"Content-Type: %s",mime_type);
__t(rq->client,"Content-Length: %d",size);
response(rq->client,"");
__f(rq->client, path);
}
return task;
}