OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [net/] [bsd_tcpip/] [v2_0/] [include/] [netinet/] [ip_var.h] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//      include/netinet/ip_var.h
4
//
5
//==========================================================================
6
//####BSDCOPYRIGHTBEGIN####
7
//
8
// -------------------------------------------
9
//
10
// Portions of this software may have been derived from OpenBSD, 
11
// FreeBSD or other sources, and are covered by the appropriate
12
// copyright disclaimers included herein.
13
//
14
// Portions created by Red Hat are
15
// Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
16
//
17
// -------------------------------------------
18
//
19
//####BSDCOPYRIGHTEND####
20
//==========================================================================
21
 
22
/*
23
 * Copyright (c) 1982, 1986, 1993
24
 *      The Regents of the University of California.  All rights reserved.
25
 *
26
 * Redistribution and use in source and binary forms, with or without
27
 * modification, are permitted provided that the following conditions
28
 * are met:
29
 * 1. Redistributions of source code must retain the above copyright
30
 *    notice, this list of conditions and the following disclaimer.
31
 * 2. Redistributions in binary form must reproduce the above copyright
32
 *    notice, this list of conditions and the following disclaimer in the
33
 *    documentation and/or other materials provided with the distribution.
34
 * 3. All advertising materials mentioning features or use of this software
35
 *    must display the following acknowledgement:
36
 *      This product includes software developed by the University of
37
 *      California, Berkeley and its contributors.
38
 * 4. Neither the name of the University nor the names of its contributors
39
 *    may be used to endorse or promote products derived from this software
40
 *    without specific prior written permission.
41
 *
42
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
43
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
46
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
52
 * SUCH DAMAGE.
53
 *
54
 *      @(#)ip_var.h    8.2 (Berkeley) 1/9/95
55
 * $FreeBSD: src/sys/netinet/ip_var.h,v 1.50.2.4 2001/07/19 06:37:26 kris Exp $
56
 */
57
 
58
#ifndef _NETINET_IP_VAR_H_
59
#define _NETINET_IP_VAR_H_
60
 
61
#include <sys/queue.h>
62
 
63
/*
64
 * Overlay for ip header used by other protocols (tcp, udp).
65
 */
66
struct ipovly {
67
        u_char  ih_x1[9];               /* (unused) */
68
        u_char  ih_pr;                  /* protocol */
69
        u_short ih_len;                 /* protocol length */
70
        struct  in_addr ih_src;         /* source internet address */
71
        struct  in_addr ih_dst;         /* destination internet address */
72
} __attribute__ ((aligned(1), packed));
73
 
74
/*
75
 * Ip reassembly queue structure.  Each fragment
76
 * being reassembled is attached to one of these structures.
77
 * They are timed out after ipq_ttl drops to 0, and may also
78
 * be reclaimed if memory becomes tight.
79
 */
80
struct ipq {
81
        struct  ipq *next,*prev;        /* to other reass headers */
82
        u_char  ipq_ttl;                /* time for reass q to live */
83
        u_char  ipq_p;                  /* protocol of this fragment */
84
        u_short ipq_id;                 /* sequence id for reassembly */
85
        struct mbuf *ipq_frags;         /* to ip headers of fragments */
86
        struct  in_addr ipq_src,ipq_dst;
87
#ifdef IPDIVERT
88
        u_int32_t ipq_div_info;         /* ipfw divert port & flags */
89
        u_int16_t ipq_div_cookie;       /* ipfw divert cookie */
90
#endif
91
};
92
 
93
/*
94
 * Structure stored in mbuf in inpcb.ip_options
95
 * and passed to ip_output when ip options are in use.
96
 * The actual length of the options (including ipopt_dst)
97
 * is in m_len.
98
 */
99
#define MAX_IPOPTLEN    40
100
 
101
struct ipoption {
102
        struct  in_addr ipopt_dst;      /* first-hop dst if source routed */
103
        char    ipopt_list[MAX_IPOPTLEN];       /* options proper */
104
};
105
 
106
/*
107
 * Structure attached to inpcb.ip_moptions and
108
 * passed to ip_output when IP multicast options are in use.
109
 */
110
struct ip_moptions {
111
        struct  ifnet *imo_multicast_ifp; /* ifp for outgoing multicasts */
112
        struct in_addr imo_multicast_addr; /* ifindex/addr on MULTICAST_IF */
113
        u_char  imo_multicast_ttl;      /* TTL for outgoing multicasts */
114
        u_char  imo_multicast_loop;     /* 1 => hear sends if a member */
115
        u_short imo_num_memberships;    /* no. memberships this socket */
116
        struct  in_multi *imo_membership[IP_MAX_MEMBERSHIPS];
117
        u_long  imo_multicast_vif;      /* vif num outgoing multicasts */
118
};
119
 
120
struct  ipstat {
121
        u_long  ips_total;              /* total packets received */
122
        u_long  ips_badsum;             /* checksum bad */
123
        u_long  ips_tooshort;           /* packet too short */
124
        u_long  ips_toosmall;           /* not enough data */
125
        u_long  ips_badhlen;            /* ip header length < data size */
126
        u_long  ips_badlen;             /* ip length < ip header length */
127
        u_long  ips_fragments;          /* fragments received */
128
        u_long  ips_fragdropped;        /* frags dropped (dups, out of space) */
129
        u_long  ips_fragtimeout;        /* fragments timed out */
130
        u_long  ips_forward;            /* packets forwarded */
131
        u_long  ips_fastforward;        /* packets fast forwarded */
132
        u_long  ips_cantforward;        /* packets rcvd for unreachable dest */
133
        u_long  ips_redirectsent;       /* packets forwarded on same net */
134
        u_long  ips_noproto;            /* unknown or unsupported protocol */
135
        u_long  ips_delivered;          /* datagrams delivered to upper level*/
136
        u_long  ips_localout;           /* total ip packets generated here */
137
        u_long  ips_odropped;           /* lost packets due to nobufs, etc. */
138
        u_long  ips_reassembled;        /* total packets reassembled ok */
139
        u_long  ips_fragmented;         /* datagrams successfully fragmented */
140
        u_long  ips_ofragments;         /* output fragments created */
141
        u_long  ips_cantfrag;           /* don't fragment flag was set, etc. */
142
        u_long  ips_badoptions;         /* error in option processing */
143
        u_long  ips_noroute;            /* packets discarded due to no route */
144
        u_long  ips_badvers;            /* ip version != 4 */
145
        u_long  ips_rawout;             /* total raw ip packets generated */
146
        u_long  ips_toolong;            /* ip length > max ip packet size */
147
        u_long  ips_notmember;          /* multicasts for unregistered grps */
148
        u_long  ips_nogif;              /* no match gif found */
149
        u_long  ips_badaddr;            /* invalid address on header */
150
};
151
 
152
#ifdef _KERNEL
153
 
154
/* flags passed to ip_output as last parameter */
155
#define IP_FORWARDING           0x1             /* most of ip header exists */
156
#define IP_RAWOUTPUT            0x2             /* raw ip header exists */
157
#define IP_ROUTETOIF            SO_DONTROUTE    /* bypass routing tables */
158
#define IP_ALLOWBROADCAST       SO_BROADCAST    /* can send broadcast packets */
159
 
160
struct ip;
161
struct inpcb;
162
struct route;
163
struct sockopt;
164
 
165
extern struct   ipstat  ipstat;
166
#ifndef RANDOM_IP_ID
167
extern u_short  ip_id;                          /* ip packet ctr, for ids */
168
#endif
169
extern int      ip_defttl;                      /* default IP ttl */
170
extern int      ipforwarding;                   /* ip forwarding */
171
extern u_char   ip_protox[];
172
extern struct socket *ip_rsvpd; /* reservation protocol daemon */
173
extern struct socket *ip_mrouter; /* multicast routing daemon */
174
extern int      (*legal_vif_num) __P((int));
175
extern u_long   (*ip_mcast_src) __P((int));
176
extern int rsvp_on;
177
extern struct   pr_usrreqs rip_usrreqs;
178
 
179
int      ip_ctloutput __P((struct socket *, struct sockopt *sopt));
180
void     ip_drain __P((void));
181
void     ip_freemoptions __P((struct ip_moptions *));
182
void     ip_init __P((void));
183
extern int       (*ip_mforward) __P((struct ip *, struct ifnet *, struct mbuf *,
184
                          struct ip_moptions *));
185
int      ip_output __P((struct mbuf *,
186
            struct mbuf *, struct route *, int, struct ip_moptions *));
187
void     ip_savecontrol __P((struct inpcb *, struct mbuf **, struct ip *,
188
                struct mbuf *));
189
void     ip_slowtimo __P((void));
190
struct mbuf *
191
         ip_srcroute __P((void));
192
void     ip_stripoptions __P((struct mbuf *, struct mbuf *));
193
#ifdef RANDOM_IP_ID
194
u_int16_t
195
         ip_randomid __P((void));
196
#endif
197
int      rip_ctloutput __P((struct socket *, struct sockopt *));
198
void     rip_ctlinput __P((int, struct sockaddr *, void *));
199
void     rip_init __P((void));
200
void     rip_input __P((struct mbuf *, int));
201
int      rip_output __P((struct mbuf *, struct socket *, u_long));
202
void    ipip_input __P((struct mbuf *, int));
203
void    rsvp_input __P((struct mbuf *, int));
204
int     ip_rsvp_init __P((struct socket *));
205
int     ip_rsvp_done __P((void));
206
int     ip_rsvp_vif_init __P((struct socket *, struct sockopt *));
207
int     ip_rsvp_vif_done __P((struct socket *, struct sockopt *));
208
void    ip_rsvp_force_done __P((struct socket *));
209
 
210
#ifdef IPDIVERT
211
void    div_init __P((void));
212
void    div_input __P((struct mbuf *, int));
213
void    divert_packet __P((struct mbuf *, int, int));
214
extern struct pr_usrreqs div_usrreqs;
215
extern u_int16_t ip_divert_cookie;
216
#endif
217
 
218
extern struct sockaddr_in *ip_fw_fwd_addr;
219
 
220
void    in_delayed_cksum(struct mbuf *m);
221
 
222
#endif /* _KERNEL */
223
 
224
#endif /* !_NETINET_IP_VAR_H_ */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.