summaryrefslogtreecommitdiff
path: root/lib/dhcp.rb
blob: f27577fbc5a0e09c5a3bd0d74507b83f3012d39f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
=begin
**
** dhcp.rb
** 31/OCT/2007
** ETD-Software
**  - Daniel Martin Gomez <etd[-at-]nomejortu.com>
**
** Desc:
**   This package provides a set of classes to work with the DHCP protocol. They 
** provide low level access to all the fields and internals of the protocol.
** 
** See the provided rdoc comments for further information.
**
** More information in:
**   - rfc2131: Dynamic Host Configuration Protocol
**   - rfc2132: DHCP Options and BOOTP Vendor Extensions
**   - rfc2563: DHCP Option to Disable Stateless Auto-Configuration in 
**              IPv4 Clients
**   - rfc4578: DHCP Options for the Intel Preboot eXecution Environment (PXE)
**   - rfc4702: The DHCP Client Fully Qualified Domain Name (FQDN) Option
**
** Version:
**  v1.0 [31/October/2007]: first released
**
** License:
**    This program is free software: you can redistribute it and/or modify
**  it under the terms of the GNU General Public License as published by
**  the Free Software Foundation, either version 3 of the License, or
**  (at your option) any later version.
**
**  This program is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
**  GNU General Public License for more details.
**
**  You should have received a copy of the GNU General Public License
**  along with this program.  If not, see <http://www.gnu.org/licenses/>.
**
=end

# constants defining the values in the different fields of the protocols
require 'dhcp/constants'

# DHCP options as defined in rfc2132 and rfc2563
require 'dhcp/options'

# DHCP messages as defined in rfc2131
require 'dhcp/core'