buffer.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:2k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  2.  * Buffering to output and input. 
  3.  * Copyright (C) 1998 Kunihiro Ishiguro
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  *
  7.  * GNU Zebra is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published
  9.  * by the Free Software Foundation; either version 2, or (at your
  10.  * option) any later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20.  * Boston, MA 02111-1307, USA.
  21.  */
  22. #ifndef _ZEBRA_BUFFER_H
  23. #define _ZEBRA_BUFFER_H
  24. /* Buffer master. */
  25. struct buffer
  26. {
  27.   /* Data list. */
  28.   struct buffer_data *head;
  29.   struct buffer_data *tail;
  30.   /* Current allocated data. */
  31.   unsigned long alloc;
  32.   /* Total length of buffer. */
  33.   unsigned long size;
  34.   /* For allocation. */
  35.   struct buffer_data *unused_head;
  36.   struct buffer_data *unused_tail;
  37.   /* Current total length of this buffer. */
  38.   unsigned long length;
  39. };
  40. /* Data container. */
  41. struct buffer_data
  42. {
  43.   struct buffer *parent;
  44.   struct buffer_data *next;
  45.   struct buffer_data *prev;
  46.   /* Acctual data stream. */
  47.   unsigned char *data;
  48.   /* Current pointer. */
  49.   unsigned long cp;
  50.   /* Start pointer. */
  51.   unsigned long sp;
  52. };
  53. /* Buffer prototypes. */
  54. struct buffer *buffer_new (size_t);
  55. int buffer_write (struct buffer *, u_char *, size_t);
  56. void buffer_free (struct buffer *);
  57. char *buffer_getstr (struct buffer *);
  58. int buffer_putc (struct buffer *, u_char);
  59. int buffer_putstr (struct buffer *, u_char *);
  60. void buffer_reset (struct buffer *);
  61. int buffer_flush_all (struct buffer *, int);
  62. int buffer_flush_vty_all (struct buffer *, int, int, int);
  63. int buffer_flush_window (struct buffer *, int, int, int, int, int);
  64. int buffer_empty (struct buffer *);
  65. #endif /* _ZEBRA_BUFFER_H */