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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * Packet interface
  3.  * Copyright (C) 1999 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 it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * 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 Free
  19.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  20.  * 02111-1307, USA.  
  21.  */
  22. #ifndef _ZEBRA_STREAM_H
  23. #define _ZEBRA_STREAM_H
  24. /* Stream buffer. */
  25. struct stream
  26. {
  27.   struct stream *next;
  28.   unsigned char *data;
  29.   
  30.   /* Put pointer. */
  31.   unsigned long putp;
  32.   /* Get pointer. */
  33.   unsigned long getp;
  34.   /* End of pointer. */
  35.   unsigned long endp;
  36.   /* Data size. */
  37.   unsigned long size;
  38. };
  39. /* First in first out queue structure. */
  40. struct stream_fifo
  41. {
  42.   unsigned long count;
  43.   struct stream *head;
  44.   struct stream *tail;
  45. };
  46. /* Utility macros. */
  47. #define STREAM_PNT(S)   ((S)->data + (S)->getp)
  48. #define STREAM_SIZE(S)  ((S)->size)
  49. #define STREAM_REMAIN(S) ((S)->size - (S)->putp)
  50. #define STREAM_DATA(S)  ((S)->data)
  51. /* Stream prototypes. */
  52. struct stream *stream_new (size_t);
  53. void stream_free (struct stream *);
  54. unsigned long stream_get_getp (struct stream *);
  55. unsigned long stream_get_putp (struct stream *);
  56. unsigned long stream_get_endp (struct stream *);
  57. unsigned long stream_get_size (struct stream *);
  58. u_char *stream_get_data (struct stream *);
  59. void stream_set_getp (struct stream *, unsigned long);
  60. void stream_set_putp (struct stream *, unsigned long);
  61. void stream_forward (struct stream *, int);
  62. void stream_put (struct stream *, void *, size_t);
  63. int stream_putc (struct stream *, u_char);
  64. int stream_putc_at (struct stream *, unsigned long, u_char);
  65. int stream_putw (struct stream *, u_int16_t);
  66. int stream_putw_at (struct stream *, unsigned long, u_int16_t);
  67. int stream_putl (struct stream *, u_int32_t);
  68. int stream_putl_at (struct stream *, unsigned long, u_int32_t);
  69. int stream_put_ipv4 (struct stream *, u_int32_t);
  70. int stream_put_in_addr (struct stream *, struct in_addr *);
  71. void stream_get (void *, struct stream *, size_t);
  72. u_char stream_getc (struct stream *);
  73. u_char stream_getc_from (struct stream *, unsigned long);
  74. u_int16_t stream_getw (struct stream *);
  75. u_int16_t stream_getw_from (struct stream *, unsigned long);
  76. u_int32_t stream_getl (struct stream *);
  77. u_int32_t stream_get_ipv4 (struct stream *);
  78. #undef stream_read
  79. #undef stream_write
  80. int stream_read (struct stream *, int, size_t);
  81. int stream_read_unblock (struct stream *, int, size_t);
  82. int stream_write (struct stream *, u_char *, size_t);
  83. u_char *stream_pnt (struct stream *);
  84. void stream_reset (struct stream *);
  85. int stream_flush (struct stream *, int);
  86. int stream_empty (struct stream *);
  87. /* Stream fifo. */
  88. struct stream_fifo *stream_fifo_new ();
  89. void stream_fifo_push (struct stream_fifo *fifo, struct stream *s);
  90. struct stream *stream_fifo_pop (struct stream_fifo *fifo);
  91. struct stream *stream_fifo_head (struct stream_fifo *fifo);
  92. void stream_fifo_clean (struct stream_fifo *fifo);
  93. void stream_fifo_free (struct stream_fifo *fifo);
  94. #endif /* _ZEBRA_STREAM_H */