to_string.c
816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <string.h>
#include <stdio.h>
#include "http/response.h"
#include "http/header.h"
size_t
httpResponseToString(HttpResponse response, char * string)
{
int i;
size_t size = httpResponseSizeGet(response);
char status[4];
snprintf(status, 4, "%d", response->status);
strcpy(string, response->version);
string += strlen(string);
*string++ = ' ';
strcpy(string, status);
string += strlen(string);
*string++ = ' ';
strcpy(string, response->reason);
string += strlen(string);
*string++ = '\r';
*string++ = '\n';
for (i=0; i<response->nheader; i++) {
string += httpHeaderToString(response->header[i], string);
*string++ = '\r';
*string++ = '\n';
}
*string++ = '\r';
*string++ = '\n';
memcpy(string, response->body, response->nbody);
return size;
}
// vim: set ts=4 sw=4: