make the context more readable
This commit is contained in:
2023-11-06 22:05:43 +01:00
parent 20650b9c03
commit 1a6a2db34e

View File

@@ -24,10 +24,10 @@ int tftp_write(void* handle, struct pbuf* p) {
}
struct tftp_context tftpContext_s = {
tftp_open,
tftp_close,
tftp_read,
tftp_write
.open = tftp_open,
.close = tftp_close,
.read = tftp_read,
.write = tftp_write
};
void tftp_server_init(void) {