summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyonbori <syonbori+github@mail.syonbori.net>2011-07-25 21:31:21 +0900
committersyonbori <syonbori+github@mail.syonbori.net>2011-07-25 21:41:54 +0900
commitcd83c5db5297270452af5bd5bc52e61131015c1d (patch)
tree2c0ca99a6565fc31af4b12dc281bcc7793e20306
parent0648df98d309e9eb382fe34ec80917b633d2b9db (diff)
downloadnet-dhcp-ruby-cd83c5db5297270452af5bd5bc52e61131015c1d.tar.gz
change dir structure
-rw-r--r--lib/net/Rakefile.rb (renamed from lib/Rakefile.rb)0
-rw-r--r--lib/net/dhcp.rb (renamed from lib/dhcp.rb)12
-rw-r--r--lib/net/dhcp/constants.rb (renamed from lib/dhcp/constants.rb)0
-rw-r--r--lib/net/dhcp/core.rb (renamed from lib/dhcp/core.rb)0
-rw-r--r--lib/net/dhcp/options.rb (renamed from lib/dhcp/options.rb)0
-rw-r--r--lib/net/dhcp/oui.txt (renamed from lib/dhcp/oui.txt)0
-rw-r--r--lib/net/main.rb (renamed from lib/main.rb)0
7 files changed, 6 insertions, 6 deletions
diff --git a/lib/Rakefile.rb b/lib/net/Rakefile.rb
index 9348669..9348669 100644
--- a/lib/Rakefile.rb
+++ b/lib/net/Rakefile.rb
diff --git a/lib/dhcp.rb b/lib/net/dhcp.rb
index f27577f..0227a0f 100644
--- a/lib/dhcp.rb
+++ b/lib/net/dhcp.rb
@@ -6,15 +6,15 @@
** - Daniel Martin Gomez <etd[-at-]nomejortu.com>
**
** Desc:
-** This package provides a set of classes to work with the DHCP protocol. They
+** 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
+** - 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
@@ -39,10 +39,10 @@
=end
# constants defining the values in the different fields of the protocols
-require 'dhcp/constants'
+require 'net/dhcp/constants'
# DHCP options as defined in rfc2132 and rfc2563
-require 'dhcp/options'
+require 'net/dhcp/options'
# DHCP messages as defined in rfc2131
-require 'dhcp/core' \ No newline at end of file
+require 'net/dhcp/core'
diff --git a/lib/dhcp/constants.rb b/lib/net/dhcp/constants.rb
index d7a578c..d7a578c 100644
--- a/lib/dhcp/constants.rb
+++ b/lib/net/dhcp/constants.rb
diff --git a/lib/dhcp/core.rb b/lib/net/dhcp/core.rb
index 5ed844c..5ed844c 100644
--- a/lib/dhcp/core.rb
+++ b/lib/net/dhcp/core.rb
diff --git a/lib/dhcp/options.rb b/lib/net/dhcp/options.rb
index f66e7b4..f66e7b4 100644
--- a/lib/dhcp/options.rb
+++ b/lib/net/dhcp/options.rb
diff --git a/lib/dhcp/oui.txt b/lib/net/dhcp/oui.txt
index acad3a4..acad3a4 100644
--- a/lib/dhcp/oui.txt
+++ b/lib/net/dhcp/oui.txt
diff --git a/lib/main.rb b/lib/net/main.rb
index 9eaa3c5..9eaa3c5 100644
--- a/lib/main.rb
+++ b/lib/net/main.rb