comparison cdg-hybrid/sap/ip.pdf @ 212:e7a67accfad9

cdg-hybrid cdginc headers created
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 14 Oct 2016 21:52:58 +0000
parents
children
comparison
equal deleted inserted replaced
211:02269c474131 212:e7a67accfad9
1 ;********************************************************************************
2 ;*** File : ip.pdf
3 ;*** Creation : Wed Mar 11 09:58:12 CST 2009
4 ;*** XSLT Processor : Apache Software Foundation / http://xml.apache.org/xalan-j / supports XSLT-Ver: 1
5 ;*** Copyright : (c) Texas Instruments AG, Berlin Germany 2002
6 ;********************************************************************************
7 ;*** Document Type : Service Access Point Specification
8 ;*** Document Name : ip
9 ;*** Document No. : 8444.101.00.006
10 ;*** Document Date : 2003-08-30
11 ;*** Document Status: BEING_PROCESSED
12 ;*** Document Author: Jacek
13 ;********************************************************************************
14
15
16
17 PRAGMA SRC_FILE_TIME "Thu Nov 29 09:43:40 2007"
18 PRAGMA LAST_MODIFIED "2003-08-30"
19 PRAGMA ID_AND_VERSION "8444.101.00.006"
20
21
22
23
24
25
26 VALTAB VAL_err
27 VAL 0 IP_ADDR_NOERROR "no error"
28 VAL 1 IP_ADDR_NOROUTE "no route to destination"
29
30 VALTAB VAL_trans_prot
31 VAL 6 TCP_PROTOCOL "TCP protocol"
32 VAL 17 UDP_PROTOCOL "UDP protocol"
33 VAL 16 RAW_PROTOCOL "Chaos"
34
35
36
37
38 VAR dst_addr "destination address" L
39
40
41 VAR src_addr "source address" L
42
43
44 VAR err "error code" B
45
46 VAL @p_ip - VAL_err@
47
48 VAR trans_prot "transport protocol" B
49
50 VAL @p_ip - VAL_trans_prot@
51
52
53
54
55
56
57
58 ; IP_ADDR_REQ 0x3900
59 ; IP_ADDR_CNF 0x7900
60
61
62
63 PRIM IP_ADDR_REQ 0x3900
64 {
65 dst_addr ; destination address
66 trans_prot ; transport protocol
67 }
68
69
70
71
72
73
74 PRIM IP_ADDR_CNF 0x7900
75 {
76 src_addr ; source address
77 err ; error code
78 trans_prot ; transport protocol
79 }
80
81
82
83
84
85
86
87
88