⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 trace.h

📁 很不错的tcpip源码, 尤其是针对嵌入式系统编程来说是个非常不错的选择
💻 H
字号:
#ifndef	_TRACE_H
#define	_TRACE_H

#ifndef	_MBUF_H
#include "mbuf.h"
#endif

#ifndef	_IFACE_H
#include "iface.h"
#endif

/* Definitions for packet dumping */

/* Table of trace subcommands */
struct tracecmd {
	char *name;	/* Name of trace subcommand */
	int val;	/* New setting for these bits */
	int mask;	/* Mask of bits affected in trace word */
};
extern struct tracecmd Tracecmd[];	/* Defined in trace.c */

/* List of address testing and tracing functions for each interface.
 * Entries are placed in this table by conditional compilation in main.c.
 */
struct trace {
	int (*addrtest)(struct iface *iface,struct mbuf *bp);
	void (*tracef)(FILE *,struct mbuf **,int);
};

extern struct trace Tracef[];

/* In trace.c: */
void dump(struct iface *ifp,int direction,struct mbuf *bp);
void raw_dump(struct iface *ifp,int direction, struct mbuf *bp);
void trace_log(struct iface *ifp,char *fmt, ...);
void shuttrace(void);
int tprintf(struct iface *ifp,char *fmt,...);
void hex_dump(FILE *fp,struct mbuf **bpp);

/* In arcdump.c: */
void arc_dump(FILE *fp,struct mbuf **bpp,int check);
int arc_forus(struct iface *iface,struct mbuf *bp);

/* In arpdump.c: */
void arp_dump(FILE *fp,struct mbuf **bpp);

/* In ax25dump.c: */
void ax25_dump(FILE *fp,struct mbuf **bpp,int check);
int ax_forus(struct iface *iface,struct mbuf *bp);

/* In enetdump.c: */
void ether_dump(FILE *fp,struct mbuf **bpp,int check);
int ether_forus(struct iface *iface,struct mbuf *bp);

/* In icmpdump.c: */
void icmp_dump(FILE *fp,struct mbuf **bpp,int32 source,int32 dest,int check);

/* In ipdump.c: */
void ipip_dump(FILE *fp,struct mbuf **bpp,int32 source,int32 dest,int check);
void ip_dump(FILE *fp,struct mbuf **bpp,int check);

/* In kissdump.c: */
void ki_dump(FILE *fp,struct mbuf **bpp,int check);
int ki_forus(struct iface *iface,struct mbuf *bp);

/* In nrdump.c: */
void netrom_dump(FILE *fp,struct mbuf **bpp,int check);

/* In pppdump.c: */
void ppp_dump(FILE *fp,struct mbuf **bpp,int check);

/* In ripdump.c: */
void rip_dump(FILE *fp,struct mbuf **bpp);

/* In secdump.c: */
void esp_dump(FILE *fp,struct mbuf **bpp,int32 source,int32 dest,int check);
void ah_dump(FILE *fp,struct mbuf **bpp,int32 source,int32 dest,int check);

/* In slcompdump.c: */
void sl_dump(FILE *fp,struct mbuf **bpp,int check);
void vjcomp_dump(FILE *fp,struct mbuf **bpp,int unused);

/* In tcpdump.c: */
void tcp_dump(FILE *fp,struct mbuf **bpp,int32 source,int32 dest,int check);

/* In udpdump.c: */
void udp_dump(FILE *fp,struct mbuf **bpp,int32 source,int32 dest,int check);

#endif	/* _TRACE_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -