arp.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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-2004 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 "types.h"
  61. #include "ether.h"
  62. /*!
  63. * \addtogroup xgStack
  64. */
  65. /*@{*/
  66. #define ARPHRD_ETHER 1 /*!< \brief ethernet hardware format */
  67. #define ARPOP_REQUEST 1 /*!< \brief request to resolve address */
  68. #define ARPOP_REPLY 2 /*!< \brief response to previous request */
  69. /*!
  70. * \typedef ETHERARP
  71. * \brief Ethernet ARP protocol type.
  72. */
  73. typedef struct ether_arp {
  74. u_short arp_hrd; /*!< \brief Format of hardware address.
  75. * Nut/Net supports ARPHRD_ETHER only.
  76. */
  77. u_short arp_pro; /*!< \brief Format of protocol address.
  78. * Only ETHERTYPE_IP is supported by Nut/Net.
  79. */
  80. u_char arp_hln; /*!< \brief Length of hardware address. */
  81. u_char arp_pln; /*!< \brief Length of protocol address. */
  82. u_short arp_op; /*!< \brief ARP operation.
  83. * May be either ARPOP_REQUEST or ARPOP_REPLY.
  84. */
  85. u_char arp_sha[6]; /*!< \brief Source hardware address. */
  86. u_long arp_spa; /*!< \brief Source protocol address. */
  87. u_char arp_tha[6]; /*!< \brief Target hardware address. */
  88. u_long arp_tpa; /*!< \brief Target protocol address. */
  89. } ETHERARP;
  90. typedef struct {
  91. ETHERHDR eth_hdr;
  92. ETHERARP eth_arp;
  93. } ARPFRAME;
  94. extern ARPFRAME arpframe;
  95. typedef struct {
  96. u_long ae_ip; /*!< \brief IP address. */
  97. u_char ae_ha[6]; /*!< \brief Hardware address. */
  98. } ARPENTRY;
  99. /*@}*/
  100. extern int ArpRequest(u_long ip, u_char *mac);
  101. extern void ArpRespond(void);
  102. #endif