Commit 0c064bf0 authored by Vowstar's avatar Vowstar
Browse files

Merge pull request #511 from jmattsson/fix-dhcpserver-const

Unbreak AP mode after rodata changes
parents d507060e b5c6a5b1
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#include "user_interface.h" #include "user_interface.h"
//////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////
static const uint8_t xid[4] = {0xad, 0xde, 0x12, 0x23}; static uint8_t xid[4] = {0xad, 0xde, 0x12, 0x23};
static u8_t old_xid[4] = {0}; static u8_t old_xid[4] = {0};
static const uint8_t magic_cookie[4] = {99, 130, 83, 99}; static const uint8_t magic_cookie[4] = {99, 130, 83, 99};
static struct udp_pcb *pcb_dhcps = NULL; static struct udp_pcb *pcb_dhcps = NULL;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment