Skip to content

Commit 4216279

Browse files
committed
Merge pull request #22 from ntruchsess/publish_dns_dhcp
move Dns and Dhcp to library root (as in stock Ethernet lib)
2 parents f12c102 + a7d1b85 commit 4216279

File tree

7 files changed

+3
-3
lines changed

7 files changed

+3
-3
lines changed
File renamed without changes.

utility/Dhcp.h renamed to Dhcp.h

File renamed without changes.

utility/Dns.cpp renamed to Dns.cpp

File renamed without changes.

utility/Dns.h renamed to Dns.h

File renamed without changes.

UIPClient.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extern "C"
2626
}
2727
#include "UIPEthernet.h"
2828
#include "UIPClient.h"
29-
#include "utility/Dns.h"
29+
#include "Dns.h"
3030

3131
#ifdef UIPETHERNET_DEBUG_CLIENT
3232
#include "HardwareSerial.h"

UIPEthernet.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
#include "ethernet_comp.h"
2424
#include <Arduino.h>
25-
#include "utility/Dhcp.h"
25+
#include "Dhcp.h"
2626
#include "IPAddress.h"
2727
#include "utility/Enc28J60Network.h"
2828
#include "UIPClient.h"

UIPUdp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#include "UIPEthernet.h"
2121
#include "UIPUdp.h"
22-
#include "utility/Dns.h"
22+
#include "Dns.h"
2323

2424
#ifdef UIPETHERNET_DEBUG_UDP
2525
#include "HardwareSerial.h"

0 commit comments

Comments
 (0)