source: asp3_tinet_ecnl_rx/trunk/asp3_dcre/tinet/netinet/in4_var.h@ 337

Last change on this file since 337 was 337, checked in by coas-nagasima, 6 years ago

ASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 8.2 KB
Line 
1/*
2 * TINET (TCP/IP Protocol Stack)
3 *
4 * Copyright (C) 2001-2017 by Dep. of Computer Science and Engineering
5 * Tomakomai National College of Technology, JAPAN
6 *
7 * 上記著作権者は,以下の (1)~(4) の条件か,Free Software Foundation
8 * によって公表されている GNU General Public License の Version 2 に記
9 * 述されている条件を満たす場合に限り,本ソフトウェア(本ソフトウェア
10 * を改変したものを含む.以下同じ)を使用・複製・改変・再配布(以下,
11 * 利用と呼ぶ)することを無償で許諾する.
12 * (1) 本ソフトウェアをソースコードの形で利用する場合には,上記の著作
13 * 権表示,この利用条件および下記の無保証規定が,そのままの形でソー
14 * スコード中に含まれていること.
15 * (2) 本ソフトウェアを,ライブラリ形式など,他のソフトウェア開発に使
16 * 用できる形で再配布する場合には,再配布に伴うドキュメント(利用
17 * 者マニュアルなど)に,上記の著作権表示,この利用条件および下記
18 * の無保証規定を掲載すること.
19 * (3) 本ソフトウェアを,機器に組み込むなど,他のソフトウェア開発に使
20 * 用できない形で再配布する場合には,次の条件を満たすこと.
21 * (a) 再配布に伴うドキュメント(利用者マニュアルなど)に,上記の著
22 * 作権表示,この利用条件および下記の無保証規定を掲載すること.
23 * (4) 本ソフトウェアの利用により直接的または間接的に生じるいかなる損
24 * 害からも,上記著作権者およびTOPPERSプロジェクトを免責すること.
25 *
26 * 本ソフトウェアは,無保証で提供されているものである.上記著作権者お
27 * よびTOPPERSプロジェクトは,本ソフトウェアに関して,その適用可能性も
28 * 含めて,いかなる保証も行わない.また,本ソフトウェアの利用により直
29 * 接的または間接的に生じたいかなる損害に関しても,その責任を負わない.
30 *
31 * @(#) $Id$
32 */
33
34/*
35 * Copyright (c) 1985, 1986, 1993
36 * The Regents of the University of California. All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 * SUCH DAMAGE.
65 *
66 * @(#)in_var.h 8.2 (Berkeley) 1/9/95
67 * $FreeBSD: src/sys/netinet/in_var.h,v 1.29.2.1 1999/08/29 16:29:38 peter Exp $
68 */
69
70#ifndef _IN4_VAR_H_
71#define _IN4_VAR_H_
72
73#ifndef _MACRO_ONLY
74
75/*
76 * インタフェースアドレス構造体
77 */
78
79typedef struct t_in4_ifaddr {
80 T_IN4_ADDR addr; /* IPv4 アドレス */
81 T_IN4_ADDR mask; /* サブネットマスク */
82 } T_IN4_IFADDR;
83
84/*
85 * ルーティング表エントリ構造体
86 */
87
88typedef struct t_in4_rtentry {
89 T_IN4_ADDR target; /* 目標ネットワークアドレス */
90 T_IN4_ADDR mask; /* 目標ネットワークアドレスのサブネットマスク */
91 T_IN4_ADDR gateway; /* ゲートウェイの IP アドレス */
92 uint32_t expire; /* 有効時間が切れる時刻 [s] */
93 uint8_t flags; /* フラグ */
94 } T_IN4_RTENTRY;
95/*
96 * TINET 1.1 との互換性のための定義
97 *
98 * TINET 1.5 との互換性のために定義を無効にした。
99 */
100
101#if 0
102#ifdef NUM_ROUTE_ENTRY
103
104#define NUM_IN4_ROUTE_ENTRY NUM_ROUTE_ENTRY
105#define NUM_IN4_STATIC_ROUTE_ENTRY NUM_ROUTE_ENTRY
106#define NUM_IN4_REDIRECT_ROUTE_ENTRY 0
107#define T_RT_ENTRY T_IN4_RTENTRY
108
109#endif /* of #ifdef NUM_ROUTE_ENTRY */
110#endif
111
112/*
113 * ルーティング表
114 */
115
116#ifdef SUPPORT_INET4
117
118extern T_IN4_RTENTRY routing4_tbl[];
119
120#endif /* of #ifdef SUPPORT_INET4 */
121
122/*
123 * 前方参照
124 */
125
126#ifndef T_NET_BUF_DEFINED
127typedef struct t_net_buf T_NET_BUF;
128#define T_NET_BUF_DEFINED
129#endif
130
131#ifndef T_IFNET_DEFINED
132typedef struct t_ifnet T_IFNET;
133#define T_IFNET_DEFINED
134#endif
135
136/*
137 * 関数シミュレーションマクロ
138 */
139
140#define IN4_COPY_TO_HOST(dst,nbuf) (*(dst)=ntohl(GET_IP4_HDR(nbuf)->src))
141
142/*
143 * 関数
144 */
145
146extern void ip_input (T_NET_BUF *data);
147extern ER in4_set_header (T_NET_BUF *nbuf, uint_t len,
148 T_IN4_ADDR *dstaddr, T_IN4_ADDR *srcaddr, uint8_t proto, uint8_t ttl);
149extern ER in4_get_datagram (T_NET_BUF **nbuf, uint_t len, uint_t maxlen,
150 T_IN4_ADDR *dstaddr, T_IN4_ADDR *srcaddr,
151 uint8_t proto, uint8_t ttl, ATR nbatr, TMO tmout);
152extern uint16_t in4_cksum (T_NET_BUF *nbuf, uint8_t proto, uint_t off, uint_t len);
153extern T_IN4_ADDR in4_rtalloc (T_IN4_ADDR dst);
154extern void in4_rtredirect (T_IN4_ADDR gateway, T_IN4_ADDR target, uint8_t flags, uint32_t tmo);
155extern void in4_init (void);
156extern T_IN4_ADDR *in4_addrwithifp (T_IFNET *ifp, T_IN4_ADDR *src, T_IN4_ADDR *dst);
157extern const T_NET_BUF**ip_get_frag_queue (void);
158
159/*
160 * in4_is_dstaddr_accept -- 宛先アドレスとして正しいかチェックする。
161 *
162 * 注意: dstaddr は、
163 * TINET-1.2 からネットワークバイトオーダ、
164 * TINET-1.1 までは、ホストバイトオーダ
165 */
166extern bool_t in4_is_dstaddr_accept (T_IN4_ADDR *myaddr, T_IN4_ADDR *dstaddr);
167extern bool_t inn4_is_dstaddr_accept (T_IN4_ADDR *myaddr, T_NET_BUF *input);
168
169/*
170 * in_cksum -- チェックサム計算関数、IPv4、ICMPv4 用
171 *
172 * 注意: data は 4 オクテット単位でパディングすること。
173 * data が 2 オクテット単位にアラインされていないと
174 * 例外が発生する可能性がある。
175 * len は 4 オクテット単位にアラインされていること。
176 */
177extern uint16_t in_cksum(void *data, uint_t len /*オクテット単位*/);
178
179/*
180 * in_cksum_sum -- チェックサムの合計計算関数
181 *
182 * 注意: data は 4 オクテット単位でパディングすること。
183 * data が 2 オクテット単位にアラインされていないと
184 * 例外が発生する可能性がある。
185 * len は 4 オクテット単位にアラインされていること。
186 */
187extern uint32_t in_cksum_sum (void *data, uint_t len /*オクテット単位*/);
188
189/*
190 * in_cksum_carry -- チェックサムの桁上げ計算関数
191 *
192 * 注意: data は 4 オクテット単位でパディングすること。
193 * data が 2 オクテット単位にアラインされていないと
194 * 例外が発生する可能性がある。
195 * len は 4 オクテット単位にアラインされていること。
196 */
197extern uint32_t in_cksum_carry (uint32_t sum);
198
199#endif /* of #ifndef _MACRO_ONLY */
200
201#endif /* of #ifndef _IN4_VAR_H_ */
Note: See TracBrowser for help on using the repository browser.