comparison src/g23m-fad/tcpip/rnet/rnet_rt/rnet_rt_cfg.h @ 1:d393cd9bb723

src/g23m-*: initial import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jul 2018 04:40:46 +0000
parents
children
comparison
equal deleted inserted replaced
0:b6a5e36de839 1:d393cd9bb723
1 /**
2 * @file rnet_rt_cfg.h
3 *
4 * Configuration definitions for the RNET_RT instance.
5 *
6 * @author Jose Yp-Tcha (j-yp-tcha@ti.com)
7 * @version 0.1
8 */
9
10 /*
11 * History:
12 *
13 * Date Author Modification
14 * -------------------------------------------------------------------
15 * 3/19/2002 Jose Yp-Tcha (j-yp-tcha@ti.com) Create.
16 * 3/29/2002 Regis Feneon NexGenIP configuration
17 * 10/28/2002 Regis Feneon added RNET_RT_ETH_SUPPORT
18 *
19 * (C) Copyright 2002 by TI, All Rights Reserved
20 */
21
22 #include "rnet_cfg.h"
23 #ifdef RNET_CFG_REAL_TRANSPORT
24
25 #ifndef __RNET_RT_CFG_H_
26 #define __RNET_RT_CFG_H_
27
28 #include "rv_general.h" /* General Riviera definitions. */
29
30 /**
31 * NexGenIP configuration
32 */
33
34 /** number of socket descriptors */
35 #define RNET_RT_SOCK_MAX 32
36
37 /** maximum number of pending connections on a listening socket */
38 #define RNET_RT_SOCK_LISTEN_MAX 4
39
40 /** number of hosts in ARP table */
41 #define RNET_RT_ARP_MAX 12
42
43 /**
44 * NexGenRESOLV configuration
45 */
46
47 /** maximum number of simultaneous queries */
48 #define RNET_RT_RESOLV_QUERY_MAX 4
49
50 /** size of cache */
51 #define RNET_RT_RESOLV_CACHE_MAX 8
52
53 /** query timeout */
54 #define RNET_RT_RESOLV_TIMEOUT 1000
55
56 /** optional network interfaces */
57 //#define RNET_RT_LOOPBACK_SUPPORT
58
59 #define RNET_RT_DTI_SUPPORT
60 /* #define RNET_RT_ATP_SUPPORT */
61 //#define RNET_RT_ETH_SUPPORT
62
63 #endif /* __RNET_RT_CFG_H_ */
64
65 #endif /* ifdef RNET_CFG_REAL_TRANSPORT */
66