TFTP server depends on UDP

This commit is contained in:
Dirk Ziegelmeier 2016-10-03 09:50:34 +02:00
parent b040544628
commit 1e5efee7cb

View File

@ -48,6 +48,9 @@
*/
#include "lwip/apps/tftp_server.h"
#if LWIP_UDP
#include "lwip/udp.h"
#include "lwip/timeouts.h"
#include "lwip/debug.h"
@ -410,3 +413,5 @@ tftp_init(const struct tftp_context *ctx)
return ERR_OK;
}
#endif /* LWIP_UDP */