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

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

?? print-domain.c

?? 網卡驅動相關實例 這是和網卡NT KMD驅動程序有關的一些資料和例子。主要是以下三方面內容: 3.1 article 一些有用的文檔 3.2 Canberra 網絡診聽工具Ethern
?? C
字號:
/* * Copyright (c) 1988, 1989, 1990, 1991, 1992, 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: (1) source code distributions * retain the above copyright notice and this paragraph in its entirety, (2) * distributions including binary code include the above copyright notice and * this paragraph in its entirety in the documentation or other materials * provided with the distribution, and (3) all advertising materials mentioning * features or use of this software display the following acknowledgement: * ``This product includes software developed by the University of California, * Lawrence Berkeley Laboratory and its contributors.'' 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 ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */#ifndef lintstatic const char rcsid[] =    "@(#) $Header: print-domain.c,v 1.39 97/06/13 12:56:28 leres Exp $ (LBL)";#endif#ifndef WIN32
#include <sys/param.h>
#include <sys/time.h>
#include <sys/socket.h>
#else
#include <winsock.h>
#endif
#if __STDC__struct mbuf;struct rtentry;#endif#include <net/if.h>
#ifndef WIN32#include <netinet/in.h>
#else 
#include <winsock.h>
#endif
#include <netinet/if_ether.h>#include <netinet/in_systm.h>#include <netinet/ip.h>#include <netinet/ip_var.h>#include <netinet/udp.h>#include <netinet/udp_var.h>#include <netinet/tcp.h>#include <netinet/tcpip.h>#ifdef NOERROR#undef NOERROR					/* Solaris sucks */#endif#ifdef NOERROR#undef T_UNSPEC					/* SINIX does too */#endif
//#ifndef WIN32
#include <arpa/nameser.h>//#endif
#include <stdio.h>
#include "interface.h"#include "addrtoname.h"#include "extract.h"                    /* must come after interface.h *//* Compatibility */#ifndef T_TXT#define T_TXT		16		/* text strings */#endif#ifndef T_RP#define T_RP		17		/* responsible person */#endif#ifndef T_AFSDB#define T_AFSDB		18		/* AFS cell database */#endif#ifndef T_X25#define T_X25		19		/* X_25 calling address */#endif#ifndef T_ISDN#define T_ISDN		20		/* ISDN calling address */#endif#ifndef T_RT#define T_RT		21		/* router */#endif#ifndef T_NSAP#define T_NSAP		22		/* NSAP address */#endif#ifndef T_NSAP_PTR#define T_NSAP_PTR	23		/* reverse NSAP lookup (deprecated) */#endif#ifndef T_SIG#define T_SIG		24		/* security signature */#endif#ifndef T_KEY#define T_KEY		25		/* security key */#endif#ifndef T_PX#define T_PX		26		/* X.400 mail mapping */#endif#ifndef T_GPOS#define T_GPOS		27		/* geographical position (withdrawn) */#endif#ifndef T_AAAA#define T_AAAA		28		/* IP6 Address */#endif#ifndef T_LOC#define T_LOC		29		/* Location Information */#endif#ifndef T_UNSPEC#define T_UNSPEC	103		/* Unspecified format (binary data) */#endif#ifndef T_UNSPECA#define T_UNSPECA	104		/* "unspecified ascii". Ugly MIT hack */#endif#ifndef C_CHAOS#define C_CHAOS		3		/* for chaos net (MIT) */#endif#ifndef C_HS#define C_HS		4		/* for Hesiod name server (MIT) (XXX) */#endifstatic char *ns_ops[] = {	"", " inv_q", " stat", " op3", " notify", " op5", " op6", " op7",	" op8", " updataA", " updateD", " updateDA",	" updateM", " updateMA", " zoneInit", " zoneRef",};static char *ns_resp[] = {	"", " FormErr", " ServFail", " NXDomain",	" NotImp", " Refused", " Resp6", " Resp7",	" Resp8", " Resp9", " Resp10", " Resp11",	" Resp12", " Resp13", " Resp14", " NoChange",};/* skip over a domain name */static const u_char *ns_nskip(register const u_char *cp, register const u_char *bp){	register u_char i;	if (((i = *cp++) & INDIR_MASK) == INDIR_MASK)		return (cp + 1);	while (i && cp < snapend) {		cp += i;		i = *cp++;	}	return (cp);}/* print a <domain-name> */static const u_char *ns_nprint(register const u_char *cp, register const u_char *bp){	register u_int i;	register const u_char *rp;	register int compress;	i = *cp++;	rp = cp + i;	if ((i & INDIR_MASK) == INDIR_MASK) {		rp = cp + 1;		compress = 1;	} else		compress = 0;	if (i != 0)		while (i && cp < snapend) {			if ((i & INDIR_MASK) == INDIR_MASK) {				cp = bp + (((i << 8) | *cp) & 0x3fff);				i = *cp++;				continue;			}			if (fn_printn(cp, i, snapend))				break;			cp += i;			putchar('.');			i = *cp++;			if (!compress)				rp += i + 1;		}	else		putchar('.');	return (rp);}/* print a <character-string> */static const u_char *ns_cprint(register const u_char *cp, register const u_char *bp){	register u_int i;	i = *cp++;	(void)fn_printn(cp, i, snapend);	return (cp + i);}static struct tok type2str[] = {	{ T_A,		"A" },	{ T_NS,		"NS" },	{ T_MD,		"MD" },	{ T_MF,		"MF" },	{ T_CNAME,	"CNAME" },	{ T_SOA,	"SOA" },	{ T_MB,		"MB" },	{ T_MG,		"MG" },	{ T_MR,		"MR" },	{ T_NULL,	"NULL" },	{ T_WKS,	"WKS" },	{ T_PTR,	"PTR" },	{ T_HINFO,	"HINFO" },	{ T_MINFO,	"MINFO" },	{ T_MX,		"MX" },	{ T_TXT,	"TXT" },	{ T_RP,		"RP" },	{ T_AFSDB,	"AFSDB" },	{ T_X25,	"X25" },	{ T_ISDN,	"ISDN" },	{ T_RT,		"RT" },	{ T_NSAP,	"NSAP" },	{ T_NSAP_PTR,	"NSAP_PTR" },	{ T_SIG,	"SIG" },	{ T_KEY,	"KEY" },	{ T_PX,		"PX" },	{ T_GPOS,	"GPOS" },	{ T_AAAA,	"AAAA" },	{ T_LOC ,	"LOC " },#ifndef T_UINFO#define T_UINFO 100#endif	{ T_UINFO,	"UINFO" },#ifndef T_UID#define T_UID 101#endif	{ T_UID,	"UID" },#ifndef T_GID#define T_GID 102#endif	{ T_GID,	"GID" },	{ T_UNSPEC,	"UNSPEC" },	{ T_UNSPECA,	"UNSPECA" },	{ T_AXFR,	"AXFR" },	{ T_MAILB,	"MAILB" },	{ T_MAILA,	"MAILA" },	{ T_ANY,	"ANY" },	{ 0,		NULL }};static struct tok class2str[] = {	{ C_IN,		"IN" },		/* Not used */	{ C_CHAOS,	"CHAOS)" },	{ C_HS,		"HS" },	{ C_ANY,	"ANY" },	{ 0,		NULL }};/* print a query */static voidns_qprint(register const u_char *cp, register const u_char *bp){	register const u_char *np = cp;	register u_int i;	cp = ns_nskip(cp, bp);	if (cp + 4 > snapend)		return;	/* print the qtype and qclass (if it's not IN) */	i = *cp++ << 8;	i |= *cp++;	printf(" %s", tok2str(type2str, "Type%d", i));	i = *cp++ << 8;	i |= *cp++;	if (i != C_IN)		printf(" %s", tok2str(class2str, "(Class %d)", i));	fputs("? ", stdout);	ns_nprint(np, bp);}/* print a reply */static const u_char *ns_rprint(register const u_char *cp, register const u_char *bp){	register u_int i;	register u_short typ, len;	register const u_char *rp;	if (vflag) {		putchar(' ');		cp = ns_nprint(cp, bp);	} else		cp = ns_nskip(cp, bp);	if (cp + 10 > snapend)		return (snapend);	/* print the type/qtype and class (if it's not IN) */	typ = *cp++ << 8;	typ |= *cp++;	i = *cp++ << 8;	i |= *cp++;	if (i != C_IN)		printf(" %s", tok2str(class2str, "(Class %d)", i));	/* ignore ttl */	cp += 4;	len = *cp++ << 8;	len |= *cp++;	rp = cp + len;	printf(" %s", tok2str(type2str, "Type%d", typ));	switch (typ) {	case T_A:		printf(" %s", ipaddr_string(cp));		break;	case T_NS:	case T_CNAME:	case T_PTR:		putchar(' ');		(void)ns_nprint(cp, bp);		break;	case T_MX:		putchar(' ');		(void)ns_nprint(cp + 2, bp);		printf(" %d", EXTRACT_16BITS(cp));		break;	case T_TXT:		putchar(' ');		(void)ns_cprint(cp, bp);		break;	case T_UNSPECA:		/* One long string */	        printf(" %.*s", len, cp);		break;	}	return (rp);		/* XXX This isn't always right */}voidns_print(register const u_char *bp, u_int length){	register const HEADER *np;	register int qdcount, ancount, nscount, arcount;	register const u_char *cp;	np = (const HEADER *)bp;	/* get the byte-order right */	qdcount = ntohs(np->qdcount);	ancount = ntohs(np->ancount);	nscount = ntohs(np->nscount);	arcount = ntohs(np->arcount);	if (np->qr) {		/* this is a response */		printf(" %d%s%s%s%s%s",			ntohs(np->id),			ns_ops[np->opcode],			ns_resp[np->rcode],			np->aa? "*" : "",			np->ra? "" : "-",			np->tc? "|" : "");		if (qdcount != 1)			printf(" [%dq]", qdcount);		/* Print QUESTION section on -vv */		if (vflag > 1) {		            fputs(" q: ", stdout);			    cp = ns_nprint((const u_char *)(np + 1), bp);		} else			    cp = ns_nskip((const u_char *)(np + 1), bp);		printf(" %d/%d/%d", ancount, nscount, arcount);		if (ancount--) {			cp = ns_rprint(cp + 4, bp);			while (ancount-- && cp < snapend) {				putchar(',');				cp = ns_rprint(cp, bp);			}		}	}	else {		/* this is a request */		printf(" %d%s%s",		        ntohs(np->id),			ns_ops[np->opcode],			np->rd? "+" : "");		/* any weirdness? */		if (*(((u_short *)np)+1) & htons(0x6ff))			printf(" [b2&3=0x%x]", ntohs(*(((u_short *)np)+1)));		if (np->opcode == IQUERY) {			if (qdcount)				printf(" [%dq]", qdcount);			if (ancount != 1)				printf(" [%da]", ancount);		}		else {			if (ancount)				printf(" [%da]", ancount);			if (qdcount != 1)				printf(" [%dq]", qdcount);		}		if (nscount)			printf(" [%dn]", nscount);		if (arcount)			printf(" [%dau]", arcount);		ns_qprint((const u_char *)(np + 1), (const u_char *)np);	}	printf(" (%d)", length);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久av资源网| 亚洲国产精品自拍| 日韩亚洲电影在线| 欧美喷水一区二区| 3atv一区二区三区| 欧美精品在线一区二区三区| 精品视频在线免费看| 欧美精品乱码久久久久久按摩 | 亚洲午夜私人影院| 亚洲一区在线视频| 午夜激情一区二区三区| 天堂久久久久va久久久久| 天堂精品中文字幕在线| 美国十次了思思久久精品导航| 免费观看成人鲁鲁鲁鲁鲁视频| 国产一区欧美一区| 国产精品亚洲午夜一区二区三区 | 国产精品午夜久久| 中文字幕在线不卡一区| 亚洲男人天堂av网| 天天综合天天综合色| 蜜臀av性久久久久蜜臀aⅴ流畅 | 91女厕偷拍女厕偷拍高清| 在线观看国产日韩| 欧美成人精品1314www| 国产欧美一区二区精品忘忧草| 日本一区二区三区电影| 一区二区三区丝袜| 久久国产精品露脸对白| 成人免费毛片高清视频| 在线中文字幕一区二区| 日韩精品一区二区三区视频| 中文字幕欧美区| 国产高清不卡一区| 91同城在线观看| 欧美久久久久中文字幕| 亚洲国产经典视频| 免费高清在线视频一区·| 成人午夜视频在线观看| 91.com在线观看| 国产精品水嫩水嫩| 全国精品久久少妇| 色美美综合视频| 久久久五月婷婷| 午夜精品一区二区三区免费视频| 国产精品1区2区| 91精品国产综合久久蜜臀| 国产精品久久一级| 韩国视频一区二区| 欧美剧情电影在线观看完整版免费励志电影 | 欧美精品一二三| 中文字幕中文字幕一区二区| 美国av一区二区| 欧美日韩亚洲丝袜制服| 国产精品久久福利| 欧美日韩国产一级| 99综合电影在线视频| 欧美日韩一区二区三区在线| 婷婷久久综合九色综合伊人色| 国产盗摄视频一区二区三区| 欧美一级在线视频| 亚洲一区影音先锋| 色女孩综合影院| 国产精品你懂的在线| 国产伦精品一区二区三区免费迷| 欧美一级高清片| 爽爽淫人综合网网站| 在线免费亚洲电影| 国产精品第四页| 成人黄色大片在线观看| 亚洲国产激情av| 精品日韩在线观看| 在线观看网站黄不卡| 99热国产精品| 日韩vs国产vs欧美| 欧美三级日韩三级国产三级| 中文字幕一区二区三区四区不卡| 国产寡妇亲子伦一区二区| 欧美国产综合一区二区| 成人性生交大合| 中文字幕乱码亚洲精品一区| 国产999精品久久久久久| 久久久亚洲高清| 91尤物视频在线观看| 亚洲美女屁股眼交| 91精品国产综合久久久久| 久久99热99| 国产精品久久久久影院亚瑟| 欧美性猛片aaaaaaa做受| 玉足女爽爽91| 欧美精品一区二区三区蜜臀| 波多野结衣一区二区三区| 首页亚洲欧美制服丝腿| 国产亚洲精品超碰| 欧美日本一道本| aaa欧美色吧激情视频| 日本不卡的三区四区五区| 中文字幕一区二区三区四区| 日韩一区二区三区四区 | 欧美一区二区三区免费大片 | 欧美巨大另类极品videosbest | 91福利国产成人精品照片| 日韩成人一级大片| 亚洲五码中文字幕| 亚洲欧洲国产专区| 国产视频在线观看一区二区三区| 69久久99精品久久久久婷婷 | 国产老女人精品毛片久久| 午夜久久久久久| 亚洲成人久久影院| 五月天婷婷综合| 午夜免费久久看| 一二三区精品福利视频| 色婷婷综合久久久| 成人性生交大片免费看视频在线| 国产jizzjizz一区二区| 国产一区在线精品| 99久久精品免费精品国产| 国产成人精品免费视频网站| 国产精品一区在线观看你懂的| 精品亚洲成av人在线观看| 日韩亚洲欧美高清| 制服丝袜激情欧洲亚洲| 精品国产精品一区二区夜夜嗨| 日韩美女天天操| 国产精品福利av | 91精品久久久久久久99蜜桃| 欧美日韩一区二区三区不卡| 欧美一级午夜免费电影| 日本一区二区视频在线观看| 亚洲久本草在线中文字幕| 男男gaygay亚洲| k8久久久一区二区三区| 欧美日韩国产精品成人| 亚洲国产精品成人久久综合一区| 亚洲美女视频一区| 国产精品一区二区久激情瑜伽| 色综合色综合色综合| 欧美变态tickling挠脚心| 亚洲美女免费在线| 色综合久久久久久久久| 欧美videos中文字幕| 亚洲精品国产一区二区三区四区在线 | 亚洲免费在线看| 国产成人亚洲综合a∨婷婷图片| 色婷婷狠狠综合| 中文字幕在线观看一区| 国产成人亚洲综合a∨猫咪| 日韩一区二区麻豆国产| 亚洲成a人片在线不卡一二三区| 99国产欧美另类久久久精品| 久久亚洲综合色| 久久草av在线| 精品日韩欧美一区二区| 美女视频黄久久| 精品久久久三级丝袜| 蜜乳av一区二区三区| 精品久久久三级丝袜| 国产综合成人久久大片91| 精品成人一区二区| 捆绑变态av一区二区三区| 精品乱人伦一区二区三区| 韩国毛片一区二区三区| 国产日产欧美一区二区视频| 91免费看片在线观看| 夜夜夜精品看看| 欧美成人欧美edvon| 成人午夜激情在线| 亚洲国产精品久久久久秋霞影院 | 亚洲免费观看高清完整版在线观看熊 | 欧美久久一二区| 成人av综合在线| 日韩综合小视频| 中文字幕综合网| 亚洲精品一区二区在线观看| 99re这里只有精品首页| 亚洲国产精品欧美一二99| 色94色欧美sute亚洲13| 欧美精品日韩一本| 五月天亚洲婷婷| 欧美亚洲精品一区| 亚洲一区在线观看网站| 亚洲色图欧洲色图婷婷| ...av二区三区久久精品| 亚洲综合小说图片| 丝瓜av网站精品一区二区| 麻豆成人av在线| 91视频免费观看| 日韩欧美在线不卡| 亚洲色图制服丝袜| 亚洲色图欧洲色图| 中文在线一区二区| 国产成人自拍在线| 麻豆一区二区在线| 韩国女主播成人在线| 国产米奇在线777精品观看| 久久99久久久欧美国产| 成人爱爱电影网址| 色av综合在线| 久久你懂得1024|