From 9263d448476a254dde19e4b3a7f9f7ea0f376808 Mon Sep 17 00:00:00 2001 From: Ivan Warren Date: Sat, 22 Dec 2018 12:31:00 +0100 Subject: [PATCH] Small documentation fix for TFTP Apparently the TFTP server now also invokes the error() function in the tftp_context struct. Some tftp clients (for example Windows 10 TFTP client) will open the remote file before checking the local file can be opened - and will then send an error indication to the server to indicate there was an error opening the local file. When the happens, the LWIP tftp server will invoke the error() member of the tftp_context. --- src/include/lwip/apps/tftp_common.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/lwip/apps/tftp_common.h b/src/include/lwip/apps/tftp_common.h index 6c46a8c3..4bc2c173 100644 --- a/src/include/lwip/apps/tftp_common.h +++ b/src/include/lwip/apps/tftp_common.h @@ -85,10 +85,10 @@ struct tftp_context { */ int (*write)(void* handle, struct pbuf* p); /** - * Error response (client mode only) - * @param handle File handle set by tftp_get()/tftp_put() - * @param err error code from server - * @param msg error message from server + * Error indication from client or response from server + * @param handle File handle set by open()/tftp_get()/tftp_put() + * @param err error code from client or server + * @param msg error message from client or server * @param size size of msg */ void (*error)(void* handle, int err, const char* msg, int size);