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

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

?? print-nfs.c

?? 網卡驅動相關實例 這是和網卡NT KMD驅動程序有關的一些資料和例子。主要是以下三方面內容: 3.1 article 一些有用的文檔 3.2 Canberra 網絡診聽工具Ethern
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* * 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-nfs.c,v 1.65 97/08/17 13:24:22 leres Exp $ (LBL)";#endif#ifndef WIN32
#include <sys/param.h>
#include <sys/time.h>
#include <sys/socket.h>

#include <netinet/in.h>
#else
#include <winsock.h>
#define u_int32_t unsigned int
#endif
#if __STDC__struct mbuf;struct rtentry;#endif#include <net/if.h>#ifndef WIN32
#include <netinet/in.h>
#endif

#include <netinet/if_ether.h>#include <netinet/in_systm.h>#include <netinet/ip.h>#include <netinet/ip_var.h>#ifndef WIN32
#include <rpc/rpc.h>
#else
#include <rpc.h>
#include <rpc/rpc_cut.h>
#endif
#include <ctype.h>#include <pcap.h>#include <stdio.h>
#include <string.h>#include "interface.h"#include "addrtoname.h"#include "nfsv2.h"#include "nfsfh.h"static void nfs_printfh(const u_int32_t *);static void xid_map_enter(const struct rpc_msg *, const struct ip *);static u_int32_t xid_map_find(const struct rpc_msg *, const struct ip *,    u_int32_t *);static void interp_reply(const struct rpc_msg *, u_int32_t, u_int);static int nfserr;		/* true if we error rather than trunc */voidnfsreply_print(register const u_char *bp, u_int length,	       register const u_char *bp2){	register const struct rpc_msg *rp;	register const struct ip *ip;	u_int32_t proc;	nfserr = 0;		/* assume no error */	rp = (const struct rpc_msg *)bp;	ip = (const struct ip *)bp2;	if (!nflag)		(void)printf("%s.nfs > %s.%u: reply %s %d",			     ipaddr_string(&ip->ip_src),			     ipaddr_string(&ip->ip_dst),			     (u_int32_t)ntohl(rp->rm_xid),			     ntohl(rp->rm_reply.rp_stat) == MSG_ACCEPTED?				     "ok":"ERR",			     length);	else		(void)printf("%s.%u > %s.%u: reply %s %d",			     ipaddr_string(&ip->ip_src),			     NFS_PORT,			     ipaddr_string(&ip->ip_dst),			     (u_int32_t)ntohl(rp->rm_xid),			     ntohl(rp->rm_reply.rp_stat) == MSG_ACCEPTED?			     	"ok":"ERR",			     length);	if (xid_map_find(rp, ip, &proc))		interp_reply(rp, proc, length);}/* * Return a pointer to the first file handle in the packet. * If the packet was truncated, return 0. */static const u_int32_t *parsereq(register const struct rpc_msg *rp, register u_int length){	register const u_int32_t *dp;	register u_int len;	/*	 * find the start of the req data (if we captured it)	 */	dp = (u_int32_t *)&rp->rm_call.cb_cred;	TCHECK(dp[1]);	len = ntohl(dp[1]);	if (len < length) {		dp += (len + (2 * sizeof(*dp) + 3)) / sizeof(*dp);		TCHECK(dp[1]);		len = ntohl(dp[1]);		if (len < length) {			dp += (len + (2 * sizeof(*dp) + 3)) / sizeof(*dp);			TCHECK2(dp[0], 0);			return (dp);		}	}trunc:	return (NULL);}/* * Print out an NFS file handle and return a pointer to following word. * If packet was truncated, return 0. */static const u_int32_t *parsefh(register const u_int32_t *dp){	if (dp + 8 <= (u_int32_t *)snapend) {		nfs_printfh(dp);		return (dp + 8);	}	return (NULL);}/* * Print out a file name and return pointer to 32-bit word past it. * If packet was truncated, return 0. */static const u_int32_t *parsefn(register const u_int32_t *dp){	register u_int32_t len;	register const u_char *cp;	/* Bail if we don't have the string length */	if ((u_char *)dp > snapend - sizeof(*dp))		return (NULL);	/* Fetch string length; convert to host order */	len = *dp++;	NTOHL(len);	cp = (u_char *)dp;	/* Update 32-bit pointer (NFS filenames padded to 32-bit boundaries) */	dp += ((len + 3) & ~3) / sizeof(*dp);	if ((u_char *)dp > snapend)		return (NULL);	/* XXX seems like we should be checking the length */	putchar('"');	(void) fn_printn(cp, len, NULL);	putchar('"');	return (dp);}/* * Print out file handle and file name. * Return pointer to 32-bit word past file name. * If packet was truncated (or there was some other error), return 0. */static const u_int32_t *parsefhn(register const u_int32_t *dp){	dp = parsefh(dp);	if (dp == NULL)		return (NULL);	putchar(' ');	return (parsefn(dp));}voidnfsreq_print(register const u_char *bp, u_int length,    register const u_char *bp2){	register const struct rpc_msg *rp;	register const struct ip *ip;	register const u_int32_t *dp;	nfserr = 0;		/* assume no error */	rp = (const struct rpc_msg *)bp;	ip = (const struct ip *)bp2;	if (!nflag)		(void)printf("%s.%u > %s.nfs: %d",			     ipaddr_string(&ip->ip_src),			     (u_int32_t)ntohl(rp->rm_xid),			     ipaddr_string(&ip->ip_dst),			     length);	else		(void)printf("%s.%u > %s.%u: %d",			     ipaddr_string(&ip->ip_src),			     (u_int32_t)ntohl(rp->rm_xid),			     ipaddr_string(&ip->ip_dst),			     NFS_PORT,			     length);	xid_map_enter(rp, ip);	/* record proc number for later on */	switch (ntohl(rp->rm_call.cb_proc)) {#ifdef NFSPROC_NOOP	case NFSPROC_NOOP:		printf(" nop");		return;#else#define NFSPROC_NOOP -1#endif	case NFSPROC_NULL:		printf(" null");		return;	case NFSPROC_GETATTR:		printf(" getattr");		if ((dp = parsereq(rp, length)) != NULL && parsefh(dp) != NULL)			return;		break;	case NFSPROC_SETATTR:		printf(" setattr");		if ((dp = parsereq(rp, length)) != NULL && parsefh(dp) != NULL)			return;		break;#if NFSPROC_ROOT != NFSPROC_NOOP	case NFSPROC_ROOT:		printf(" root");		break;#endif	case NFSPROC_LOOKUP:		printf(" lookup");		if ((dp = parsereq(rp, length)) != NULL && parsefhn(dp) != NULL)			return;		break;	case NFSPROC_READLINK:		printf(" readlink");		if ((dp = parsereq(rp, length)) != NULL && parsefh(dp) != NULL)			return;		break;	case NFSPROC_READ:		printf(" read");		if ((dp = parsereq(rp, length)) != NULL &&		    (dp = parsefh(dp)) != NULL) {			TCHECK2(dp[0], 3 * sizeof(*dp));			printf(" %u bytes @ %u",			    (u_int32_t)ntohl(dp[1]),			    (u_int32_t)ntohl(dp[0]));			return;		}		break;#if NFSPROC_WRITECACHE != NFSPROC_NOOP	case NFSPROC_WRITECACHE:		printf(" writecache");		if ((dp = parsereq(rp, length)) != NULL &&		    (dp = parsefh(dp)) != NULL) {			TCHECK2(dp[0], 4 * sizeof(*dp));			printf(" %u (%u) bytes @ %u (%u)",			    (u_int32_t)ntohl(dp[3]),			    (u_int32_t)ntohl(dp[2]),			    (u_int32_t)ntohl(dp[1]),			    (u_int32_t)ntohl(dp[0]));			return;		}		break;#endif	case NFSPROC_WRITE:		printf(" write");		if ((dp = parsereq(rp, length)) != NULL &&		    (dp = parsefh(dp)) != NULL) {			TCHECK2(dp[0], 4 * sizeof(*dp));			printf(" %u (%u) bytes @ %u (%u)",			    (u_int32_t)ntohl(dp[3]),			    (u_int32_t)ntohl(dp[2]),			    (u_int32_t)ntohl(dp[1]),			    (u_int32_t)ntohl(dp[0]));			return;		}		break;	case NFSPROC_CREATE:		printf(" create");		if ((dp = parsereq(rp, length)) != NULL && parsefhn(dp) != NULL)			return;		break;	case NFSPROC_REMOVE:		printf(" remove");		if ((dp = parsereq(rp, length)) != NULL && parsefhn(dp) != NULL)			return;		break;	case NFSPROC_RENAME:		printf(" rename");		if ((dp = parsereq(rp, length)) != NULL &&		    (dp = parsefhn(dp)) != NULL) {			fputs(" ->", stdout);			if (parsefhn(dp) != NULL)				return;		}		break;	case NFSPROC_LINK:		printf(" link");		if ((dp = parsereq(rp, length)) != NULL &&		    (dp = parsefh(dp)) != NULL) {			fputs(" ->", stdout);			if (parsefhn(dp) != NULL)				return;		}		break;	case NFSPROC_SYMLINK:		printf(" symlink");		if ((dp = parsereq(rp, length)) != NULL &&		    (dp = parsefhn(dp)) != NULL) {			fputs(" -> ", stdout);			if (parsefn(dp) != NULL)				return;		}		break;	case NFSPROC_MKDIR:		printf(" mkdir");		if ((dp = parsereq(rp, length)) != NULL && parsefhn(dp) != NULL)			return;		break;	case NFSPROC_RMDIR:		printf(" rmdir");		if ((dp = parsereq(rp, length)) != NULL && parsefhn(dp) != NULL)			return;		break;	case NFSPROC_READDIR:		printf(" readdir");		if ((dp = parsereq(rp, length)) != NULL &&		    (dp = parsefh(dp)) != NULL) {			TCHECK2(dp[0], 2 * sizeof(*dp));			/*			 * Print the offset as signed, since -1 is common,			 * but offsets > 2^31 aren't.			 */			printf(" %u bytes @ %d",			    (u_int32_t)ntohl(dp[1]),			    (u_int32_t)ntohl(dp[0]));			return;		}		break;	case NFSPROC_STATFS:		printf(" statfs");		if ((dp = parsereq(rp, length)) != NULL && parsefh(dp) != NULL)			return;		break;	default:		printf(" proc-%u", (u_int32_t)ntohl(rp->rm_call.cb_proc));		return;	}trunc:	if (!nfserr)		fputs(" [|nfs]", stdout);}/* * Print out an NFS file handle. * We assume packet was not truncated before the end of the * file handle pointed to by dp. * * Note: new version (using portable file-handle parser) doesn't produce * generation number.  It probably could be made to do that, with some * additional hacking on the parser code. */static voidnfs_printfh(register const u_int32_t *dp){	my_fsid fsid;	ino_t ino;	char *sfsname = NULL;	Parse_fh((caddr_t *)dp, &fsid, &ino, NULL, &sfsname, 0);	if (sfsname) {		/* file system ID is ASCII, not numeric, for this server OS */		static char temp[NFS_FHSIZE+1];		/* Make sure string is null-terminated */		strncpy(temp, sfsname, NFS_FHSIZE);		/* Remove trailing spaces */		sfsname = strchr(temp, ' ');		if (sfsname)			*sfsname = 0;		(void)printf(" fh %s/%u", temp, (u_int32_t)ino);	} else {		(void)printf(" fh %u,%u/%u",		    fsid.Fsid_dev.Major, fsid.Fsid_dev.Minor, (u_int32_t)ino);	}}/* * Maintain a small cache of recent client.XID.server/proc pairs, to allow * us to match up replies with requests and thus to know how to parse * the reply. */struct xid_map_entry {	u_int32_t		xid;		/* transaction ID (net order) */	struct in_addr	client;		/* client IP address (net order) */	struct in_addr	server;		/* server IP address (net order) */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
最新中文字幕一区二区三区| 日本人妖一区二区| 日韩电影在线一区| 国产99久久久国产精品| 91精品国产综合久久久久久| 国产精品成人免费在线| 国产一区二区三区| 欧美精品精品一区| 亚洲一区中文日韩| 一本色道久久综合狠狠躁的推荐| 久久免费午夜影院| 伦理电影国产精品| 日韩一区二区三区观看| 亚洲成av人在线观看| 91麻豆国产香蕉久久精品| 久久久久久电影| 精品一区二区三区香蕉蜜桃| 8x福利精品第一导航| 亚洲自拍偷拍麻豆| 91蝌蚪porny九色| 国产精品高清亚洲| 不卡一区二区在线| 中文av字幕一区| 成人国产在线观看| 国产精品久久久久久一区二区三区| 国产一区在线精品| 国产亚洲自拍一区| 成人黄色综合网站| 国产精品久久久久久久久免费桃花| 国产成人午夜精品5599| 国产日产亚洲精品系列| 国产成人自拍网| 国产日韩欧美精品电影三级在线| 国产精品88av| 国产精品理论片| 91视频com| 亚洲一区影音先锋| 欧美精品乱码久久久久久按摩| 亚洲一区二区视频在线| 欧美日韩国产系列| 麻豆久久久久久| 国产日产欧美一区二区视频| 99久久综合狠狠综合久久| 亚洲日穴在线视频| 欧美三片在线视频观看| 日韩电影一区二区三区四区| 精品国产乱码久久久久久久| 高清国产一区二区| 一区二区三区高清不卡| 91麻豆精品国产91久久久久| 久久丁香综合五月国产三级网站| 久久婷婷成人综合色| 99久久精品国产导航| 午夜亚洲国产au精品一区二区| 欧美肥大bbwbbw高潮| 国产精品自拍一区| 一区二区三区精品在线| 欧美一区二区免费视频| 大白屁股一区二区视频| 夜夜精品视频一区二区| 欧美xxx久久| 色哟哟国产精品免费观看| 天天爽夜夜爽夜夜爽精品视频| 亚洲精品在线电影| 成人黄色片在线观看| 香蕉成人伊视频在线观看| 国产婷婷色一区二区三区在线| 一本色道久久综合精品竹菊| 日韩精品三区四区| 中文字幕在线不卡| 欧美一级夜夜爽| 91小视频免费看| 久久国产精品99久久人人澡| 亚洲精品视频免费看| 精品国产麻豆免费人成网站| 成人av一区二区三区| 日韩av中文在线观看| 亚洲欧洲日产国产综合网| 日韩免费福利电影在线观看| 日本乱码高清不卡字幕| 福利视频网站一区二区三区| 污片在线观看一区二区| 亚洲欧美日韩小说| 国产亚洲婷婷免费| 日韩三级.com| 欧美福利视频一区| 欧美在线观看禁18| 风间由美一区二区三区在线观看 | 黄页网站大全一区二区| 一区二区成人在线| 国产精品福利一区二区| 2欧美一区二区三区在线观看视频| 欧美亚洲图片小说| 成人app软件下载大全免费| 久久精品国产亚洲a| 午夜欧美电影在线观看| 亚洲免费在线视频一区 二区| 久久久精品黄色| 精品国产青草久久久久福利| 777午夜精品免费视频| 在线观看免费一区| 99国产精品国产精品毛片| 成人爱爱电影网址| 高清在线观看日韩| 丁香另类激情小说| 国产精品中文字幕一区二区三区| 免费精品视频在线| 麻豆久久一区二区| 久久狠狠亚洲综合| 精品一区二区三区不卡| 久久99精品久久久久久国产越南 | 免费高清成人在线| 日本网站在线观看一区二区三区| 亚洲国产日韩一区二区| 亚洲成av人片在www色猫咪| 亚洲成人动漫在线观看| 午夜在线成人av| 免费人成精品欧美精品| 久久综合综合久久综合| 精品在线视频一区| 国产成人av影院| www.欧美日韩国产在线| 91免费版pro下载短视频| 在线免费观看一区| 欧美精品在线观看播放| 日韩免费观看高清完整版| 久久免费视频一区| 国产精品三级久久久久三级| 国产精品久久久久永久免费观看| 亚洲欧美日韩国产一区二区三区| 亚洲影院久久精品| 日本人妖一区二区| 国产成人福利片| 91在线观看一区二区| 精品视频一区 二区 三区| 欧美大片一区二区三区| 国产日韩亚洲欧美综合| 伊人夜夜躁av伊人久久| 男男gaygay亚洲| 成人高清伦理免费影院在线观看| 色呦呦一区二区三区| 日韩欧美在线网站| 国产精品人妖ts系列视频 | 国产精品国产三级国产aⅴ无密码| 最新久久zyz资源站| 视频一区在线播放| 国产福利不卡视频| 欧美性色黄大片| 久久精子c满五个校花| 一区二区三区丝袜| 国产毛片精品视频| 欧美体内she精高潮| 久久综合五月天婷婷伊人| 亚洲欧美日韩中文播放 | 色哟哟一区二区三区| 欧美成人精品福利| 亚洲视频一区在线观看| 蜜臀久久99精品久久久久久9| 成人午夜视频福利| 日韩欧美你懂的| 亚洲视频资源在线| 国产在线精品一区在线观看麻豆| 欧美性欧美巨大黑白大战| 国产视频亚洲色图| 日韩影院精彩在线| av一区二区不卡| 国产亚洲短视频| 美女视频黄a大片欧美| 在线免费观看日韩欧美| 国产精品久久夜| 国产一区欧美日韩| 在线成人午夜影院| 亚洲国产日韩av| 99视频一区二区| 欧美国产精品一区二区| 精品影院一区二区久久久| 欧美日韩aaaaaa| 亚洲综合免费观看高清在线观看| 成人黄色大片在线观看| 久久精品水蜜桃av综合天堂| 日本aⅴ亚洲精品中文乱码| 欧美视频中文字幕| 亚洲激情av在线| 99精品久久久久久| 国产精品美女久久久久久2018| 韩国三级在线一区| 26uuu国产日韩综合| 美女国产一区二区| 日韩欧美色综合| 久久不见久久见中文字幕免费| 678五月天丁香亚洲综合网| 一区二区三区在线免费| 日本韩国欧美一区二区三区| 国产精品伦理在线| 成人av片在线观看| 亚洲美女免费视频| 欧美亚洲动漫精品| 亚洲国产精品尤物yw在线观看| 色88888久久久久久影院按摩| 亚洲美女屁股眼交3|