FreeCalypso > hg > freecalypso-citrine
comparison cdg/sap/udp.pdf @ 0:75a11d740a02
initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 09 Jun 2016 00:02:41 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:75a11d740a02 |
|---|---|
| 1 ;******************************************************************************** | |
| 2 ;*** File : udp.pdf | |
| 3 ;*** Creation : Wed Mar 11 09:58:55 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 : udp | |
| 9 ;*** Document No. : 8444.100.00.006 | |
| 10 ;*** Document Date : 2003-08-26 | |
| 11 ;*** Document Status: BEING_PROCESSED | |
| 12 ;*** Document Author: JK | |
| 13 ;******************************************************************************** | |
| 14 | |
| 15 | |
| 16 | |
| 17 PRAGMA SRC_FILE_TIME "Thu Nov 29 09:56:22 2007" | |
| 18 PRAGMA LAST_MODIFIED "2003-08-26" | |
| 19 PRAGMA ID_AND_VERSION "8444.100.00.006" | |
| 20 | |
| 21 | |
| 22 | |
| 23 | |
| 24 | |
| 25 | |
| 26 VALTAB VAL_port | |
| 27 VAL 0 UDP_AUTOASSIGN_PORT "UDP must assign a free port number" | |
| 28 | |
| 29 VALTAB VAL_err | |
| 30 VAL 0 UDP_BIND_NOERROR "no error" | |
| 31 VAL 1 UDP_BIND_PORTINUSE "port already in use" | |
| 32 VAL 2 UDP_BIND_UDPDOWN "udp is deactivated" | |
| 33 | |
| 34 | |
| 35 | |
| 36 | |
| 37 VAR port "destination port" S | |
| 38 | |
| 39 VAL @p_udp - VAL_port@ | |
| 40 | |
| 41 VAR err "error code" B | |
| 42 | |
| 43 VAL @p_udp - VAL_err@ | |
| 44 | |
| 45 VAR dst_port "destination port" S | |
| 46 | |
| 47 | |
| 48 VAR src_port "source port" S | |
| 49 | |
| 50 | |
| 51 VAR err_msg "error message" B | |
| 52 | |
| 53 | |
| 54 VAR src_addr "source address" L | |
| 55 | |
| 56 | |
| 57 VAR dst_addr "destination address" L | |
| 58 | |
| 59 | |
| 60 | |
| 61 | |
| 62 | |
| 63 | |
| 64 | |
| 65 | |
| 66 ; UDP_BIND_REQ 0x80000046 | |
| 67 ; UDP_BIND_CNF 0x80004046 | |
| 68 ; UDP_CLOSEPORT_REQ 0x80010046 | |
| 69 ; UDP_CLOSEPORT_CNF 0x80014046 | |
| 70 ; UDP_ERROR_IND 0x80024046 | |
| 71 ; UDP_ERROR_RES 0x80020046 | |
| 72 ; UDP_SHUTDOWN_IND 0x80034046 | |
| 73 ; UDP_SHUTDOWN_RES 0x80030046 | |
| 74 | |
| 75 | |
| 76 | |
| 77 PRIM UDP_BIND_REQ 0x80000046 | |
| 78 { | |
| 79 port ; port | |
| 80 } | |
| 81 | |
| 82 | |
| 83 | |
| 84 | |
| 85 | |
| 86 | |
| 87 PRIM UDP_BIND_CNF 0x80004046 | |
| 88 { | |
| 89 port ; port | |
| 90 err ; error code | |
| 91 } | |
| 92 | |
| 93 | |
| 94 | |
| 95 | |
| 96 | |
| 97 | |
| 98 PRIM UDP_CLOSEPORT_REQ 0x80010046 | |
| 99 { | |
| 100 port ; port | |
| 101 } | |
| 102 | |
| 103 | |
| 104 | |
| 105 | |
| 106 | |
| 107 | |
| 108 PRIM UDP_CLOSEPORT_CNF 0x80014046 | |
| 109 { | |
| 110 } | |
| 111 | |
| 112 | |
| 113 | |
| 114 | |
| 115 | |
| 116 | |
| 117 PRIM UDP_ERROR_IND 0x80024046 | |
| 118 { | |
| 119 dst_port ; Destination port | |
| 120 src_port ; source port | |
| 121 err_msg ; error message | |
| 122 src_addr ; source address | |
| 123 dst_addr ; Destination address | |
| 124 } | |
| 125 | |
| 126 | |
| 127 | |
| 128 | |
| 129 | |
| 130 | |
| 131 PRIM UDP_ERROR_RES 0x80020046 | |
| 132 { | |
| 133 } | |
| 134 | |
| 135 | |
| 136 | |
| 137 | |
| 138 | |
| 139 | |
| 140 PRIM UDP_SHUTDOWN_IND 0x80034046 | |
| 141 { | |
| 142 } | |
| 143 | |
| 144 | |
| 145 | |
| 146 | |
| 147 | |
| 148 | |
| 149 PRIM UDP_SHUTDOWN_RES 0x80030046 | |
| 150 { | |
| 151 } | |
| 152 | |
| 153 | |
| 154 | |
| 155 | |
| 156 | |
| 157 | |
| 158 | |
| 159 | |
| 160 |
