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

📄 trace.h

📁 OLSR Implementation for XORP
💻 H
字号:
/* * Copyright (c) 2004 Ying Ge, Communication Research Center Canada. * * Copyright (c) 2002, 2003 Maoyu Wang, Communication Research Center Canada. * * By Ying Ge: * 1. Change the OLSR packet format and message processing procedure based  *    on the OLSR RFC. * 2. Add support of multiple interfaces to OLSR, including MID message  *    creating and processing procedure as specified in the OLSR RFC. * 3. Add QoS Support to OLSR * * By Maoyu Wang: * 1. Ported OLSR from IPv4 to IPv6. * 2. Added the Host and Network Association (HNA) functionality into OLSR. * 3. Added the default gateway functionality into OLSR by extending the HNA  *    message usage. The default gateway functionality supported the mobility *	  by cooperating with Mobile IPv6 for a mobile node as well as supported  * 	  Internet access for MANET nodes.  * * DISTRIBUTED WITH NO WARRANTY, EXPRESS OR IMPLIED. * See the GNU Library General Public License (file COPYING in the distribution) * for conditions of use and redistribution *//* * This Copyright notice is in French. An English summary is given * but the referee text is the French one. * * Copyright (c) 2000, 2001 Adokoe.Plakoo@inria.fr, INRIA Rocquencourt, *                          Anis.Laouiti@inria.fr, INRIA Rocquencourt. * * Ce logiciel informatique est disponible aux conditions * usuelles dans la recherche, c'est-à-dire qu'il peut * être utilisé, copié, modifié, distribué à l'unique * condition que ce texte soit conservé afin que * l'origine de ce logiciel soit reconnue. * Le nom de l'Institut National de Recherche en Informatique * et en Automatique (INRIA), ou d'une personne morale * ou physique ayant participé à l'élaboration de ce logiciel ne peut * être utilisé sans son accord préalable explicite. *  * Ce logiciel est fourni tel quel sans aucune garantie, * support ou responsabilité d'aucune sorte. * Certaines parties de ce logiciel sont dérivées de sources developpees par * University of California, Berkeley et ses contributeurs couvertes  * par des copyrights. * This software is available with usual "research" terms * with the aim of retain credits of the software.  * Permission to use, copy, modify and distribute this software for any * purpose and without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies, * and the name of INRIA, or any contributor not be used in advertising * or publicity pertaining to this material without the prior explicit * permission. The software is provided "as is" without any * warranties, support or liabilities of any kind. * This product includes software developed by the University of * California, Berkeley and its contributors protected by copyrights. *//* * Copyright (c) 1983, 1988, 1993 *	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 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. * *	From: @(#)trace.h	5.8 (Berkeley) 6/1/90 *	From: @(#)trace.h	8.1 (Berkeley) 6/5/93 *	From: @(#)trace.h	1.5 (dholland Exp) 25/11/96 *	$Id: trace.h,v 1.2 2000/12/06 10:36:12 prima Exp $ *//* * Routing table management daemon. *//* * Trace record format. */struct	iftrace {	struct	timeval ift_stamp;	/* time stamp */	struct	sockaddr ift_who;	/* from/to */	char	*ift_packet;		/* pointer to packet */	short	ift_size;		/* size of packet */	short	ift_metric;		/* metric on associated metric */};/* * Per interface packet tracing buffers.  An incoming and * outgoing circular buffer of packets is maintained, per * interface, for debugging.  Buffers are dumped whenever * an interface is marked down. */struct	ifdebug {	struct	iftrace *ifd_records;	/* array of trace records */	struct	iftrace *ifd_front;	/* next empty trace record */	int	ifd_count;		/* number of unprinted records */	struct	interface *ifd_if;	/* for locating stuff */};/* * Packet tracing stuff. */extern int tracepackets;	/* watch packets as they go by */extern int traceactions;	/* on/off */extern int tracehistory;	/* on/off */extern FILE *ftrace;		/* output trace file */void traceoff(void);void traceon(char *);void trace(struct ifdebug *, struct sockaddr *, char *, int, int);void traceaction(FILE *, char *, struct olsr_ip_addr *, struct interface *, int);void traceinit(struct interface *);void sigtrace(int);void bumploglevel(void);void dumppacket_toscreen(struct sockaddr *sa, char *cp, int size, struct timeval *stamp); //added by Y.Gevoid dumppacket(FILE *, char *, struct sockaddr *, char *,int, struct timeval *);#define	TRACE_ACTION(action, addr, interf, timer) { \	  if (traceactions) \		traceaction(ftrace, action, addr, interf, timer); \	}#define	TRACE_INPUT(ifp, src, pack, size) { \	  if (tracehistory) { \		ifp = if_iflookup(src); \		if (ifp) \			trace(&ifp->int_input, src, pack, size, \			    ntohl(ifp->int_metric)); \	  } \	  if (tracepackets) \		dumppacket(ftrace, "from", (struct sockaddr *)src, pack, \		    size, &now); \	}#define	TRACE_OUTPUT(ifp, dst, size) { \	  if (tracehistory && ifp) \		trace(&ifp->int_output, dst, packet, size, ifp->int_metric); \	  if (tracepackets) \		dumppacket(ftrace, "to", (struct sockaddr *)dst, packet, \		    size, &now); \	}

⌨️ 快捷键说明

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