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

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

?? pcap.h

?? “網絡安全技術實踐與代碼詳解”實例代碼
?? H
字號:
/* -*- Mode: c; tab-width: 8; indent-tabs-mode: 1; c-basic-offset: 8; -*- */
/*
 * Copyright (c) 1993, 1994, 1995, 1996, 1997
 *	The Regents of the University of California.  All rights reserved.
 *
 * 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 Computer Systems
 *	Engineering Group at Lawrence Berkeley Laboratory.
 * 4. Neither the name of the University nor of the Laboratory 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.
 *
 * @(#) $Header: /tcpdump/master/libpcap/pcap.h,v 1.52.2.5 2005/07/07 02:04:36 guy Exp $ (LBL)
 */

#ifndef lib_pcap_h
#define lib_pcap_h

#if defined(WIN32)
  #include <pcap-stdinc.h>
#elif defined(MSDOS)
  #include <sys/types.h>
  #include <sys/socket.h>  /* u_int, u_char etc. */
#else /* UN*X */
  #include <sys/types.h>
  #include <sys/time.h>
#endif /* WIN32/MSDOS/UN*X */

#ifndef PCAP_DONT_INCLUDE_PCAP_BPF_H
#include <pcap-bpf.h>
#endif

#include <stdio.h>

#ifdef HAVE_REMOTE
	// We have to define the SOCKET here, although it has been defined in sockutils.h
	// This is to avoid the distribution of the 'sockutils.h' file around
	// (for example in the WinPcap developer's pack)
	#ifndef SOCKET
		#ifdef WIN32
			#define SOCKET unsigned int
		#else
			#define SOCKET int
		#endif
	#endif
#endif

#ifdef __cplusplus
extern "C" {
#endif

#define PCAP_VERSION_MAJOR 2
#define PCAP_VERSION_MINOR 4

#define PCAP_ERRBUF_SIZE 256

/*
 * Compatibility for systems that have a bpf.h that
 * predates the bpf typedefs for 64-bit support.
 */
#if BPF_RELEASE - 0 < 199406
typedef	int bpf_int32;
typedef	u_int bpf_u_int32;
#endif

typedef struct pcap pcap_t;
typedef struct pcap_dumper pcap_dumper_t;
typedef struct pcap_if pcap_if_t;
typedef struct pcap_addr pcap_addr_t;

/*
 * The first record in the file contains saved values for some
 * of the flags used in the printout phases of tcpdump.
 * Many fields here are 32 bit ints so compilers won't insert unwanted
 * padding; these files need to be interchangeable across architectures.
 *
 * Do not change the layout of this structure, in any way (this includes
 * changes that only affect the length of fields in this structure).
 *
 * Also, do not change the interpretation of any of the members of this
 * structure, in any way (this includes using values other than
 * LINKTYPE_ values, as defined in "savefile.c", in the "linktype"
 * field).
 *
 * Instead:
 *
 *	introduce a new structure for the new format, if the layout
 *	of the structure changed;
 *
 *	send mail to "tcpdump-workers@tcpdump.org", requesting a new
 *	magic number for your new capture file format, and, when
 *	you get the new magic number, put it in "savefile.c";
 *
 *	use that magic number for save files with the changed file
 *	header;
 *
 *	make the code in "savefile.c" capable of reading files with
 *	the old file header as well as files with the new file header
 *	(using the magic number to determine the header format).
 *
 * Then supply the changes to "patches@tcpdump.org", so that future
 * versions of libpcap and programs that use it (such as tcpdump) will
 * be able to read your new capture file format.
 */
struct pcap_file_header {
	bpf_u_int32 magic;
	u_short version_major;
	u_short version_minor;
	bpf_int32 thiszone;	/* gmt to local correction */
	bpf_u_int32 sigfigs;	/* accuracy of timestamps */
	bpf_u_int32 snaplen;	/* max length saved portion of each pkt */
	bpf_u_int32 linktype;	/* data link type (LINKTYPE_*) */
};

typedef enum {
       PCAP_D_INOUT = 0,
       PCAP_D_IN,
       PCAP_D_OUT
} pcap_direction_t;

/*
 * Each packet in the dump file is prepended with this generic header.
 * This gets around the problem of different headers for different
 * packet interfaces.
 */
struct pcap_pkthdr {
	struct timeval ts;	/* time stamp */
	bpf_u_int32 caplen;	/* length of portion present */
	bpf_u_int32 len;	/* length this packet (off wire) */
};

/*
 * As returned by the pcap_stats()
 */
struct pcap_stat {
	u_int ps_recv;		/* number of packets received */
	u_int ps_drop;		/* number of packets dropped */
	u_int ps_ifdrop;	/* drops by interface XXX not yet supported */
#ifdef HAVE_REMOTE
	u_int ps_capt;		/* number of packets that are received by the application; please get rid off the Win32 ifdef */
	u_int ps_sent;		/* number of packets sent by the server on the network */
	u_int ps_netdrop;	/* number of packets lost on the network */
#endif /* HAVE_REMOTE */
};

#ifdef MSDOS
/*
 * As returned by the pcap_stats_ex()
 */
struct pcap_stat_ex {
       u_long  rx_packets;        /* total packets received       */
       u_long  tx_packets;        /* total packets transmitted    */
       u_long  rx_bytes;          /* total bytes received         */
       u_long  tx_bytes;          /* total bytes transmitted      */
       u_long  rx_errors;         /* bad packets received         */
       u_long  tx_errors;         /* packet transmit problems     */
       u_long  rx_dropped;        /* no space in Rx buffers       */
       u_long  tx_dropped;        /* no space available for Tx    */
       u_long  multicast;         /* multicast packets received   */
       u_long  collisions;

       /* detailed rx_errors: */
       u_long  rx_length_errors;
       u_long  rx_over_errors;    /* receiver ring buff overflow  */
       u_long  rx_crc_errors;     /* recv'd pkt with crc error    */
       u_long  rx_frame_errors;   /* recv'd frame alignment error */
       u_long  rx_fifo_errors;    /* recv'r fifo overrun          */
       u_long  rx_missed_errors;  /* recv'r missed packet         */

       /* detailed tx_errors */
       u_long  tx_aborted_errors;
       u_long  tx_carrier_errors;
       u_long  tx_fifo_errors;
       u_long  tx_heartbeat_errors;
       u_long  tx_window_errors;
     };
#endif

/*
 * Item in a list of interfaces.
 */
struct pcap_if {
	struct pcap_if *next;
	char *name;		/* name to hand to "pcap_open_live()" */
	char *description;	/* textual description of interface, or NULL */
	struct pcap_addr *addresses;
	bpf_u_int32 flags;	/* PCAP_IF_ interface flags */
};

#define PCAP_IF_LOOPBACK	0x00000001	/* interface is loopback */

/*
 * Representation of an interface address.
 */
struct pcap_addr {
	struct pcap_addr *next;
	struct sockaddr *addr;		/* address */
	struct sockaddr *netmask;	/* netmask for that address */
	struct sockaddr *broadaddr;	/* broadcast address for that address */
	struct sockaddr *dstaddr;	/* P2P destination address for that address */
};

typedef void (*pcap_handler)(u_char *, const struct pcap_pkthdr *,
			     const u_char *);

char	*pcap_lookupdev(char *);
int	pcap_lookupnet(const char *, bpf_u_int32 *, bpf_u_int32 *, char *);
pcap_t	*pcap_open_live(const char *, int, int, int, char *);
pcap_t	*pcap_open_dead(int, int);
pcap_t	*pcap_open_offline(const char *, char *);
pcap_t	*pcap_fopen_offline(FILE *, char *);
void	pcap_close(pcap_t *);
int	pcap_loop(pcap_t *, int, pcap_handler, u_char *);
int	pcap_dispatch(pcap_t *, int, pcap_handler, u_char *);
const u_char*
	pcap_next(pcap_t *, struct pcap_pkthdr *);
int 	pcap_next_ex(pcap_t *, struct pcap_pkthdr **, const u_char **);
void	pcap_breakloop(pcap_t *);
int	pcap_stats(pcap_t *, struct pcap_stat *);
int	pcap_setfilter(pcap_t *, struct bpf_program *);
int 	pcap_setdirection(pcap_t *, pcap_direction_t);
int	pcap_getnonblock(pcap_t *, char *);
int	pcap_setnonblock(pcap_t *, int, char *);
void	pcap_perror(pcap_t *, char *);
int	pcap_inject(pcap_t *, const void *, size_t);
int	pcap_sendpacket(pcap_t *, const u_char *, int);
char	*pcap_strerror(int);
char	*pcap_geterr(pcap_t *);
int	pcap_compile(pcap_t *, struct bpf_program *, char *, int,
	    bpf_u_int32);
int	pcap_compile_nopcap(int, int, struct bpf_program *,
	    char *, int, bpf_u_int32);
void	pcap_freecode(struct bpf_program *);
int	pcap_datalink(pcap_t *);
int	pcap_list_datalinks(pcap_t *, int **);
int	pcap_set_datalink(pcap_t *, int);
int	pcap_datalink_name_to_val(const char *);
const char *pcap_datalink_val_to_name(int);
const char *pcap_datalink_val_to_description(int);
int	pcap_snapshot(pcap_t *);
int	pcap_is_swapped(pcap_t *);
int	pcap_major_version(pcap_t *);
int	pcap_minor_version(pcap_t *);

/* XXX */
FILE	*pcap_file(pcap_t *);
int	pcap_fileno(pcap_t *);

pcap_dumper_t *pcap_dump_open(pcap_t *, const char *);
pcap_dumper_t *pcap_dump_fopen(pcap_t *, FILE *fp);
FILE	*pcap_dump_file(pcap_dumper_t *);
long	pcap_dump_ftell(pcap_dumper_t *);
int	pcap_dump_flush(pcap_dumper_t *);
void	pcap_dump_close(pcap_dumper_t *);
void	pcap_dump(u_char *, const struct pcap_pkthdr *, const u_char *);

int	pcap_findalldevs(pcap_if_t **, char *);
void	pcap_freealldevs(pcap_if_t *);

const char *pcap_lib_version(void);

/* XXX this guy lives in the bpf tree */
u_int	bpf_filter(struct bpf_insn *, u_char *, u_int, u_int);
int	bpf_validate(struct bpf_insn *f, int len);
char	*bpf_image(struct bpf_insn *, int);
void	bpf_dump(struct bpf_program *, int);

#if defined(WIN32)

/*
 * Win32 definitions
 */

int pcap_setbuff(pcap_t *p, int dim);
int pcap_setmode(pcap_t *p, int mode);
int pcap_setmintocopy(pcap_t *p, int size);

#ifdef WPCAP
/* Include file with the wpcap-specific extensions */
#include <Win32-Extensions.h>
#endif /* WPCAP */

#define MODE_CAPT 0
#define MODE_STAT 1
#define MODE_MON 2

#elif defined(MSDOS)

/*
 * MS-DOS definitions
 */

int  pcap_stats_ex (pcap_t *, struct pcap_stat_ex *);
void pcap_set_wait (pcap_t *p, void (*yield)(void), int wait);
u_long pcap_mac_packets (void);

#else /* UN*X */

/*
 * UN*X definitions
 */

int	pcap_get_selectable_fd(pcap_t *);

#endif /* WIN32/MSDOS/UN*X */

#ifdef HAVE_REMOTE
/* Includes most of the public stuff that is needed for the remote capture */
#include "remote-ext.h"
#endif	 /* HAVE_REMOTE */

#ifdef __cplusplus
}
#endif

#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
韩国视频一区二区| 精品国产精品网麻豆系列| 欧美一级高清片在线观看| 国产日韩精品视频一区| 五月激情六月综合| 97久久人人超碰| 久久久亚洲高清| 全部av―极品视觉盛宴亚洲| 色视频欧美一区二区三区| 久久综合色鬼综合色| 欧美a一区二区| 欧美日韩一区二区三区免费看| 国产精品网曝门| 国产在线观看一区二区| 91精品午夜视频| 午夜精品aaa| 欧美日本乱大交xxxxx| 亚洲自拍偷拍av| 色吧成人激情小说| 亚洲色图一区二区| 91在线视频免费91| 国产精品理论片在线观看| 国产成人综合在线观看| 精品剧情v国产在线观看在线| 美女任你摸久久| 日韩欧美在线不卡| 日本成人超碰在线观看| 制服丝袜成人动漫| 丝袜亚洲另类丝袜在线| 欧美日韩在线三级| 偷拍日韩校园综合在线| 8v天堂国产在线一区二区| 亚洲成人资源在线| 欧美一区二区三区男人的天堂| 亚洲国产wwwccc36天堂| 欧美精选一区二区| 日本在线不卡视频| 2023国产一二三区日本精品2022| 国产在线观看一区二区| 国产精品无遮挡| 色婷婷激情久久| 婷婷中文字幕综合| 精品人在线二区三区| 国产成人综合视频| 亚洲欧美在线高清| 欧美日本一区二区三区| 久久精品国产精品青草| 国产丝袜在线精品| 日本二三区不卡| 蜜桃视频第一区免费观看| 久久久一区二区三区捆绑**| 成人91在线观看| 亚洲观看高清完整版在线观看| 91麻豆精品91久久久久久清纯| 久久99久久精品| 国产精品福利av| 欧美伦理电影网| 国产精品一区二区黑丝| 日韩一区在线免费观看| 欧美日韩激情一区| 国产毛片精品视频| 亚洲麻豆国产自偷在线| 欧美一区欧美二区| 91在线观看视频| 日本va欧美va精品| 国产精品久久久久久久久久久免费看| 日本久久精品电影| 国内成人免费视频| 亚洲影院理伦片| 精品国产百合女同互慰| 色88888久久久久久影院按摩| 麻豆久久久久久久| 亚洲色图欧洲色图婷婷| 精品国产乱码久久久久久闺蜜| 99国产精品一区| 国内精品久久久久影院色 | 亚洲v日本v欧美v久久精品| 欧美变态口味重另类| 欧美影片第一页| 国产另类ts人妖一区二区| 亚洲一二三四在线观看| 久久精品一区八戒影视| 制服.丝袜.亚洲.另类.中文| 成人免费的视频| 免费观看91视频大全| 亚洲永久免费av| 中文字幕亚洲综合久久菠萝蜜| 欧美一区二区视频观看视频| 色综合 综合色| 国产成人免费视频网站| 久久99精品视频| 亚洲成a人片在线不卡一二三区| 国产精品久久久久久一区二区三区 | 福利电影一区二区三区| 麻豆91在线播放免费| 一区二区在线电影| 国产精品视频第一区| 久久日一线二线三线suv| 欧美一级欧美三级在线观看| 欧美综合在线视频| 91在线看国产| www.日本不卡| 成人在线视频一区| 丰满放荡岳乱妇91ww| 九色|91porny| 久久精品99国产精品| 奇米精品一区二区三区四区| 午夜国产精品一区| 亚洲123区在线观看| 亚洲一区二区在线观看视频| 亚洲人午夜精品天堂一二香蕉| 国产精品久99| 成人免费在线视频| 亚洲男女一区二区三区| 亚洲三级视频在线观看| 亚洲另类春色校园小说| 亚洲另类在线一区| 亚洲最新在线观看| 亚洲国产精品影院| 亚洲不卡一区二区三区| 奇米影视一区二区三区小说| 裸体一区二区三区| 狠狠久久亚洲欧美| 成人性视频网站| 91亚洲大成网污www| 在线免费观看日本欧美| 欧美三级视频在线| 欧美一区二区在线免费观看| 精品国产91久久久久久久妲己 | 3d动漫精品啪啪| 欧美videos大乳护士334| 久久久精品国产99久久精品芒果 | 成人性生交大片免费看中文网站| 成人免费福利片| 欧美性猛交xxxx乱大交退制版| 欧美午夜在线观看| 欧美电影精品一区二区| 国产精品午夜免费| 亚洲一区日韩精品中文字幕| 蜜桃视频一区二区| 成人国产视频在线观看| 色婷婷狠狠综合| 精品国产网站在线观看| 中文字幕av一区二区三区免费看 | 精品国产123| 亚洲人成网站色在线观看| 日日噜噜夜夜狠狠视频欧美人| 国内精品伊人久久久久av一坑 | 日韩一级高清毛片| 国产精品久久久久久户外露出| 亚洲国产视频a| 韩国av一区二区三区在线观看| aaa国产一区| 欧美成人三级电影在线| 1区2区3区欧美| 极品少妇xxxx偷拍精品少妇| 色婷婷av一区二区三区大白胸| 精品入口麻豆88视频| 亚洲精品v日韩精品| 国内精品视频一区二区三区八戒| 色香蕉久久蜜桃| 国产亚洲欧美中文| 国产福利91精品| 欧美视频在线播放| 亚洲欧洲在线观看av| 日本系列欧美系列| 91福利国产精品| 国产日韩精品一区二区浪潮av| 日韩va亚洲va欧美va久久| 99re66热这里只有精品3直播| 久久一区二区视频| 午夜电影网一区| 在线观看免费一区| 国产精品久久久久久久岛一牛影视| 免费日韩伦理电影| 欧美色老头old∨ideo| 国产精品女主播av| 国产一区二区三区蝌蚪| 在线不卡一区二区| 亚洲超丰满肉感bbw| 在线观看区一区二| 亚洲精品国产一区二区三区四区在线| 国产精品亚洲第一区在线暖暖韩国 | 日韩福利电影在线观看| 色婷婷激情综合| 亚洲男女一区二区三区| 99久久精品免费| 国产精品污污网站在线观看| 国产精品系列在线播放| 日韩免费一区二区| 免费高清在线一区| 欧美一区二区三区视频在线观看| 亚洲国产美国国产综合一区二区| 91久久人澡人人添人人爽欧美| 中文字幕一区二区三区视频| 国产99久久久国产精品免费看| 精品国产亚洲在线| 国产伦精品一区二区三区免费| 久久综合久久综合亚洲| 国产精品综合视频|