http_private.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is MPEG4IP.
  13.  * 
  14.  * The Initial Developer of the Original Code is Cisco Systems Inc.
  15.  * Portions created by Cisco Systems Inc. are
  16.  * Copyright (C) Cisco Systems Inc. 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  *              Bill May        wmay@cisco.com
  20.  */
  21. /*
  22.  * http_private.h - private data structures and routines.
  23.  */
  24. #ifndef __MPEG4IP_HTTP_PRIVATE_H__
  25. #define __MPEG4IP_HTTP_PRIVATE_H__ 1
  26. #include "http.h"
  27. typedef enum {
  28.   HTTP_STATE_INIT,
  29.   HTTP_STATE_CONNECTED,
  30.   HTTP_STATE_CLOSED
  31. } http_state_t;
  32. #define RESP_BUF_SIZE 2048
  33. struct http_client_ {
  34.   const char *m_orig_url;
  35.   const char *m_current_url;
  36.   const char *m_host;
  37.   const char *m_resource;
  38.   http_state_t m_state;
  39.   uint16_t m_redirect_count;
  40.   const char *m_redir_location;
  41.   uint16_t m_port;
  42.   struct in_addr m_server_addr;
  43.   int m_server_socket;
  44.   // headers decoded
  45.   int m_connection_close;
  46.   int m_content_len_received;
  47.   int m_transfer_encoding_chunked;
  48.   uint32_t m_content_len;
  49.   http_resp_t *m_resp;
  50.   // http response buffers
  51.   uint32_t m_buffer_len, m_offset_on;
  52.   char m_resp_buffer[RESP_BUF_SIZE + 1];
  53. };
  54. #define ADV_SPACE(a) {while (isspace(*(a)) && (*(a) != ''))(a)++;}
  55. #define FREE_CHECK(a,b){ if (a->b != NULL) { free((void *)a->b); a->b = NULL;}}
  56. int http_decode_and_connect_url (const char *name,
  57.  http_client_t *ptr);
  58.   
  59. int http_build_header(char *buffer, uint32_t maxlen, uint32_t *at,
  60.       http_client_t *cptr, const char *method);
  61. int http_get_response(http_client_t *handle, http_resp_t **resp);
  62. void http_resp_clear(http_resp_t *rptr);
  63. #ifndef MIN
  64. #define MIN(a,b) (((a)<(b))?(a):(b))
  65. #endif
  66. void http_debug(int loglevel, const char *fmt, ...)
  67. #ifndef _WINDOWS
  68.      __attribute__((format(__printf__, 2, 3)));
  69. #endif
  70.      ;
  71. #endif