diff options
author | Gustavo Noronha Silva <gustavo.noronha@collabora.com> | 2012-08-20 10:37:17 -0300 |
---|---|---|
committer | Gustavo Noronha Silva <gns@gnome.org> | 2012-08-20 10:45:09 -0300 |
commit | d2a1f47dd173cc6642832c33b554c506dc97b7b9 (patch) | |
tree | a7145236d46e1867b681fc243ce64d0b49bf2620 /tests | |
parent | 207b8aa56d272e20d5d3e052753e15b8fb43214f (diff) | |
download | libsoup-d2a1f47dd173cc6642832c33b554c506dc97b7b9.tar.gz libsoup-d2a1f47dd173cc6642832c33b554c506dc97b7b9.tar.bz2 libsoup-d2a1f47dd173cc6642832c33b554c506dc97b7b9.zip |
Add SoupMultipartInputStream for handling multipart responses
SoupMultipartInputStream can be used by the API user to wrap the input
stream, and provides API to obtain the next part and its headers,
using a SoupFilterInputStream internally for buffer management.
https://bugzilla.gnome.org/show_bug.cgi?id=656684
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 594890b9..d2a1cd64 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -24,6 +24,7 @@ noinst_PROGRAMS = \ get \ header-parsing \ misc-test \ + multipart-test \ ntlm-test \ redirect-test \ requester-test \ @@ -57,6 +58,7 @@ if BUILD_LIBSOUP_GNOME get_LDADD = $(top_builddir)/libsoup/libsoup-gnome-2.4.la endif header_parsing_SOURCES = header-parsing.c $(TEST_SRCS) +multipart_test_SOURCES = multipart-test.c $(TEST_SRCS) misc_test_SOURCES = misc-test.c $(TEST_SRCS) ntlm_test_SOURCES = ntlm-test.c $(TEST_SRCS) proxy_test_SOURCES = proxy-test.c $(TEST_SRCS) @@ -97,6 +99,7 @@ TESTS = \ date \ header-parsing \ misc-test \ + multipart-test \ ntlm-test \ redirect-test \ requester-test \ |