README.md

# DHCPServer

## Installation

The package can be installed by adding `dhcp_server` to your list of dependencies in `mix.exs`:

```elixir
def deps do
  [{:dhcp_server, "~> 0.2.0"}]
end
```

## Usage

```elixir
iex(1)> {:ok, dhcp_server} = DHCPServer.start_link("usb0", [])
{:ok, dhcp_server}
# Plug device in or something?
# Get ip address?
# Do some local work?
# Profit?
iex(2)> DHCPServer.stop(dhcp_server)
:ok
```

## License
This project is originally located [here](https://github.com/tonyrog/dhcp) and
is licensed under GPLv2. See [COPYING](COPYING) for more details.