comparison src/g23m-fad/tcpip/rnet/rnet_dti_info.h @ 1:fa8dc04885d8

src/g23m-*: import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Oct 2020 06:25:50 +0000
parents
children
comparison
equal deleted inserted replaced
0:4e78acac3d88 1:fa8dc04885d8
1 /*
2 +------------------------------------------------------------------------------
3 | File: rnet_dti_info.h
4 +------------------------------------------------------------------------------
5 | Copyright 2003 Texas Instruments Berlin, AG
6 | All rights reserved.
7 |
8 | This file is confidential and a trade secret of Texas
9 | Instruments Berlin, AG
10 | The receipt of or possession of this file does not convey
11 | any rights to reproduce or disclose its contents or to
12 | manufacture, use, or sell anything it may describe, in
13 | whole, or in part, without the specific written consent of
14 | Texas Instruments Berlin, AG.
15 +-----------------------------------------------------------------------------
16 | Purpose : DTI point-to-point network interface for RNET_RT,
17 | Custom information
18 +-----------------------------------------------------------------------------
19 */
20
21 /* derived from... */
22 /**
23 * @file rnet_atp_info.h
24 *
25 * ATP point-to-point network interface for RNET_RT
26 * Custom information
27 *
28 * @author Regis Feneon
29 * @version 0.1
30 */
31
32 /*
33 * $Id: rnet_atp_info.h,v 1.1 2002/09/06 08:39:52 rf Exp $
34 * $Name: $
35 *
36 * History:
37 *
38 * Date Author Modification
39 * --------------------------------------------------
40 * 6/9/2002 Regis Feneon Create
41 *
42 */
43
44 #include "rnet_cfg.h"
45 #ifdef RNET_CFG_REAL_TRANSPORT
46
47 #ifndef __RNET_RT_DTI_INFO_H_
48 #define __RNET_RT_DTI_INFO_H_
49
50 #include "rnet_ip_addr.h"
51 #include "dcfg_api.h"
52
53 #define RNET_RT_DTI_MTU 1500
54
55 /*
56 * DTI custom information
57 */
58 typedef struct
59 {
60 T_RNET_IP_ADDR local_addr ; /* Local (MS) IP address. */
61 T_RNET_IP_ADDR dest_addr ; /* Destination (GGSN) IP address, this is also
62 * the default router. */
63 UINT16 mtu ; /* Maximum transmission unit. */
64 T_RNET_IP_ADDR dns1 ; /* Primary DNS server address. */
65 T_RNET_IP_ADDR dns2 ; /* Secondary DNS server address. */
66 T_APPLI_USER IPU_id ; /* Identity of the user of the channel. */
67 }
68 T_RNET_RT_DTI_CUSTOM_INFO ;
69
70 #endif /* __RNET_RT_DTI_INFO_H_ */
71 #endif /* RNET_CFG_REAL_TRANSPORT */
72
73 /* EOF */