source: rubycfg_asp/trunk/asp_dcre/tinet/netinet/udp_usrreq.c@ 313

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

ソースを追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csrc
File size: 9.1 KB
Line 
1/*
2 * TINET (UDP/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 * 上記著作権者
8は,以下の (1)~(4) の条件か,Free Software Foundation
9 * によってå…
10¬è¡¨ã•ã‚Œã¦ã„ã‚‹ GNU General Public License の Version 2 に記
11 * 述されている条件を満たす場合に限り,本ソフトウェア(本ソフトウェア
12 * を改変したものを含む.以下同じ)を使用・複製・改変・再é…
13å¸ƒï¼ˆä»¥ä¸‹ï¼Œ
14 * 利用と呼ぶ)することを無償で許諾する.
15 * (1) 本ソフトウェアをソースコードの形で利用する場合には,上記の著作
16 * 権表示,この利用条件および下記の無保証規定が,そのままの形でソー
17 * スコード中に含まれていること.
18 * (2) 本ソフトウェアを,ライブラリ形式など,他のソフトウェア開発に使
19 * 用できる形で再é…
20å¸ƒã™ã‚‹å ´åˆã«ã¯ï¼Œå†é…
21å¸ƒã«ä¼´ã†ãƒ‰ã‚­ãƒ¥ãƒ¡ãƒ³ãƒˆï¼ˆåˆ©ç”¨
22 * 者
23マニュアルなど)に,上記の著作権表示,この利用条件および下記
24 * の無保証規定を掲載すること.
25 * (3) 本ソフトウェアを,機器に組み込むなど,他のソフトウェア開発に使
26 * 用できない形で再é…
27å¸ƒã™ã‚‹å ´åˆã«ã¯ï¼Œæ¬¡ã®æ¡ä»¶ã‚’満たすこと.
28 * (a) 再é…
29å¸ƒã«ä¼´ã†ãƒ‰ã‚­ãƒ¥ãƒ¡ãƒ³ãƒˆï¼ˆåˆ©ç”¨è€…
30マニュアルなど)に,上記の著
31 * 作権表示,この利用条件および下記の無保証規定を掲載すること.
32 * (4) 本ソフトウェアの利用により直接的または間接的に生じるいかなる損
33 * 害からも,上記著作権者
34およびTOPPERSプロジェクトをå…
35è²¬ã™ã‚‹ã“と.
36 *
37 * 本ソフトウェアは,無保証で提供されているものである.上記著作権者
38お
39 * よびTOPPERSプロジェクトは,本ソフトウェアに関して,その適用可能性も
40 * 含めて,いかなる保証も行わない.また,本ソフトウェアの利用により直
41 * 接的または間接的に生じたいかなる損害に関しても,その責任を負わない.
42 *
43 * @(#) $Id: udp_usrreq.c 313 2017-07-23 04:50:32Z coas-nagasima $
44 */
45
46/*
47 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
48 * The Regents of the University of California. All rights reserved.
49 *
50 * Redistribution and use in source and binary forms, with or without
51 * modification, are permitted provided that the following conditions
52 * are met:
53 * 1. Redistributions of source code must retain the above copyright
54 * notice, this list of conditions and the following disclaimer.
55 * 2. Redistributions in binary form must ceproduce the above copyright
56 * notice, this list of conditions and the following disclaimer in the
57 * documentation and/or other materials provided with the distribution.
58 * 3. All advertising materials mentioning features or use of this software
59 * must display the following acknowledgement:
60 * This product includes software developed by the University of
61 * California, Berkeley and its contributors.
62 * 4. Neither the name of the University nor the names of its contributors
63 * may be used to endorse or promote products derived from this software
64 * without specific prior written permission.
65 *
66 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
67 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
68 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
69 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
70 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
71 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
72 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
73 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
74 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
75 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
76 * SUCH DAMAGE.
77 *
78 * @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95
79 * $FreeBSD: src/sys/netinet/udp_usrreq.c,v 1.49.2.2 1999/08/29 16:29:58 peter Exp $
80 */
81
82/*
83 * ノンブロッキングコールを組込まない場合にリンクされる関数の定義
84 */
85
86#include <string.h>
87
88#ifdef TARGET_KERNEL_ASP
89
90#include <kernel.h>
91#include <sil.h>
92#include "tinet_cfg.h"
93
94#endif /* of #ifdef TARGET_KERNEL_ASP */
95
96#ifdef TARGET_KERNEL_JSP
97
98#include <s_services.h>
99#include <t_services.h>
100#include "tinet_id.h"
101
102#endif /* of #ifdef TARGET_KERNEL_JSP */
103
104#include <tinet_defs.h>
105#include <tinet_config.h>
106
107#include <net/if.h>
108#include <net/if_ppp.h>
109#include <net/if_loop.h>
110#include <net/ethernet.h>
111#include <net/net.h>
112#include <net/net_endian.h>
113#include <net/net_buf.h>
114#include <net/net_count.h>
115#include <net/ppp_ipcp.h>
116
117#include <netinet/in.h>
118#include <netinet/in_var.h>
119#include <netinet/in_itron.h>
120#include <netinet/ip.h>
121#include <netinet/ip_var.h>
122#include <netinet/ip_icmp.h>
123#include <netinet/udp.h>
124#include <netinet/udp_var.h>
125
126#ifdef SUPPORT_UDP
127
128/*
129 * TINET をライブラリ化しない場合は、å…
130¨ã¦ã®æ©Ÿèƒ½ã‚’
131 * オブジェクトファイルに出力するため、マクロを有効にする。
132 */
133
134#ifndef UDP_CFG_LIBRARY
135
136#define __udp_send_data
137#define __udp_cre_cep
138#define __udp_del_cep
139#define __udp_can_cep
140#define __udp_set_opt
141#define __udp_get_opt
142#define __udp_can_snd
143#define __udp_can_rcv
144#define __udp_snd_dat
145#define __udp_rcv_dat
146
147#endif /* of #ifndef UDP_CFG_LIBRARY */
148
149/*
150 * IPv6 と IPv4 で引数が異なる関数のコンパイル
151 */
152
153#undef IN_GET_DATAGRAM
154#undef IN_COPY_TO_HOST
155
156#if defined(SUPPORT_INET6) && TNUM_UDP6_CEPID > 0
157
158#define UDP_CANCEL_CEP udp6_cancel_cep
159#define UDP_DELETE_CEP udp6_delete_cep
160#define UDP_SET_OPTION udp6_set_option
161#define UDP_GET_OPTION udp6_get_option
162#define UDP_CRE_CEP udp6_cre_cep
163#define UDP_DEL_CEP udp6_del_cep
164#define UDP_SET_OPT udp6_set_opt
165#define UDP_GET_OPT udp6_get_opt
166#define UDP_SND_DAT udp6_snd_dat
167#define UDP_RCV_DAT udp6_rcv_dat
168#define UDP_CAN_SND udp6_can_snd
169#define UDP_CAN_RCV udp6_can_rcv
170#define UDP_ALLOC_AUTO_PORT udp6_alloc_auto_port
171#define UDP_ALLOC_PORT udp6_alloc_port
172#define UDP_SEND_DATA udp6_send_data
173#define VALID_UDP_CEPID VALID_UDP6_CEPID
174#define GET_UDP_CEP GET_UDP6_CEP
175#define GET_UDP_CEPID GET_UDP6_CEPID
176#define T_UDP_CEP T_UDP6_CEP
177#define T_UDPN_CCEP T_UDP6_CCEP
178#define T_IPEP T_IPV6EP
179#define API_PROTO API_PROTO_IPV6
180
181#if defined(_IP4_CFG)
182#define IN_GET_DATAGRAM inn_get_datagram
183#define IN_COPY_TO_HOST inn_copy_to_host
184#else
185#define IN_GET_DATAGRAM in6_get_datagram
186#define IN_COPY_TO_HOST IN6_COPY_TO_HOST
187#endif
188
189#include <netinet/udpn_usrreq.c>
190
191#undef UDP_CANCEL_CEP
192#undef UDP_DELETE_CEP
193#undef UDP_SET_OPTION
194#undef UDP_GET_OPTION
195#undef UDP_CRE_CEP
196#undef UDP_DEL_CEP
197#undef UDP_SET_OPT
198#undef UDP_GET_OPT
199#undef UDP_SND_DAT
200#undef UDP_RCV_DAT
201#undef UDP_CAN_SND
202#undef UDP_CAN_RCV
203#undef UDP_ALLOC_AUTO_PORT
204#undef UDP_ALLOC_PORT
205#undef UDP_SEND_DATA
206#undef VALID_UDP_CEPID
207#undef GET_UDP_CEP
208#undef GET_UDP_CEPID
209#undef T_UDP_CEP
210#undef T_UDPN_CCEP
211#undef T_IPEP
212#undef API_PROTO
213#undef IN_GET_DATAGRAM
214#undef IN_COPY_TO_HOST
215
216#endif /* of #if defined(SUPPORT_INET6) && TNUM_UDP6_CEPID > 0 */
217
218#if defined(SUPPORT_INET4) && TNUM_UDP4_CEPID > 0
219
220#define UDP_CANCEL_CEP udp4_cancel_cep
221#define UDP_DELETE_CEP udp4_delete_cep
222#define UDP_SET_OPTION udp4_set_option
223#define UDP_GET_OPTION udp4_get_option
224#define UDP_CRE_CEP udp_cre_cep
225#define UDP_DEL_CEP udp_del_cep
226#define UDP_SET_OPT udp_set_opt
227#define UDP_GET_OPT udp_get_opt
228#define UDP_SND_DAT udp_snd_dat
229#define UDP_RCV_DAT udp_rcv_dat
230#define UDP_CAN_SND udp4_can_snd
231#define UDP_CAN_RCV udp4_can_rcv
232#define UDP_ALLOC_AUTO_PORT udp4_alloc_auto_port
233#define UDP_ALLOC_PORT udp4_alloc_port
234#define UDP_SEND_DATA udp4_send_data
235#define VALID_UDP_CEPID VALID_UDP4_CEPID
236#define GET_UDP_CEP GET_UDP4_CEP
237#define GET_UDP_CEPID GET_UDP4_CEPID
238#define T_UDP_CEP T_UDP4_CEP
239#define T_UDPN_CCEP T_UDP_CCEP
240#define T_IPEP T_IPV4EP
241#define API_PROTO API_PROTO_IPV4
242
243#define IN_COPY_TO_HOST IN4_COPY_TO_HOST
244#define IN_GET_DATAGRAM in4_get_datagram
245
246#include <netinet/udpn_usrreq.c>
247
248#endif /* of #if defined(SUPPORT_INET4) && TNUM_UDP4_CEPID > 0 */
249
250#if defined(SUPPORT_INET6) && (defined(SUPPORT_INET4) && TNUM_UDP4_CEPID > 0)
251
252/*
253 * udp_can_cep -- ペンディングしている処理のキャンセル【標準機能】
254 */
255
256#ifdef __udp_can_cep
257
258ER
259udp_can_cep (ID cepid, FN fncd)
260{
261 /* IPv6 用の UDP 通信端点 ID をチェックする。*/
262 if (VALID_UDP6_CEPID(cepid)) {
263
264 /* UDP 通信端点を得てメイン関数を呼び出す。*/
265 return udp6_cancel_cep(GET_UDP6_CEP(cepid), fncd);
266 }
267
268 /* IPv4 用の UDP 通信端点 ID をチェックする。*/
269 else if (VALID_UDP4_CEPID(cepid)) {
270
271 /* UDP 通信端点を得てメイン関数を呼び出す。*/
272 return udp4_cancel_cep(GET_UDP4_CEP(cepid), fncd);
273 }
274
275 else
276 return E_ID;
277 }
278
279#endif /* of #ifdef __udp_can_cep */
280
281#endif /* of #if defined(SUPPORT_INET6) && (defined(SUPPORT_INET4) && TNUM_UDP4_CEPID > 0) */
282
283#endif /* of #ifdef SUPPORT_UDP */
Note: See TracBrowser for help on using the repository browser.