Ignore:
Timestamp:
Feb 4, 2010 6:29:16 PM (14 years ago)
Author:
ming
Message:

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
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/build/Makefile

    r2183 r3087  
    2929export PJLIB_UTIL_OBJS += $(OS_OBJS) $(M_OBJS) $(CC_OBJS) $(HOST_OBJS) \ 
    3030                base64.o crc32.o errno.o dns.o dns_dump.o dns_server.o \ 
    31                 getopt.o hmac_md5.o hmac_sha1.o md5.o pcap.o resolver.o \ 
     31                getopt.o hmac_md5.o hmac_sha1.o http_client.o md5.o pcap.o resolver.o \ 
    3232                scanner.o sha1.o srv_resolver.o string.o stun_simple.o \ 
    3333                stun_simple_client.o xml.o 
     
    3838# 
    3939export UTIL_TEST_SRCDIR = ../src/pjlib-util-test 
    40 export UTIL_TEST_OBJS += xml.o encryption.o stun.o resolver_test.o test.o  
     40export UTIL_TEST_OBJS += xml.o encryption.o stun.o resolver_test.o test.o \ 
     41                http_client.o 
    4142export UTIL_TEST_CFLAGS += $(_CFLAGS) 
    4243export UTIL_TEST_LDFLAGS += $(_LDFLAGS) 
Note: See TracChangeset for help on using the changeset viewer.