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

📄 udp_var.h

📁 vxworks 6.x 的全部头文件
💻 H
字号:
/* udp_var.h - udp header file *//* Copyright 2001-2005 Wind River Systems, Inc. *//* * Copyright (c) 1982, 1986, 1989, 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. * *	@(#)udp_var.h	8.1 (Berkeley) 6/10/93 * $FreeBSD: src/sys/netinet/udp_var.h,v 1.22.2.1 2001/02/18 07:12:25 luigi Exp $ *//*modification history--------------------01k,07feb05,vvv  _KERNEL cleanup01j,31jan05,niq  virtual stack changes for sysctl01i,20nov03,niq  osdep.h cleanup01h,05nov03,cdw  Removal of unnecessary _KERNEL guards.01g,04nov03,rlm  Ran batch header path update for header re-org.01f,03nov03,rlm  Removed wrn/coreip/ prefix from #includes for header re-org.01e,08aug03,niq  Merging from Accordion label ACCORDION_BASE6_MERGE_BASELINE01d,10jun03,vvv  include netVersion.h01c,10sep02,hsh  add c++ protection01b,03dec01,niq  Sysctl changes for Clarinet01a,24aug01,hsh  Created from BSD 4.3*/#ifndef _NETINET_UDP_VAR_H_#define _NETINET_UDP_VAR_H_#ifdef _WRS_KERNEL#include <netinet/in.h>     /* XXX for ip_var.h */#endif#include <netinet/ip_var.h>#include <netinet/udp.h>#ifdef INET6#include <netinet6/ip6.h>#endif#ifdef __cplusplusextern "C" {#endif     #include <netVersion.h>/* * UDP kernel structures and variables. */struct	udpiphdr {	struct 	ipovly ui_i;		/* overlaid ip structure */	struct	udphdr ui_u;		/* udp header */};#define	ui_x1		ui_i.ih_x1#define	ui_pr		ui_i.ih_pr#define	ui_len		ui_i.ih_len#define	ui_src		ui_i.ih_src#define	ui_dst		ui_i.ih_dst#define	ui_sport	ui_u.uh_sport#define	ui_dport	ui_u.uh_dport#define	ui_ulen		ui_u.uh_ulen#define	ui_sum		ui_u.uh_sumstruct	udpstat {				/* input statistics: */	u_long	udps_ipackets;		/* total input packets */	u_long	udps_hdrops;		/* packet shorter than header */	u_long	udps_badsum;		/* checksum error */	u_long	udps_nosum;		/* no checksum */	u_long	udps_badlen;		/* data length larger than packet */	u_long	udps_noport;		/* no socket on port */	u_long	udps_noportbcast;	/* of above, arrived as broadcast */	u_long	udps_fullsock;		/* not delivered, input socket full */	u_long	udpps_pcbcachemiss;	/* input packets missing pcb cache */	u_long	udpps_pcbhashmiss;	/* input packets not for hashed pcb */				/* output statistics: */	u_long	udps_opackets;		/* total output packets */	u_long	udps_fastout;		/* output packets on fast path */	/* of no socket on port, arrived as multicast */	u_long	udps_noportmcast;};/* * Names for UDP sysctl objects */#define	UDPCTL_CHECKSUM		1	/* checksum UDP packets */#define UDPCTL_STATS		2	/* statistics (read-only) */#define	UDPCTL_MAXDGRAM		3	/* max datagram size */#define	UDPCTL_RECVSPACE	4	/* default receive buffer space */#define	UDPCTL_PCBLIST		5	/* list of PCBs for UDP sockets */#define UDPCTL_MAXID		6#define UDPCTL_NAMES { \	{ 0, 0 }, \	{ "checksum", CTLTYPE_INT }, \	{ "stats", CTLTYPE_STRUCT }, \	{ "maxdgram", CTLTYPE_INT }, \	{ "recvspace", CTLTYPE_INT }, \	{ "pcblist", CTLTYPE_STRUCT }, \}#ifdef _WRS_KERNEL#include <sysctlLib.h>#ifndef VIRTUAL_STACKSYSCTL_DECL_NODE_EXT(udp);#endif /* VIRTUAL_STACK */#ifdef INET6  /* XXX location? */struct udp_in6 {	struct sockaddr_in6	uin6_sin;	u_char			uin6_init_done : 1;};struct udp_ip6 {	struct ip6_hdr		uip6_ip6;	u_char			uip6_init_done : 1;};#endifextern struct	pr_usrreqs udp_usrreqs;#ifndef VIRTUAL_STACKextern struct	inpcbhead udb;extern struct	inpcbinfo udbinfo;extern u_long	udp_sendspace;extern u_long	udp_recvspace;extern struct	udpstat udpStat;#if 0 /* accordion */extern int	log_in_vain;#elseextern int	udp_log_in_vain;#endif#endifvoid	udp_ctlinput __P((int, struct sockaddr *, void *));void	udp_init __P((void));void	udp_input __P((struct mbuf *, int, int));void	udp_notify __P((struct inpcb *inp, int error));int	udp_shutdown __P((struct socket *so));#endif /* _WRS_KERNEL */#ifdef __cplusplus}#endif    #endif

⌨️ 快捷键说明

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