source: azure_iot_hub/trunk/asp3_dcre/tinet/netinet/udp_usrreq.c@ 388

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

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • 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 388 2019-05-22 11:25:18Z 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#include <netinet/ip_igmp.h>
126
127#ifdef SUPPORT_UDP
128
129/*
130 * TINET をライブラリ化しない場合は、å…
131¨ã¦ã®æ©Ÿèƒ½ã‚’
132 * オブジェクトファイルに出力するため、マクロを有効にする。
133 */
134
135#ifndef UDP_CFG_LIBRARY
136
137#define __udp_send_data
138#define __udp_cre_cep
139#define __udp_del_cep
140#define __udp_can_cep
141#define __udp_set_opt
142#define __udp_get_opt
143#define __udp_can_snd
144#define __udp_can_rcv
145#define __udp_snd_dat
146#define __udp_rcv_dat
147
148#endif /* of #ifndef UDP_CFG_LIBRARY */
149
150/*
151 * IPv6 と IPv4 で引数が異なる関数のコンパイル
152 */
153
154#undef IN_GET_DATAGRAM
155#undef IN_COPY_TO_HOST
156
157#if defined(SUPPORT_INET6) && TNUM_UDP6_CEPID > 0
158
159#define UDP_CANCEL_CEP udp6_cancel_cep
160#define UDP_DELETE_CEP udp6_delete_cep
161#define UDP_SET_OPTION udp6_set_option
162#define UDP_GET_OPTION udp6_get_option
163#define UDP_CRE_CEP udp6_cre_cep
164#define UDP_DEL_CEP udp6_del_cep
165#define UDP_SET_OPT udp6_set_opt
166#define UDP_GET_OPT udp6_get_opt
167#define UDP_SND_DAT udp6_snd_dat
168#define UDP_RCV_DAT udp6_rcv_dat
169#define UDP_CAN_SND udp6_can_snd
170#define UDP_CAN_RCV udp6_can_rcv
171#define UDP_ALLOC_AUTO_PORT udp6_alloc_auto_port
172#define UDP_ALLOC_PORT udp6_alloc_port
173#define UDP_SEND_DATA udp6_send_data
174#define VALID_UDP_CEPID VALID_UDP6_CEPID
175#define GET_UDP_CEP GET_UDP6_CEP
176#define GET_UDP_CEPID GET_UDP6_CEPID
177#define T_UDP_CEP T_UDP6_CEP
178#define T_UDPN_CCEP T_UDP6_CCEP
179#define T_IPEP T_IPV6EP
180#define API_PROTO API_PROTO_IPV6
181
182#if defined(_IP4_CFG)
183#define IN_GET_DATAGRAM inn_get_datagram
184#define IN_COPY_TO_HOST inn_copy_to_host
185#else
186#define IN_GET_DATAGRAM in6_get_datagram
187#define IN_COPY_TO_HOST IN6_COPY_TO_HOST
188#endif
189
190#include <netinet/udpn_usrreq.c>
191
192#undef UDP_CANCEL_CEP
193#undef UDP_DELETE_CEP
194#undef UDP_SET_OPTION
195#undef UDP_GET_OPTION
196#undef UDP_CRE_CEP
197#undef UDP_DEL_CEP
198#undef UDP_SET_OPT
199#undef UDP_GET_OPT
200#undef UDP_SND_DAT
201#undef UDP_RCV_DAT
202#undef UDP_CAN_SND
203#undef UDP_CAN_RCV
204#undef UDP_ALLOC_AUTO_PORT
205#undef UDP_ALLOC_PORT
206#undef UDP_SEND_DATA
207#undef VALID_UDP_CEPID
208#undef GET_UDP_CEP
209#undef GET_UDP_CEPID
210#undef T_UDP_CEP
211#undef T_UDPN_CCEP
212#undef T_IPEP
213#undef API_PROTO
214#undef IN_GET_DATAGRAM
215#undef IN_COPY_TO_HOST
216
217#endif /* of #if defined(SUPPORT_INET6) && TNUM_UDP6_CEPID > 0 */
218
219#if defined(SUPPORT_INET4) && TNUM_UDP4_CEPID > 0
220
221#define UDP_CANCEL_CEP udp4_cancel_cep
222#define UDP_DELETE_CEP udp4_delete_cep
223#define UDP_SET_OPTION udp4_set_option
224#define UDP_GET_OPTION udp4_get_option
225#define UDP_CRE_CEP udp_cre_cep
226#define UDP_DEL_CEP udp_del_cep
227#define UDP_SET_OPT udp_set_opt
228#define UDP_GET_OPT udp_get_opt
229#define UDP_SND_DAT udp_snd_dat
230#define UDP_RCV_DAT udp_rcv_dat
231#define UDP_CAN_SND udp4_can_snd
232#define UDP_CAN_RCV udp4_can_rcv
233#define UDP_ALLOC_AUTO_PORT udp4_alloc_auto_port
234#define UDP_ALLOC_PORT udp4_alloc_port
235#define UDP_SEND_DATA udp4_send_data
236#define VALID_UDP_CEPID VALID_UDP4_CEPID
237#define GET_UDP_CEP GET_UDP4_CEP
238#define GET_UDP_CEPID GET_UDP4_CEPID
239#define T_UDP_CEP T_UDP4_CEP
240#define T_UDPN_CCEP T_UDP_CCEP
241#define T_IPEP T_IPV4EP
242#define API_PROTO API_PROTO_IPV4
243
244#define IN_COPY_TO_HOST IN4_COPY_TO_HOST
245#define IN_GET_DATAGRAM in4_get_datagram
246
247#include <netinet/udpn_usrreq.c>
248
249#endif /* of #if defined(SUPPORT_INET4) && TNUM_UDP4_CEPID > 0 */
250
251#if defined(SUPPORT_INET6) && (defined(SUPPORT_INET4) && TNUM_UDP4_CEPID > 0)
252
253/*
254 * udp_can_cep -- ペンディングしている処理のキャンセル【標準機能】
255 */
256
257#ifdef __udp_can_cep
258
259ER
260udp_can_cep (ID cepid, FN fncd)
261{
262 /* IPv6 用の UDP 通信端点 ID をチェックする。*/
263 if (VALID_UDP6_CEPID(cepid)) {
264
265 /* UDP 通信端点を得てメイン関数を呼び出す。*/
266 return udp6_cancel_cep(GET_UDP6_CEP(cepid), fncd);
267 }
268
269 /* IPv4 用の UDP 通信端点 ID をチェックする。*/
270 else if (VALID_UDP4_CEPID(cepid)) {
271
272 /* UDP 通信端点を得てメイン関数を呼び出す。*/
273 return udp4_cancel_cep(GET_UDP4_CEP(cepid), fncd);
274 }
275
276 else
277 return E_ID;
278 }
279
280#endif /* of #ifdef __udp_can_cep */
281
282#endif /* of #if defined(SUPPORT_INET6) && (defined(SUPPORT_INET4) && TNUM_UDP4_CEPID > 0) */
283
284#endif /* of #ifdef SUPPORT_UDP */
Note: See TracBrowser for help on using the repository browser.