Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/il/arp/arp_header.h

    re9caf47 raadf01e  
    3232
    3333/** @file
    34  * ARP protocol header.
    35  * Based on the RFC 826.
     34 *  ARP protocol header.
     35 *  Based on the RFC~826.
    3636 */
    3737
    38 #ifndef NET_ARP_HEADER_H_
    39 #define NET_ARP_HEADER_H_
     38#ifndef __NET_ARP_HEADER_H__
     39#define __NET_ARP_HEADER_H__
    4040
    4141#include <sys/types.h>
    4242
    4343/** Type definition of an ARP protocol header.
    44  * @see arp_header
     44 *  @see arp_header
    4545 */
    46 typedef struct arp_header arp_header_t;
     46typedef struct arp_header       arp_header_t;
    4747
    4848/** Type definition of an ARP protocol header pointer.
    49  * @see arp_header
     49 *  @see arp_header
    5050 */
    51 typedef arp_header_t *arp_header_ref;
     51typedef arp_header_t *          arp_header_ref;
    5252
    53 /** ARP protocol header. */
    54 struct arp_header {
    55         /**
    56          * Hardware type identifier.
    57          * @see hardware.h
     53/** ARP protocol header.
     54 */
     55struct arp_header{
     56        /** Hardware type identifier.
     57         *  @see hardware.h
    5858         */
    5959        uint16_t hardware;
    60        
    61         /** Protocol identifier. */
     60        /** Protocol identifier.
     61        */
    6262        uint16_t protocol;
    63         /** Hardware address length in bytes. */
     63        /** Hardware address length in bytes.
     64         */
    6465        uint8_t hardware_length;
    65         /** Protocol address length in bytes. */
     66        /** Protocol address length in bytes.
     67         */
    6668        uint8_t protocol_length;
    67        
    68         /**
    69          * ARP packet type.
    70          * @see arp_oc.h
     69        /** ARP packet type.
     70         *  @see arp_oc.h
    7171         */
    7272        uint16_t operation;
Note: See TracChangeset for help on using the changeset viewer.