HttpBody.c
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:2k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: HttpBody.c,v 1.15 1998/07/22 20:36:42 wessels Exp $
  3.  *
  4.  * DEBUG: section 56    HTTP Message Body
  5.  * AUTHOR: Alex Rousskov
  6.  *
  7.  * SQUID Internet Object Cache  http://squid.nlanr.net/Squid/
  8.  * ----------------------------------------------------------
  9.  *
  10.  *  Squid is the result of efforts by numerous individuals from the
  11.  *  Internet community.  Development is led by Duane Wessels of the
  12.  *  National Laboratory for Applied Network Research and funded by the
  13.  *  National Science Foundation.  Squid is Copyrighted (C) 1998 by
  14.  *  Duane Wessels and the University of California San Diego.  Please
  15.  *  see the COPYRIGHT file for full details.  Squid incorporates
  16.  *  software developed and/or copyrighted by other sources.  Please see
  17.  *  the CREDITS file for full details.
  18.  *
  19.  *  This program is free software; you can redistribute it and/or modify
  20.  *  it under the terms of the GNU General Public License as published by
  21.  *  the Free Software Foundation; either version 2 of the License, or
  22.  *  (at your option) any later version.
  23.  *  
  24.  *  This program is distributed in the hope that it will be useful,
  25.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.  *  GNU General Public License for more details.
  28.  *  
  29.  *  You should have received a copy of the GNU General Public License
  30.  *  along with this program; if not, write to the Free Software
  31.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
  32.  *
  33.  */
  34. #include "squid.h"
  35. void
  36. httpBodyInit(HttpBody * body)
  37. {
  38.     body->mb = MemBufNull;
  39. }
  40. void
  41. httpBodyClean(HttpBody * body)
  42. {
  43.     assert(body);
  44.     if (!memBufIsNull(&body->mb))
  45. memBufClean(&body->mb);
  46. }
  47. /* set body by absorbing mb */
  48. void
  49. httpBodySet(HttpBody * body, MemBuf * mb)
  50. {
  51.     assert(body);
  52.     assert(memBufIsNull(&body->mb));
  53.     body->mb = *mb; /* absorb */
  54. }
  55. void
  56. httpBodyPackInto(const HttpBody * body, Packer * p)
  57. {
  58.     assert(body && p);
  59.     if (body->mb.size)
  60. packerAppend(p, body->mb.buf, body->mb.size);
  61. }
  62. #if UNUSED_CODE
  63. const char *
  64. httpBodyPtr(const HttpBody * body)
  65. {
  66.     return body->mb.buf ? body->mb.buf : "";
  67. }
  68. #endif