8000 Custom dhcp options by bwjohns4 · Pull Request #8571 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Custom dhcp options #8571

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revise size of dhcpCustomOffers[]
  • Loading branch information
bwjohns4 committed May 17, 2022
commit 01ef879417d2bc35364b37a20f9cf135187c2a7b
2 changes: 1 addition & 1 deletion cores/esp8266/LwipDhcpServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class DhcpServer
bool add_dhcps_lease(uint8* macaddr);
uint16 add_dhcps_custom_options(uint8 offerCode, char *offerContent);
void remove_dhcps_custom_options(void);
char dhcpCustomOffers[312];
char dhcpCustomOffers[100];


void dhcps_set_dns(int num, const ipv4_addr_t* dns);
Expand Down
0