Changeset b623b68 in mainline
- Timestamp:
- 2013-09-26T09:24:46Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4d4f656
- Parents:
- 3ce68b7
- Location:
- uspace
- Files:
-
- 3 edited
- 8 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/download/Makefile
r3ce68b7 rb623b68 29 29 USPACE_PREFIX = ../.. 30 30 LIBS = $(LIBHTTP_PREFIX)/libhttp.a $(LIBURI_PREFIX)/liburi.a 31 EXTRA_CFLAGS = -I$(LIBHTTP_PREFIX) -I$(LIBURI_PREFIX)31 EXTRA_CFLAGS = -I$(LIBHTTP_PREFIX)/include -I$(LIBURI_PREFIX) 32 32 DEFS = -DRELEASE=$(RELEASE) 33 33 BINARY = download -
uspace/app/download/main.c
r3ce68b7 rb623b68 47 47 #include <net/socket.h> 48 48 49 #include <http .h>49 #include <http/http.h> 50 50 #include <uri.h> 51 51 -
uspace/lib/http/Makefile
r3ce68b7 rb623b68 31 31 SLIBRARY = libhttp.so.0.0 32 32 LSONAME = libhttp.so0 33 #EXTRA_CFLAGS += 33 EXTRA_CFLAGS += -Iinclude 34 34 35 35 SOURCES = \ 36 http.c \37 headers.c \38 request.c \39 response.c \40 receive-buffer.c36 src/http.c \ 37 src/headers.c \ 38 src/request.c \ 39 src/response.c \ 40 src/receive-buffer.c 41 41 42 42 include $(USPACE_PREFIX)/Makefile.common -
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.