TFTP_ACK_PKT_LEN is only used within LwIP_IAP.
 
Symbols
loading...
Files
loading...

TFTP_ACK_PKT_LEN macro

Syntax

#define TFTP_ACK_PKT_LEN (TFTP_OPCODE_LEN + TFTP_BLKNUM_LEN)

References

LocationText
tftpserver.h:32
#define TFTP_ACK_PKT_LEN (TFTP_OPCODE_LEN + TFTP_BLKNUM_LEN)
tftpserver.c:114
char packet[TFTP_ACK_PKT_LEN];
tftpserver.c:116
memset(packet, 0, TFTP_ACK_PKT_LEN *sizeof(char));
tftpserver.c:130
pkt_buf = pbuf_alloc(PBUF_TRANSPORT, TFTP_ACK_PKT_LEN, PBUF_POOL);
tftpserver.c:141
memcpy(pkt_buf->payload, packet, TFTP_ACK_PKT_LEN);