mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-11 18:36:41 +00:00
Fix compile of TFTP using GCC
This commit is contained in:
parent
c8808f69b2
commit
abcf42b655
@ -78,17 +78,17 @@ tftp_write(void* handle, struct pbuf* p)
|
||||
}
|
||||
|
||||
/* For TFTP client only */
|
||||
static int
|
||||
static void
|
||||
tftp_error(void* handle, int err, const char* msg, int size)
|
||||
{
|
||||
char message[100];
|
||||
|
||||
LWIP_UNUSED_ARG(handle);
|
||||
|
||||
memset(message, 0, sizeof(message));
|
||||
MEMCPY(message, msg, LWIP_MIN(sizeof(message)-1, size));
|
||||
MEMCPY(message, msg, LWIP_MIN(sizeof(message)-1, (size_t)size));
|
||||
|
||||
printf("TFTP error: %d (%s)", err, message);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct tftp_context tftp = {
|
||||
|
@ -47,7 +47,8 @@
|
||||
* This is simple TFTP client/server for the lwIP raw API.
|
||||
*/
|
||||
|
||||
#include "lwip/apps/tftp_common.h"
|
||||
#include "lwip/apps/tftp_client.h"
|
||||
#include "lwip/apps/tftp_server.h"
|
||||
|
||||
#if LWIP_UDP
|
||||
|
||||
@ -389,7 +390,7 @@ recv(void *arg, struct udp_pcb *upcb, struct pbuf *p, const ip_addr_t *addr, u16
|
||||
case PP_HTONS(TFTP_ERROR):
|
||||
if (tftp_state.handle != NULL) {
|
||||
pbuf_remove_header(p, TFTP_HEADER_LENGTH);
|
||||
tftp_state.ctx->error(tftp_state.handle, sbuf[1], p->payload, p->len);
|
||||
tftp_state.ctx->error(tftp_state.handle, sbuf[1], (const char*)p->payload, p->len);
|
||||
close_handle();
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user