Changes in uspace/lib/net/include/icmp_header.h [753bca3:88a1bb9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/icmp_header.h
r753bca3 r88a1bb9 27 27 */ 28 28 29 /** @addtogroup icmp29 /** @addtogroup libnet 30 30 * @{ 31 31 */ 32 32 33 33 /** @file 34 * 35 * Based on the RFC~792.34 * ICMP header definition. 35 * Based on the RFC 792. 36 36 */ 37 37 38 #ifndef __NET_ICMP_HEADER_H__39 #define __NET_ICMP_HEADER_H__38 #ifndef LIBNET_ICMP_HEADER_H_ 39 #define LIBNET_ICMP_HEADER_H_ 40 40 41 41 #include <sys/types.h> … … 44 44 #include <net/icmp_codes.h> 45 45 46 /** ICMP header size in bytes. 47 */ 48 #define ICMP_HEADER_SIZE sizeof(icmp_header_t) 46 /** ICMP header size in bytes. */ 47 #define ICMP_HEADER_SIZE sizeof(icmp_header_t) 49 48 50 49 /** Type definition of the echo specific data. 51 * 50 * @see icmp_echo 52 51 */ 53 typedef struct icmp_echo 52 typedef struct icmp_echo icmp_echo_t; 54 53 55 /** Type definition of the echo specific data pointer. 56 * @see icmp_echo 57 */ 58 typedef icmp_echo_t * icmp_echo_ref; 59 60 /** Echo specific data. 61 */ 62 struct icmp_echo{ 63 /** Message idintifier. 64 */ 54 /** Echo specific data. */ 55 struct icmp_echo { 56 /** Message idintifier. */ 65 57 icmp_param_t identifier; 66 /** Message sequence number. 67 */ 58 /** Message sequence number. */ 68 59 icmp_param_t sequence_number; 69 60 } __attribute__ ((packed)); 70 61 71 62 /** Type definition of the internet control message header. 72 * 63 * @see icmp_header 73 64 */ 74 typedef struct icmp_header 65 typedef struct icmp_header icmp_header_t; 75 66 76 /** Type definition of the internet control message header pointer. 77 * @see icmp_header 78 */ 79 typedef icmp_header_t * icmp_header_ref; 80 81 /** Internet control message header. 82 */ 83 struct icmp_header{ 84 /** The type of the message. 85 */ 67 /** Internet control message header. */ 68 struct icmp_header { 69 /** The type of the message. */ 86 70 uint8_t type; 87 /** The error code for the datagram reported by the ICMP message. 88 * The interpretation is dependent on the message type. 71 72 /** 73 * The error code for the datagram reported by the ICMP message. 74 * The interpretation is dependent on the message type. 89 75 */ 90 76 uint8_t code; 91 /** The checksum is the 16-bit ones's complement of the one's complement sum of the ICMP message starting with the ICMP Type. 92 * For computing the checksum, the checksum field should be zero. 93 * If the checksum does not match the contents, the datagram is discarded. 77 78 /** 79 * The checksum is the 16-bit ones's complement of the one's complement 80 * sum of the ICMP message starting with the ICMP Type. For computing 81 * the checksum, the checksum field should be zero. If the checksum does 82 * not match the contents, the datagram is discarded. 94 83 */ 95 84 uint16_t checksum; 96 /** Message specific data. 97 */ 98 union{ 99 /** Echo specific data. 100 */ 85 86 /** Message specific data. */ 87 union { 88 /** Echo specific data. */ 101 89 icmp_echo_t echo; 102 /** Proposed gateway value. 103 */ 90 /** Proposed gateway value. */ 104 91 in_addr_t gateway; 105 /** Fragmentation needed specific data. 106 */ 107 struct{ 108 /** Reserved field. 109 * Must be zero. 110 */ 92 93 /** Fragmentation needed specific data. */ 94 struct { 95 /** Reserved field. Must be zero. */ 111 96 icmp_param_t reserved; 112 /** Proposed MTU. 113 */ 97 /** Proposed MTU. */ 114 98 icmp_param_t mtu; 115 99 } frag; 116 /** Parameter problem specific data. 117 */ 118 struct{ 119 /** Problem pointer. 120 */ 100 101 /** Parameter problem specific data. */ 102 struct { 103 /** Problem pointer. */ 121 104 icmp_param_t pointer; 122 /** Reserved field. 123 * Must be zero. 124 */ 105 /** Reserved field. Must be zero. */ 125 106 icmp_param_t reserved; 126 107 } param;
Note:
See TracChangeset
for help on using the changeset viewer.