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/include/pjlib-util/config.h

    r2394 r3087  
    256256 
    257257 
     258/* ************************************************************************** 
     259 * HTTP Client configuration 
     260 */ 
     261/** 
     262 * Timeout value for HTTP request operation. The value is in ms. 
     263 * Default: 60000ms 
     264 */ 
     265#ifndef PJ_HTTP_DEFAULT_TIMEOUT 
     266#   define PJ_HTTP_DEFAULT_TIMEOUT         (60000) 
     267#endif 
     268 
    258269/** 
    259270 * @} 
Note: See TracChangeset for help on using the changeset viewer.