1995-01-31 06:29:58 +00:00
|
|
|
/*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that the above copyright notice and this paragraph are
|
|
|
|
* duplicated in all such forms and that any documentation,
|
|
|
|
* advertising materials, and other materials related to such
|
|
|
|
* distribution and use acknowledge that the software was developed
|
|
|
|
* by the Internet Initiative Japan. The name of the
|
|
|
|
* IIJ may not be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*
|
1998-05-21 21:49:08 +00:00
|
|
|
* $Id: mbuf.h,v 1.11.2.5 1998/05/01 19:25:24 brian Exp $
|
1995-01-31 06:29:58 +00:00
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct mbuf {
|
1997-08-25 00:29:32 +00:00
|
|
|
u_char *base; /* pointer to top of buffer space */
|
|
|
|
short size; /* size allocated from base */
|
|
|
|
short offset; /* offset to start position */
|
|
|
|
short cnt; /* available byte count in buffer */
|
1995-01-31 06:29:58 +00:00
|
|
|
short type;
|
1997-08-25 00:29:32 +00:00
|
|
|
struct mbuf *next; /* link to next mbuf */
|
|
|
|
struct mbuf *pnext; /* link to next packet */
|
1995-01-31 06:29:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct mqueue {
|
|
|
|
struct mbuf *top;
|
|
|
|
struct mbuf *last;
|
|
|
|
int qlen;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MBUF_CTOP(bp) (bp->base + bp->offset)
|
|
|
|
|
|
|
|
#define MB_ASYNC 1
|
|
|
|
#define MB_FSM 2
|
|
|
|
#define MB_HDLCOUT 3
|
|
|
|
#define MB_IPIN 4
|
|
|
|
#define MB_ECHO 5
|
|
|
|
#define MB_LQR 6
|
1998-01-30 19:46:07 +00:00
|
|
|
#define MB_LINK 7
|
1995-01-31 06:29:58 +00:00
|
|
|
#define MB_VJCOMP 8
|
1998-04-07 01:29:44 +00:00
|
|
|
#define MB_IPQ 9
|
|
|
|
#define MB_MP 10
|
1998-04-03 19:21:56 +00:00
|
|
|
#define MB_MAX MB_MP
|
1995-01-31 06:29:58 +00:00
|
|
|
|
1998-04-07 00:54:26 +00:00
|
|
|
struct cmdargs;
|
|
|
|
|
1998-05-01 19:26:12 +00:00
|
|
|
extern int mbuf_Length(struct mbuf *);
|
|
|
|
extern struct mbuf *mbuf_Alloc(int, int);
|
|
|
|
extern struct mbuf *mbuf_FreeSeg(struct mbuf *);
|
|
|
|
extern void mbuf_Free(struct mbuf *);
|
|
|
|
extern void mbuf_Write(struct mbuf *, u_char *, int);
|
|
|
|
extern struct mbuf *mbuf_Read(struct mbuf *, u_char *, int);
|
|
|
|
extern void mbuf_Log(void);
|
|
|
|
extern int mbuf_Show(struct cmdargs const *);
|
|
|
|
extern void mbuf_Enqueue(struct mqueue *, struct mbuf *);
|
|
|
|
extern struct mbuf *mbuf_Dequeue(struct mqueue *);
|