1139823Simp/*-
21541Srgrimes * Copyright (c) 1982, 1986, 1993
31541Srgrimes *	The Regents of the University of California.  All rights reserved.
41541Srgrimes *
51541Srgrimes * Redistribution and use in source and binary forms, with or without
61541Srgrimes * modification, are permitted provided that the following conditions
71541Srgrimes * are met:
81541Srgrimes * 1. Redistributions of source code must retain the above copyright
91541Srgrimes *    notice, this list of conditions and the following disclaimer.
101541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111541Srgrimes *    notice, this list of conditions and the following disclaimer in the
121541Srgrimes *    documentation and/or other materials provided with the distribution.
131541Srgrimes * 4. Neither the name of the University nor the names of its contributors
141541Srgrimes *    may be used to endorse or promote products derived from this software
151541Srgrimes *    without specific prior written permission.
161541Srgrimes *
171541Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
181541Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
191541Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
201541Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
211541Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
221541Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
231541Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
241541Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
251541Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
261541Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
271541Srgrimes * SUCH DAMAGE.
281541Srgrimes *
291541Srgrimes *	@(#)tcp_debug.h	8.1 (Berkeley) 6/10/93
3050477Speter * $FreeBSD$
311541Srgrimes */
321541Srgrimes
332169Spaul#ifndef _NETINET_TCP_DEBUG_H_
3415238Sbde#define	_NETINET_TCP_DEBUG_H_
352169Spaul
361541Srgrimesstruct	tcp_debug {
37188578Sluigi	uint32_t	td_time;	/* network format */
381541Srgrimes	short	td_act;
391541Srgrimes	short	td_ostate;
401541Srgrimes	caddr_t	td_tcb;
4156801Sshin	int	td_family;
4256801Sshin	/*
4356801Sshin	 * Co-existense of td_ti and td_ti6 below is ugly, but it is necessary
4456801Sshin	 * to achieve backword compatibility to some extent.
4556801Sshin	 */
4656801Sshin	struct	tcpiphdr td_ti;
4756801Sshin	struct {
48167873Smaxim#define	IP6_HDR_LEN	40	/* sizeof(struct ip6_hdr) */
4956801Sshin#if !defined(_KERNEL) && defined(INET6)
5056801Sshin		struct	ip6_hdr ip6;
5156801Sshin#else
52167873Smaxim		u_char	ip6buf[IP6_HDR_LEN];
5356801Sshin#endif
5456801Sshin		struct	tcphdr th;
5556801Sshin	} td_ti6;
5656801Sshin#define	td_ip6buf	td_ti6.ip6buf
571541Srgrimes	short	td_req;
581541Srgrimes	struct	tcpcb td_cb;
591541Srgrimes};
601541Srgrimes
61133874Srwatson#define	TA_INPUT	0
621541Srgrimes#define	TA_OUTPUT	1
631541Srgrimes#define	TA_USER		2
641541Srgrimes#define	TA_RESPOND	3
651541Srgrimes#define	TA_DROP		4
661541Srgrimes
671541Srgrimes#ifdef TANAMES
68101975Salfredstatic const char	*tanames[] =
691541Srgrimes    { "input", "output", "user", "respond", "drop" };
701541Srgrimes#endif
711541Srgrimes
721541Srgrimes#define	TCP_NDEBUG 100
7315238Sbde
7455205Speter#ifndef _KERNEL
7515238Sbde/* XXX common variables for broken applications. */
761541Srgrimesstruct	tcp_debug tcp_debug[TCP_NDEBUG];
771541Srgrimesint	tcp_debx;
7815238Sbde#endif
792169Spaul
8015238Sbde#endif /* !_NETINET_TCP_DEBUG_H_ */
81