Changeset e9caf47 in mainline for uspace/srv/net/il/arp/arp_header.h
- Timestamp:
- 2010-10-27T23:06:48Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e8199d77
- Parents:
- 0a3fbc7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/arp/arp_header.h
r0a3fbc7 re9caf47 32 32 33 33 /** @file 34 * 35 * Based on the RFC~826.34 * ARP protocol header. 35 * Based on the RFC 826. 36 36 */ 37 37 38 #ifndef __NET_ARP_HEADER_H__39 #define __NET_ARP_HEADER_H__38 #ifndef NET_ARP_HEADER_H_ 39 #define NET_ARP_HEADER_H_ 40 40 41 41 #include <sys/types.h> 42 42 43 43 /** Type definition of an ARP protocol header. 44 * 44 * @see arp_header 45 45 */ 46 typedef struct arp_header 46 typedef struct arp_header arp_header_t; 47 47 48 48 /** Type definition of an ARP protocol header pointer. 49 * 49 * @see arp_header 50 50 */ 51 typedef arp_header_t * 51 typedef arp_header_t *arp_header_ref; 52 52 53 /** ARP protocol header. 54 */ 55 struct arp_header{ 56 /** Hardware type identifier.57 * 53 /** ARP protocol header. */ 54 struct arp_header { 55 /** 56 * Hardware type identifier. 57 * @see hardware.h 58 58 */ 59 59 uint16_t hardware; 60 /** Protocol identifier.61 */60 61 /** Protocol identifier. */ 62 62 uint16_t protocol; 63 /** Hardware address length in bytes. 64 */ 63 /** Hardware address length in bytes. */ 65 64 uint8_t hardware_length; 66 /** Protocol address length in bytes. 67 */ 65 /** Protocol address length in bytes. */ 68 66 uint8_t protocol_length; 69 /** ARP packet type. 70 * @see arp_oc.h 67 68 /** 69 * ARP packet type. 70 * @see arp_oc.h 71 71 */ 72 72 uint16_t operation;
Note:
See TracChangeset
for help on using the changeset viewer.