source: asp3_tinet_ecnl_arm/trunk/asp3_dcre/tinet/tinet_asp.cfg@ 352

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

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain;charset=UTF-8
File size: 3.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 * TINET の標準システムコンフィギュレーションファイル
36 */
37
38#include "target_sil.h"
39
40#include <itron.h>
41
42#include <tinet_defs.h>
43#include <tinet_config.h>
44
45#include <net/if.h>
46#include <net/if_ppp.h>
47#include <net/if_loop.h>
48#include <net/ethernet.h>
49#include <net/if_arp.h>
50#include <net/net.h>
51#include <net/net_endian.h>
52#include <net/net_buf.h>
53#include <net/net_timer.h>
54#include <net/ppp_var.h>
55#include <net/ether_var.h>
56#include <netinet/in.h>
57#include <netinet/in_var.h>
58#include <netinet/ip.h>
59#include <netinet/ip_var.h>
60#include <netinet/tcp.h>
61#include <netinet/tcp_var.h>
62#include <netinet/udp_var.h>
63
64/*
65 * TINET プロトコルスタック内部のカーネルオブジェクトの指定
66 */
67
68INCLUDE("nic_asp.cfg");
69
70INCLUDE("net/net_asp.cfg");
71INCLUDE("net/ethernet.cfg");
72
73INCLUDE("netinet/if_ether.cfg");
74INCLUDE("netinet/ip.cfg");
75INCLUDE("netinet/tcp.cfg");
76INCLUDE("netinet/udp.cfg");
77INCLUDE("netinet6/ip6.cfg");
Note: See TracBrowser for help on using the repository browser.