wsp_headers.h
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * wsp_headers.h - WSP PDU headers implementation header
  3.  *
  4.  * Kalle Marjola <rpr@wapit.com>
  5.  */
  6. #ifndef WSP_HEADERS_H
  7. #define WSP_HEADERS_H
  8. #include "gwlib/gwlib.h"
  9. /* return an HTTPHeader linked list which must be freed by the caller
  10.  * (see http.h for details of HTTPHeaders). Cannot fail.
  11.  * The second argument is true if the headers will have a leading
  12.  * Content-Type field.  Some WSP PDUs encode Content-Type separately
  13.  * this way for historical reasons.
  14.  */
  15. List *wsp_headers_unpack(Octstr *headers, int content_type);
  16. /* Take a List of headers, encode them according to the WSP spec,
  17.  * and return the encoded headers as an Octstr. 
  18.  * The second argument is true if the encoded headers should have
  19.  * a leading content-type field.  See the note for wsp_headers_unpack. */
  20. Octstr *wsp_headers_pack(List *headers, int separate_content_type);
  21. #endif