arp.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #ifndef _ARP_H
  2. #define _ARP_H
  3. /*
  4. * Copyright (c) 1983, 1993 by The Regents of the University of California
  5. * Copyright (C) 2001-2007 by egnite Software GmbH
  6. * Copyright (C) 2010 by egnite GmbH
  7. *
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. *
  14. * 1. Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in the
  18. * documentation and/or other materials provided with the distribution.
  19. * 3. Neither the name of the copyright holders nor the names of
  20. * contributors may be used to endorse or promote products derived
  21. * from this software without specific prior written permission.
  22. *
  23. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  24. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  25. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  26. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  27. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  28. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  29. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  30. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  31. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  32. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  33. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34. * SUCH DAMAGE.
  35. *
  36. * For additional information see http://www.ethernut.de/
  37. *
  38. * -
  39. * Portions Copyright (c) 1993 by Digital Equipment Corporation.
  40. *
  41. * Permission to use, copy, modify, and distribute this software for any
  42. * purpose with or without fee is hereby granted, provided that the above
  43. * copyright notice and this permission notice appear in all copies, and that
  44. * the name of Digital Equipment Corporation not be used in advertising or
  45. * publicity pertaining to distribution of the document or software without
  46. * specific, written prior permission.
  47. *
  48. * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
  49. * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
  50. * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
  51. * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  52. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  53. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  54. * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  55. * SOFTWARE.
  56. */
  57. /*
  58. * $Id: arp.h 4115 2012-04-12 21:06:13Z olereinhardt $
  59. */
  60. #include "ether.h"
  61. /*!
  62. * \addtogroup xgStack
  63. */
  64. /*@{*/
  65. #define ARPHRD_ETHER 0x0100 /*!< \brief Ethernet hardware format in network byte order. */
  66. #define ARPOP_REQUEST 0x0100 /*!< \brief Request to resolve address in network byte order. */
  67. #define ARPOP_REPLY 0x0200 /*!< \brief Response to previous request in network byte order. */
  68. /*!
  69. * \typedef ETHERARP
  70. * \brief Ethernet ARP protocol type.
  71. */
  72. typedef struct __attribute__ ((packed)) ether_arp {
  73. unsigned short arp_hrd; /*!< \brief Format of hardware address.
  74. * Nut/Net supports ARPHRD_ETHER only.
  75. */
  76. unsigned short arp_pro; /*!< \brief Format of protocol address.
  77. * Only ETHERTYPE_IP is supported by Nut/Net.
  78. */
  79. unsigned char arp_hln; /*!< \brief Length of hardware address. */
  80. unsigned char arp_pln; /*!< \brief Length of protocol address. */
  81. unsigned short arp_op; /*!< \brief ARP operation.
  82. * May be either ARPOP_REQUEST or ARPOP_REPLY.
  83. */
  84. unsigned char arp_sha[6]; /*!< \brief Source hardware address. */
  85. unsigned long arp_spa; /*!< \brief Source protocol address. */
  86. unsigned char arp_tha[6]; /*!< \brief Target hardware address. */
  87. unsigned long arp_tpa; /*!< \brief Target protocol address. */
  88. } ETHERARP;
  89. extern ETHERHDR arpheader;
  90. extern ETHERARP arpframe;
  91. typedef struct {
  92. unsigned long ae_ip; /*!< \brief IP address. */
  93. unsigned char ae_ha[6]; /*!< \brief Hardware address. */
  94. } ARPENTRY;
  95. /*@}*/
  96. extern int ArpRequest(unsigned long ip, unsigned char *mac);
  97. extern void ArpRespond(void);
  98. #endif