source: EcnlProtoTool/trunk/asp3_dcre/tinet/net/net_asp.cfg@ 321

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

文字コードを設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain;charset=UTF-8
File size: 5.3 KB
Line 
1/*
2 * TINET (TCP/IP Protocol Stack)
3 *
4 * Copyright (C) 2001-2009 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 * ASP用 汎用ネットワークコンフィギュレーションファイル
36 */
37
38/*
39 * 共通 汎用ネットワークコンフィギュレーションファイルのインクルード
40 */
41
42INCLUDE("net/net.cfg");
43
44/*
45 * ネットワークバッファ
46 */
47
48#if defined(NUM_MPF_NET_BUF_CSEG) && NUM_MPF_NET_BUF_CSEG > 0
49CRE_MPF(MPF_NET_BUF_CSEG, {
50 TA_TFIFO,
51 NUM_MPF_NET_BUF_CSEG,
52 sizeof(T_NET_BUF_CSEG)
53 });
54#endif /* of #if defined(NUM_MPF_NET_BUF_CSEG) && NUM_MPF_NET_BUF_CSEG > 0 */
55
56#if defined(NUM_MPF_NET_BUF_64) && NUM_MPF_NET_BUF_64 > 0
57CRE_MPF(MPF_NET_BUF_64, {
58 TA_TFIFO, NUM_MPF_NET_BUF_64,
59 sizeof(T_NET_BUF_64)
60 });
61#endif /* of #if defined(NUM_MPF_NET_BUF_64) && NUM_MPF_NET_BUF_64 > 0 */
62
63#if defined(NUM_MPF_NET_BUF_128) && NUM_MPF_NET_BUF_128 > 0
64CRE_MPF(MPF_NET_BUF_128, {
65 TA_TFIFO,
66 NUM_MPF_NET_BUF_128,
67 sizeof(T_NET_BUF_128)
68 });
69#endif /* of #if defined(NUM_MPF_NET_BUF_128) && NUM_MPF_NET_BUF_128 > 0 */
70
71#if defined(NUM_MPF_NET_BUF_256) && NUM_MPF_NET_BUF_256 > 0
72CRE_MPF(MPF_NET_BUF_256, {
73 TA_TFIFO,
74 NUM_MPF_NET_BUF_256,
75 sizeof(T_NET_BUF_256)
76 });
77#endif /* of #if defined(NUM_MPF_NET_BUF_256) && NUM_MPF_NET_BUF_256 > 0 */
78
79#if defined(NUM_MPF_NET_BUF_512) && NUM_MPF_NET_BUF_512 > 0
80CRE_MPF(MPF_NET_BUF_512, {
81 TA_TFIFO,
82 NUM_MPF_NET_BUF_512,
83 sizeof(T_NET_BUF_512)
84 });
85#endif /* of #if defined(NUM_MPF_NET_BUF_512) && NUM_MPF_NET_BUF_512 > 0 */
86
87#if defined(NUM_MPF_NET_BUF_IP_MSS) && NUM_MPF_NET_BUF_IP_MSS > 0
88CRE_MPF(MPF_NET_BUF_IP_MSS, {
89 TA_TFIFO,
90 NUM_MPF_NET_BUF_IP_MSS,
91 sizeof(T_NET_BUF_IP_MSS)
92 });
93#endif /* of #if defined(NUM_MPF_NET_BUF_IP_MSS) && NUM_MPF_NET_BUF_IP_MSS > 0 */
94
95#if defined(NUM_MPF_NET_BUF_1024) && NUM_MPF_NET_BUF_1024 > 0
96CRE_MPF(MPF_NET_BUF_1024, {
97 TA_TFIFO,
98 NUM_MPF_NET_BUF_1024,
99 sizeof(T_NET_BUF_1024)
100 });
101#endif /* of #if defined(NUM_MPF_NET_BUF_1024) && NUM_MPF_NET_BUF_1024 > 0 */
102
103#if defined(NUM_MPF_NET_BUF_IPV6_MMTU) && NUM_MPF_NET_BUF_IPV6_MMTU > 0
104CRE_MPF(MPF_NET_BUF_IPV6_MMTU, {
105 TA_TFIFO,
106 NUM_MPF_NET_BUF_IPV6_MMTU,
107 sizeof(T_NET_BUF_IPV6_MMTU)
108 });
109#endif /* of #if defined(NUM_MPF_NET_BUF_IPV6_MMTU) && NUM_MPF_NET_BUF_IPV6_MMTU > 0 */
110
111#if defined(NUM_MPF_NET_BUF_IF_PDU) && NUM_MPF_NET_BUF_IF_PDU > 0
112CRE_MPF(MPF_NET_BUF_IF_PDU, {
113 TA_TFIFO,
114 NUM_MPF_NET_BUF_IF_PDU,
115 sizeof(T_NET_BUF_IF_PDU)
116 });
117#endif /* of #if defined(NUM_MPF_NET_BUF_IF_PDU) && NUM_MPF_NET_BUF_IF_PDU > 0 */
118
119#if defined(NUM_MPF_NET_BUF4_REASSM) && NUM_MPF_NET_BUF4_REASSM > 0
120CRE_MPF(MPF_NET_BUF_REASSM, {
121 TA_TFIFO,
122 NUM_MPF_NET_BUF4_REASSM,
123 sizeof(T_NET_BUF4_REASSM)
124 });
125#endif /* of #if defined(NUM_MPF_NET_BUF4_REASSM) && NUM_MPF_NET_BUF4_REASSM > 0 */
126
127#if defined(NUM_MPF_NET_BUF6_REASSM) && NUM_MPF_NET_BUF6_REASSM > 0
128CRE_MPF(MPF_NET_BUF_REASSM, {
129 TA_TFIFO,
130 NUM_MPF_NET_BUF6_REASSM,
131 sizeof(T_NET_BUF6_REASSM)
132 });
133#endif /* of #if defined(NUM_MPF_NET_BUF6_REASSM) && NUM_MPF_NET_BUF6_REASSM > 0 */
134
135#if defined(NUM_MPF_NET_BUF6_65536) && NUM_MPF_NET_BUF6_65536 > 0
136CRE_MPF(MPF_NET_BUF6_65536, {
137 TA_TFIFO,
138 NUM_MPF_NET_BUF6_65536,
139 sizeof(T_NET_BUF6_65536)
140 });
141#endif /* of #if defined(NUM_MPF_NET_BUF6_65536) && NUM_MPF_NET_BUF6_65536 > 0 */
Note: See TracBrowser for help on using the repository browser.