FreeCalypso > hg > fc-tourmaline
comparison cdg-hybrid/cdginc/p_udp.h @ 14:35f7a1dc9f7d
cdg-hybrid: import from Magnetite
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Fri, 16 Oct 2020 07:15:38 +0000 | 
| parents | |
| children | 
   comparison
  equal
  deleted
  inserted
  replaced
| 13:83146a4ae927 | 14:35f7a1dc9f7d | 
|---|---|
| 1 /* | |
| 2 +--------------------------------------------------------------------------+ | |
| 3 | PROJECT : PROTOCOL STACK | | |
| 4 | FILE : p_udp.h | | |
| 5 | SOURCE : "sap\udp.pdf" | | |
| 6 | LastModified : "2003-08-26" | | |
| 7 | IdAndVersion : "8444.100.00.006" | | |
| 8 | SrcFileTime : "Thu Nov 29 09:56:22 2007" | | |
| 9 | Generated by CCDGEN_2.5.5A on Fri Oct 14 21:41:52 2016 | | |
| 10 | !!DO NOT MODIFY!!DO NOT MODIFY!!DO NOT MODIFY!! | | |
| 11 +--------------------------------------------------------------------------+ | |
| 12 */ | |
| 13 | |
| 14 /* PRAGMAS | |
| 15 * PREFIX : NONE | |
| 16 * COMPATIBILITY_DEFINES : NO (require PREFIX) | |
| 17 * ALWAYS_ENUM_IN_VAL_FILE: NO | |
| 18 * ENABLE_GROUP: NO | |
| 19 * CAPITALIZE_TYPENAME: NO | |
| 20 */ | |
| 21 | |
| 22 | |
| 23 #ifndef P_UDP_H | |
| 24 #define P_UDP_H | |
| 25 | |
| 26 | |
| 27 #define CDG_ENTER__P_UDP_H | |
| 28 | |
| 29 #define CDG_ENTER__FILENAME _P_UDP_H | |
| 30 #define CDG_ENTER__P_UDP_H__FILE_TYPE CDGINC | |
| 31 #define CDG_ENTER__P_UDP_H__LAST_MODIFIED _2003_08_26 | |
| 32 #define CDG_ENTER__P_UDP_H__ID_AND_VERSION _8444_100_00_006 | |
| 33 | |
| 34 #define CDG_ENTER__P_UDP_H__SRC_FILE_TIME _Thu_Nov_29_09_56_22_2007 | |
| 35 | |
| 36 #include "CDG_ENTER.h" | |
| 37 | |
| 38 #undef CDG_ENTER__P_UDP_H | |
| 39 | |
| 40 #undef CDG_ENTER__FILENAME | |
| 41 | |
| 42 | |
| 43 #include "p_udp.val" | |
| 44 | |
| 45 | |
| 46 /* | |
| 47 * End of substructure section, begin of primitive definition section | |
| 48 */ | |
| 49 | |
| 50 #ifndef __T_UDP_BIND_REQ__ | |
| 51 #define __T_UDP_BIND_REQ__ | |
| 52 /* | |
| 53 * | |
| 54 * CCDGEN:WriteStruct_Count==3144 | |
| 55 */ | |
| 56 typedef struct | |
| 57 { | |
| 58 U16 port; /*< 0: 2> destination port */ | |
| 59 U8 _align0; /*< 2: 1> alignment */ | |
| 60 U8 _align1; /*< 3: 1> alignment */ | |
| 61 } T_UDP_BIND_REQ; | |
| 62 #endif | |
| 63 | |
| 64 #ifndef __T_UDP_BIND_CNF__ | |
| 65 #define __T_UDP_BIND_CNF__ | |
| 66 /* | |
| 67 * | |
| 68 * CCDGEN:WriteStruct_Count==3145 | |
| 69 */ | |
| 70 typedef struct | |
| 71 { | |
| 72 U16 port; /*< 0: 2> destination port */ | |
| 73 U8 err; /*< 2: 1> error code */ | |
| 74 U8 _align0; /*< 3: 1> alignment */ | |
| 75 } T_UDP_BIND_CNF; | |
| 76 #endif | |
| 77 | |
| 78 #ifndef __T_UDP_CLOSEPORT_REQ__ | |
| 79 #define __T_UDP_CLOSEPORT_REQ__ | |
| 80 /* | |
| 81 * | |
| 82 * CCDGEN:WriteStruct_Count==3146 | |
| 83 */ | |
| 84 typedef struct | |
| 85 { | |
| 86 U16 port; /*< 0: 2> destination port */ | |
| 87 U8 _align0; /*< 2: 1> alignment */ | |
| 88 U8 _align1; /*< 3: 1> alignment */ | |
| 89 } T_UDP_CLOSEPORT_REQ; | |
| 90 #endif | |
| 91 | |
| 92 #ifndef __T_UDP_CLOSEPORT_CNF__ | |
| 93 #define __T_UDP_CLOSEPORT_CNF__ | |
| 94 /* | |
| 95 * | |
| 96 * CCDGEN:WriteStruct_Count==3147 | |
| 97 */ | |
| 98 typedef struct | |
| 99 { | |
| 100 U8 dummy; /*< 0: 1> no parameters */ | |
| 101 } T_UDP_CLOSEPORT_CNF; | |
| 102 #endif | |
| 103 | |
| 104 #ifndef __T_UDP_ERROR_IND__ | |
| 105 #define __T_UDP_ERROR_IND__ | |
| 106 /* | |
| 107 * | |
| 108 * CCDGEN:WriteStruct_Count==3148 | |
| 109 */ | |
| 110 typedef struct | |
| 111 { | |
| 112 U16 dst_port; /*< 0: 2> destination port */ | |
| 113 U16 src_port; /*< 2: 2> source port */ | |
| 114 U8 err_msg; /*< 4: 1> error message */ | |
| 115 U8 _align0; /*< 5: 1> alignment */ | |
| 116 U8 _align1; /*< 6: 1> alignment */ | |
| 117 U8 _align2; /*< 7: 1> alignment */ | |
| 118 U32 src_addr; /*< 8: 4> source address */ | |
| 119 U32 dst_addr; /*< 12: 4> destination address */ | |
| 120 } T_UDP_ERROR_IND; | |
| 121 #endif | |
| 122 | |
| 123 #ifndef __T_UDP_ERROR_RES__ | |
| 124 #define __T_UDP_ERROR_RES__ | |
| 125 /* | |
| 126 * | |
| 127 * CCDGEN:WriteStruct_Count==3149 | |
| 128 */ | |
| 129 typedef struct | |
| 130 { | |
| 131 U8 dummy; /*< 0: 1> no parameters */ | |
| 132 } T_UDP_ERROR_RES; | |
| 133 #endif | |
| 134 | |
| 135 #ifndef __T_UDP_SHUTDOWN_IND__ | |
| 136 #define __T_UDP_SHUTDOWN_IND__ | |
| 137 /* | |
| 138 * | |
| 139 * CCDGEN:WriteStruct_Count==3150 | |
| 140 */ | |
| 141 typedef struct | |
| 142 { | |
| 143 U8 dummy; /*< 0: 1> no parameters */ | |
| 144 } T_UDP_SHUTDOWN_IND; | |
| 145 #endif | |
| 146 | |
| 147 #ifndef __T_UDP_SHUTDOWN_RES__ | |
| 148 #define __T_UDP_SHUTDOWN_RES__ | |
| 149 /* | |
| 150 * | |
| 151 * CCDGEN:WriteStruct_Count==3151 | |
| 152 */ | |
| 153 typedef struct | |
| 154 { | |
| 155 U8 dummy; /*< 0: 1> no parameters */ | |
| 156 } T_UDP_SHUTDOWN_RES; | |
| 157 #endif | |
| 158 | |
| 159 | |
| 160 #include "CDG_LEAVE.h" | |
| 161 | |
| 162 | |
| 163 #endif | 
