dhcp.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. #ifndef _DHCP_H
  2. #define _DHCP_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: dhcp.h 4115 2012-04-12 21:06:13Z olereinhardt $
  59. */
  60. /*!
  61. * \addtogroup xgDhcp
  62. */
  63. /*@{*/
  64. #define DHCP_SERVERPORT 67
  65. #define DHCP_CLIENTPORT 68
  66. #define DHCPOPT_PAD 0
  67. #define DHCPOPT_NETMASK 1
  68. #define DHCPOPT_GATEWAY 3
  69. #define DHCPOPT_DNS 6
  70. #define DHCPOPT_HOSTNAME 12
  71. #define DHCPOPT_DOMAIN 15
  72. #define DHCPOPT_BROADCAST 28
  73. #define DHCPOPT_REQUESTIP 50
  74. #define DHCPOPT_LEASETIME 51
  75. #define DHCPOPT_MSGTYPE 53
  76. #define DHCPOPT_SID 54
  77. #define DHCPOPT_RENEWALTIME 58
  78. #define DHCPOPT_REBINDTIME 59
  79. #define DHCPOPT_END 255
  80. #define DHCP_DISCOVER 1
  81. #define DHCP_OFFER 2
  82. #define DHCP_REQUEST 3
  83. #define DHCP_DECLINE 4
  84. #define DHCP_ACK 5
  85. #define DHCP_NAK 6
  86. #define DHCP_RELEASE 7
  87. #define DHCP_INFORM 8
  88. /*
  89. * DHCP message structure according to RFC 2131.
  90. */
  91. typedef struct bootp {
  92. u_char bp_op; /*!< \brief Packet opcode type: 1=request, 2=reply */
  93. u_char bp_htype; /*!< \brief Hardware address type: 1=Ethernet */
  94. u_char bp_hlen; /*!< \brief Hardware address length: 6 for Ethernet */
  95. u_char bp_hops; /*!< \brief Gateway hops */
  96. u_long bp_xid; /*!< \brief Transaction ID */
  97. u_short bp_secs; /*!< \brief Seconds since boot began */
  98. u_short bp_flags; /*!< \brief RFC1532 broadcast, etc. */
  99. u_long bp_ciaddr; /*!< \brief Client IP address */
  100. u_long bp_yiaddr; /*!< \brief 'Your' IP address */
  101. u_long bp_siaddr; /*!< \brief Server IP address */
  102. u_long bp_giaddr; /*!< \brief Gateway IP address */
  103. u_char bp_chaddr[16]; /*!< \brief Client hardware address */
  104. char bp_sname[64]; /*!< \brief Server host name */
  105. char bp_file[128]; /*!< \brief Boot file name */
  106. u_long bp_cookie; /*!< \brief Cookie */
  107. u_char bp_options[312]; /*!< \brief Vendor-specific area */
  108. } BOOTPHDR;
  109. /*@}*/
  110. extern int DhcpQuery(void);
  111. #endif