DhcpServer library for mbed-os.

Fork of DhcpServer by Daiki Kato

mbedボードをDHCPサーバとして使用するためのライブラリです。mbedボードとPCを直結する際などに使用してください。
このクラスは5つのIPアドレスを割り当てられることができます。
IPアドレスの上位3バイトはサーバーアドレスと同じで、下の1バイトは、10-14が割り当てられます。
例えば、サーバーアドレスが"192.168.0.1"の場合、IPアドレスは"192.168.0.10"~"192.168.0.14"が割り当てられます。

EthernetInterfaceでconnectを実行した後に、DhcpServerを使用してください。

    EthernetInterface eth;
    eth.init("192.168.0.1", "255.255.255.0", "192.168.0.1");
    eth.connect();
    DhcpServer dhcp_server(&eth, "HostName");


Library in Beta!

This library is in Beta.
このライブラリはβ版です。

History

Supports mbed-os 5.9.1 default tip

2018-06-21, by dkato [Thu, 21 Jun 2018 10:37:18 +0000] rev 4

Supports mbed-os 5.9.1


Add const attribute to constructor argument

2017-06-23, by dkato [Fri, 23 Jun 2017 11:44:52 +0000] rev 3

Add const attribute to constructor argument


Supports mbed os 5

2017-06-20, by dkato [Tue, 20 Jun 2017 10:32:37 +0000] rev 2

Supports mbed os 5


Add documents

2016-04-06, by dkato [Wed, 06 Apr 2016 03:11:10 +0000] rev 1

Add documents


first commit

2016-03-25, by dkato [Fri, 25 Mar 2016 05:00:52 +0000] rev 0

first commit