summaryrefslogtreecommitdiff
path: root/pjlib-util/src/pjlib-util-test/test.h
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2010-02-04 18:29:16 +0000
committerLiong Sauw Ming <ming@teluu.com>2010-02-04 18:29:16 +0000
commitb813b2c567747c86ebe2c3de24ed6af26119ccf2 (patch)
tree7e58a2a2ea0b3a03988c1167f1caab4608bd12cf /pjlib-util/src/pjlib-util-test/test.h
parent5236d4a9fdd5bb3a4e09eb3910e4cd4930e113aa (diff)
Implemented ticket #1018: Simple HTTP client implementation
* pjlib-util: * implement http_client * pjlib-util-test: * unit test for http_client * pjsip-apps/samples: * sample http client implementation * build: * added http_client support on VS6, VS2005, MMP, and Makefile git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3087 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib-util/src/pjlib-util-test/test.h')
-rw-r--r--pjlib-util/src/pjlib-util-test/test.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/pjlib-util/src/pjlib-util-test/test.h b/pjlib-util/src/pjlib-util-test/test.h
index 78a9aa15..69adb7db 100644
--- a/pjlib-util/src/pjlib-util-test/test.h
+++ b/pjlib-util/src/pjlib-util-test/test.h
@@ -23,6 +23,7 @@
#define INCLUDE_ENCRYPTION_TEST 1
#define INCLUDE_STUN_TEST 1
#define INCLUDE_RESOLVER_TEST 1
+#define INCLUDE_HTTP_CLIENT_TEST 1
extern int xml_test(void);
extern int encryption_test();
@@ -30,6 +31,7 @@ extern int encryption_benchmark();
extern int stun_test();
extern int test_main(void);
extern int resolver_test(void);
+extern int http_client_test();
extern void app_perror(const char *title, pj_status_t rc);
extern pj_pool_factory *mem;