亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? bpf.h

?? 這是一個網絡檢測的系統
?? H
字號:
/*-
 * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
 *	The Regents of the University of California.  All rights reserved.
 *
 * This code is derived from the Stanford/CMU enet packet filter,
 * (net/enet.c) distributed as part of 4.3BSD, and code contributed
 * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence 
 * Berkeley Laboratory.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *      This product includes software developed by the University of
 *      California, Berkeley and its contributors.
 * 4. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 *      @(#)bpf.h       7.1 (Berkeley) 5/7/91
 *
 * @(#) $Header: bpf.h,v 1.36 97/06/12 14:29:53 leres Exp $ (LBL)
 */

#ifndef BPF_MAJOR_VERSION

/* BSD style release date */
#define BPF_RELEASE 199606

#ifdef WIN32 
#include <gnuc.h>
#include <winsock.h>
#endif

typedef	int bpf_int32;
typedef	u_int bpf_u_int32;

/*
 * Alignment macros.  BPF_WORDALIGN rounds up to the next 
 * even multiple of BPF_ALIGNMENT. 
 */
#define BPF_ALIGNMENT sizeof(bpf_int32)
#define BPF_WORDALIGN(x) (((x)+(BPF_ALIGNMENT-1))&~(BPF_ALIGNMENT-1))

#define BPF_MAXINSNS 512
#define BPF_MAXBUFSIZE 0x8000
#define BPF_MINBUFSIZE 32

/*
 *  Structure for BIOCSETF.
 */
struct bpf_program {
	u_int bf_len;
	struct bpf_insn *bf_insns;
};
 
/*
 * Struct returned by BIOCGSTATS.
 */
struct bpf_stat {
	u_int bs_recv;		/* number of packets received */
	u_int bs_drop;		/* number of packets dropped */
};

/*
 * Struct return by BIOCVERSION.  This represents the version number of 
 * the filter language described by the instruction encodings below.
 * bpf understands a program iff kernel_major == filter_major &&
 * kernel_minor >= filter_minor, that is, if the value returned by the
 * running kernel has the same major number and a minor number equal
 * equal to or less than the filter being downloaded.  Otherwise, the
 * results are undefined, meaning an error may be returned or packets
 * may be accepted haphazardly.
 * It has nothing to do with the source code version.
 */
struct bpf_version {
	u_short bv_major;
	u_short bv_minor;
};
/* Current version number of filter architecture. */
#define BPF_MAJOR_VERSION 1
#define BPF_MINOR_VERSION 1

/*
 * BPF ioctls
 *
 * The first set is for compatibility with Sun's pcc style
 * header files.  If your using gcc, we assume that you
 * have run fixincludes so the latter set should work.
 */
#if (defined(sun) || defined(ibm032)) && !defined(__GNUC__)
#define	BIOCGBLEN	_IOR(B,102, u_int)
#define	BIOCSBLEN	_IOWR(B,102, u_int)
#define	BIOCSETF	_IOW(B,103, struct bpf_program)
#define	BIOCFLUSH	_IO(B,104)
#define BIOCPROMISC	_IO(B,105)
#define	BIOCGDLT	_IOR(B,106, u_int)
#define BIOCGETIF	_IOR(B,107, struct ifreq)
#define BIOCSETIF	_IOW(B,108, struct ifreq)
#define BIOCSRTIMEOUT	_IOW(B,109, struct timeval)
#define BIOCGRTIMEOUT	_IOR(B,110, struct timeval)
#define BIOCGSTATS	_IOR(B,111, struct bpf_stat)
#define BIOCIMMEDIATE	_IOW(B,112, u_int)
#define BIOCVERSION	_IOR(B,113, struct bpf_version)
#define BIOCSTCPF	_IOW(B,114, struct bpf_program)
#define BIOCSUDPF	_IOW(B,115, struct bpf_program)
#else
#define	BIOCGBLEN	_IOR('B',102, u_int)
#define	BIOCSBLEN	_IOWR('B',102, u_int)
#define	BIOCSETF	_IOW('B',103, struct bpf_program)
#define	BIOCFLUSH	_IO('B',104)
#define BIOCPROMISC	_IO('B',105)
#define	BIOCGDLT	_IOR('B',106, u_int)
#define BIOCGETIF	_IOR('B',107, struct ifreq)
#define BIOCSETIF	_IOW('B',108, struct ifreq)
#define BIOCSRTIMEOUT	_IOW('B',109, struct timeval)
#define BIOCGRTIMEOUT	_IOR('B',110, struct timeval)
#define BIOCGSTATS	_IOR('B',111, struct bpf_stat)
#define BIOCIMMEDIATE	_IOW('B',112, u_int)
#define BIOCVERSION	_IOR('B',113, struct bpf_version)
#define BIOCSTCPF	_IOW('B',114, struct bpf_program)
#define BIOCSUDPF	_IOW('B',115, struct bpf_program)
#endif

/*
 * Structure prepended to each packet.
 */
struct bpf_hdr {
	struct timeval	bh_tstamp;	/* time stamp */
	bpf_u_int32	bh_caplen;	/* length of captured portion */
	bpf_u_int32	bh_datalen;	/* original length of packet */
	u_short		bh_hdrlen;	/* length of bpf header (this struct
					   plus alignment padding) */
};
/*
 * Because the structure above is not a multiple of 4 bytes, some compilers
 * will insist on inserting padding; hence, sizeof(struct bpf_hdr) won't work.
 * Only the kernel needs to know about it; applications use bh_hdrlen.
 */
#ifdef KERNEL
#define SIZEOF_BPF_HDR 18
#endif

/*
 * Data-link level type codes.
 */
#define DLT_NULL	0	/* no link-layer encapsulation */
#define DLT_EN10MB	1	/* Ethernet (10Mb) */
#define DLT_EN3MB	2	/* Experimental Ethernet (3Mb) */
#define DLT_AX25	3	/* Amateur Radio AX.25 */
#define DLT_PRONET	4	/* Proteon ProNET Token Ring */
#define DLT_CHAOS	5	/* Chaos */
#define DLT_IEEE802	6	/* IEEE 802 Networks */
#define DLT_ARCNET	7	/* ARCNET */
#define DLT_SLIP	8	/* Serial Line IP */
#define DLT_PPP		9	/* Point-to-point Protocol */
#define DLT_FDDI	10	/* FDDI */
#define DLT_ATM_RFC1483	11	/* LLC/SNAP encapsulated atm */
#define DLT_RAW		12	/* raw IP */
#define DLT_SLIP_BSDOS	13	/* BSD/OS Serial Line IP */
#define DLT_PPP_BSDOS	14	/* BSD/OS Point-to-point Protocol */

/*
 * The instruction encondings.
 */
/* instruction classes */
#define BPF_CLASS(code) ((code) & 0x07)
#define		BPF_LD		0x00
#define		BPF_LDX		0x01
#define		BPF_ST		0x02
#define		BPF_STX		0x03
#define		BPF_ALU		0x04
#define		BPF_JMP		0x05
#define		BPF_RET		0x06
#define		BPF_MISC	0x07

/* ld/ldx fields */
#define BPF_SIZE(code)	((code) & 0x18)
#define		BPF_W		0x00
#define		BPF_H		0x08
#define		BPF_B		0x10
#define BPF_MODE(code)	((code) & 0xe0)
#define		BPF_IMM 	0x00
#define		BPF_ABS		0x20
#define		BPF_IND		0x40
#define		BPF_MEM		0x60
#define		BPF_LEN		0x80
#define		BPF_MSH		0xa0

/* alu/jmp fields */
#define BPF_OP(code)	((code) & 0xf0)
#define		BPF_ADD		0x00
#define		BPF_SUB		0x10
#define		BPF_MUL		0x20
#define		BPF_DIV		0x30
#define		BPF_OR		0x40
#define		BPF_AND		0x50
#define		BPF_LSH		0x60
#define		BPF_RSH		0x70
#define		BPF_NEG		0x80
#define		BPF_JA		0x00
#define		BPF_JEQ		0x10
#define		BPF_JGT		0x20
#define		BPF_JGE		0x30
#define		BPF_JSET	0x40
#define BPF_SRC(code)	((code) & 0x08)
#define		BPF_K		0x00
#define		BPF_X		0x08

/* ret - BPF_K and BPF_X also apply */
#define BPF_RVAL(code)	((code) & 0x18)
#define		BPF_A		0x10

/* misc */
#define BPF_MISCOP(code) ((code) & 0xf8)
#define		BPF_TAX		0x00
#define		BPF_TXA		0x80

/*
 * The instruction data structure.
 */
struct bpf_insn {
	u_short	code;
	u_char 	jt;
	u_char 	jf;
	bpf_int32 k;
};

/*
 * Macros for insn array initializers.
 */
#define BPF_STMT(code, k) { (u_short)(code), 0, 0, k }
#define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k }

#ifdef KERNEL
extern u_int bpf_filter();
extern void bpfattach();
extern void bpf_tap();
extern void bpf_mtap();
#else
#if __STDC__
extern u_int bpf_filter(struct bpf_insn *, u_char *, u_int, u_int);
#endif
#endif

/*
 * Number of scratch memory words (for BPF_LD|BPF_MEM and BPF_ST).
 */
#define BPF_MEMWORDS 16

#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人小视频在线| 国产亚洲一区二区三区四区 | 中文字幕在线不卡一区| 午夜精品久久久久久久99水蜜桃| 欧美一区二区三区在线观看| 精品欧美一区二区久久| 欧美羞羞免费网站| 玉米视频成人免费看| 国产精品国产三级国产a| 欧美一卡二卡在线| 91精品国产91久久久久久一区二区 | 亚洲乱码国产乱码精品精98午夜| 蜜芽一区二区三区| 日本道精品一区二区三区| 国产亚洲精品aa| 国产精品中文欧美| 欧美一区二区精美| 免费精品视频在线| 欧美曰成人黄网| 亚洲图片有声小说| 91精品国产综合久久香蕉麻豆 | 欧美国产精品一区| 国产凹凸在线观看一区二区| 日韩三级伦理片妻子的秘密按摩| 亚洲卡通欧美制服中文| 91久久精品一区二区三| 国产成人啪免费观看软件 | 欧美疯狂做受xxxx富婆| jiyouzz国产精品久久| 青青草一区二区三区| 精品国产成人系列| 欧美在线免费观看亚洲| 成人aa视频在线观看| 狠狠色综合日日| 免费一区二区视频| 日韩在线一区二区三区| 亚洲国产精品尤物yw在线观看| 国产精品美女一区二区三区 | 日韩美一区二区三区| 欧美性一二三区| 91福利精品第一导航| 91成人在线免费观看| 欧美日韩一级大片网址| 色综合久久综合网97色综合| 日韩国产成人精品| 久久99最新地址| 美女精品一区二区| 亚洲日本欧美天堂| 久久不见久久见中文字幕免费| 色域天天综合网| 国产精品毛片a∨一区二区三区| 久久国产精品一区二区| 97久久精品人人澡人人爽| 日韩免费成人网| 国产精品久久久久久久久免费樱桃| 亚洲视频一二三区| 国产成人午夜视频| 欧美成人精品福利| 午夜精品在线看| 色先锋aa成人| 国产日韩精品一区| 久久99最新地址| 欧美日韩在线播放| 亚洲日本在线a| 国产aⅴ精品一区二区三区色成熟| 9191精品国产综合久久久久久 | 国产亚洲欧美激情| 国产一区二区调教| 日韩天堂在线观看| 久久精品国产亚洲aⅴ| 日韩欧美一区在线| 蜜桃久久久久久| 精品欧美一区二区在线观看| 国产乱子伦视频一区二区三区 | 国产成人午夜99999| 亚洲国产精品精华液2区45| 国产成+人+日韩+欧美+亚洲| 国产精品不卡在线观看| 欧美在线观看你懂的| 日韩成人一级片| 日韩精品一区国产麻豆| 久久精品国产久精国产爱| 欧美成人一区二区三区在线观看| 亚洲va欧美va人人爽午夜| 欧美麻豆精品久久久久久| 日韩国产欧美在线观看| 精品国产人成亚洲区| 国产一区二区三区免费看| 久久久国产精品不卡| 成人av免费在线| 午夜视频一区二区| 中文字幕不卡的av| 欧美福利视频导航| 不卡一区二区中文字幕| 久久99久久久久久久久久久| 中文字幕免费不卡在线| 日韩精品一区二区三区swag| 色综合视频在线观看| 久久爱www久久做| 亚洲一区二区av电影| 中文字幕一区免费在线观看| 日韩欧美国产成人一区二区| 欧美日韩一区三区四区| 欧美亚洲综合久久| 成人一区二区三区中文字幕| 国产精品1区2区| 成人av电影在线观看| 成人app在线观看| 91久久香蕉国产日韩欧美9色| 99久久99久久精品免费观看| 色www精品视频在线观看| 欧美日韩夫妻久久| 精品久久国产老人久久综合| 日本一区二区三级电影在线观看| 欧美韩日一区二区三区| 国产精品色呦呦| 国产日韩欧美不卡在线| 一区二区在线免费观看| 国产精品18久久久久久久网站| 一区二区激情小说| 日一区二区三区| 国产一区二区久久| 国产精品2024| 欧美精品777| 久久久夜色精品亚洲| 国产亚洲一本大道中文在线| 中文无字幕一区二区三区 | 日韩一卡二卡三卡四卡| 精品日韩欧美在线| 中文字幕亚洲不卡| 日韩精品乱码免费| 99久久国产综合精品麻豆| 91精品国产免费| 亚洲免费毛片网站| 国产美女一区二区| 欧美一区二区三区在线看| 国产精品网友自拍| 麻豆成人av在线| 在线视频综合导航| 国产精品久久久久久久裸模| 麻豆成人在线观看| 欧美三级日本三级少妇99| 国产精品天美传媒沈樵| 国产精品一区专区| 欧美一区二区三区四区视频| 亚洲图片有声小说| 欧美日韩综合一区| 亚洲18女电影在线观看| 不卡免费追剧大全电视剧网站| 欧美在线三级电影| 亚洲丰满少妇videoshd| 91久久精品国产91性色tv| 国产精品国产三级国产aⅴ入口| 国产成人av福利| 久久精品网站免费观看| 丰满岳乱妇一区二区三区 | 亚洲激情图片qvod| 欧美日韩免费在线视频| 亚洲综合激情网| 日韩一区二区三区观看| 韩国在线一区二区| 欧美激情一区二区三区全黄| 国产九九视频一区二区三区| 国产精品欧美久久久久无广告| 成人av中文字幕| 亚洲电影一级片| 91麻豆精品国产91久久久久| 九九久久精品视频| 亚洲激情自拍偷拍| 日韩精品一区二区三区swag| www.日韩精品| 日韩黄色片在线观看| 国产精品久久久久久久蜜臀| 欧美日韩精品三区| 91视频91自| 高清视频一区二区| 青青国产91久久久久久 | 国产精品人成在线观看免费 | 91在线免费播放| 成人开心网精品视频| 免费在线看一区| 亚洲一区二区三区三| 国产三级久久久| 日韩视频一区二区三区| 99精品久久只有精品| 国产成人午夜精品5599| 美女mm1313爽爽久久久蜜臀| 一区二区三区欧美在线观看| 国产精品久久久久久亚洲伦| 久久伊99综合婷婷久久伊| 欧美日韩国产精品自在自线| 色网站国产精品| 欧美综合天天夜夜久久| 99久久婷婷国产综合精品 | 成人精品国产福利| 国产精品一区二区久久不卡| 国产精品一区二区久久精品爱涩 | 日韩一区欧美小说| 亚洲欧美色图小说| 夜色激情一区二区|