Changeset b623b68 in mainline for uspace/lib/http/src
- Timestamp:
- 2013-09-26T09:24:46Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4d4f656
- Parents:
- 3ce68b7
- Location:
- uspace/lib/http/src
- Files:
-
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/http/src/headers.c
r3ce68b7 rb623b68 39 39 #include <macros.h> 40 40 41 #include "http.h"42 #include "http-ctype.h"41 #include <http/http.h> 42 #include <http/ctype.h> 43 43 44 44 #define HTTP_HEADER_LINE "%s: %s\r\n" -
uspace/lib/http/src/http.c
r3ce68b7 rb623b68 42 42 #include <inet/dnsr.h> 43 43 44 #include "http.h"45 #include "receive-buffer.h"44 #include <http/http.h> 45 #include <http/receive-buffer.h> 46 46 47 47 static ssize_t http_receive(void *client_data, void *buf, size_t buf_size) -
uspace/lib/http/src/receive-buffer.c
r3ce68b7 rb623b68 41 41 #include <adt/list.h> 42 42 43 #include "receive-buffer.h"43 #include <http/receive-buffer.h> 44 44 45 45 int recv_buffer_init(receive_buffer_t *rb, size_t buffer_size, -
uspace/lib/http/src/request.c
r3ce68b7 rb623b68 41 41 #include <net/socket.h> 42 42 43 #include "http.h"43 #include <http/http.h> 44 44 45 45 #define HTTP_METHOD_LINE "%s %s HTTP/1.1\r\n" -
uspace/lib/http/src/response.c
r3ce68b7 rb623b68 39 39 #include <macros.h> 40 40 41 #include "http.h"41 #include <http/http.h> 42 42 43 43 int http_parse_status(const char *line, http_version_t *out_version,
Note:
See TracChangeset
for help on using the changeset viewer.