comparison src/g23m-fad/tcpip/tcpip_int.h @ 174:90eb61ecd093

src/g23m-fad: initial import from TCS3.2/LoCosto
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 12 Oct 2016 05:40:46 +0000
parents
children
comparison
equal deleted inserted replaced
173:bf64d785238a 174:90eb61ecd093
1 /*
2 +------------------------------------------------------------------------------
3 | File: tcpip_int.h
4 +------------------------------------------------------------------------------
5 | Copyright 2002 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 : export declarations for use by the rnet_rt_*.c files
17 +-----------------------------------------------------------------------------
18 */
19
20 /* We don't just include tcpip.h in, for instance, rnet_rt_ng_ifinput.c,
21 * because it needs a lot of other includes.
22 */
23
24 #ifndef TCPIP_INT_H
25 #define TCPIP_INT_H
26
27 /*==== INCLUDES =============================================================*/
28
29 /*==== CONSTS ===============================================================*/
30
31 /*==== TYPES =================================================================*/
32
33 /*==== EXPORTS ===============================================================*/
34
35 /** Send a message to self.
36 *
37 * @param msg_p pointer to message
38 * @param msg_id message identification
39 */
40 void tcpip_send_internal_ind(unsigned long msg_p, unsigned long msg_id) ;
41
42 /** Callback for rnet_get_host_info().
43 *
44 * @param
45 * @return
46 */
47 void tcpip_hostinfo_callback(void *msg) ;
48
49
50 #endif /* !TCPIP_INT_H */
51