Home
last modified time | relevance | path

Searched refs:send_size (Results 1 – 1 of 1) sorted by relevance

/Zephyr-Core-3.7.0/subsys/net/lib/tftp/
Dtftp_client.c378 uint32_t send_size; in tftp_put() local
427 send_size = user_buf_size - tftpc_index; in tftp_put()
428 if (send_size > TFTP_BLOCK_SIZE) { in tftp_put()
429 send_size = TFTP_BLOCK_SIZE; in tftp_put()
433 ret = send_data(sock, client, tftpc_block_no, send_buffer, send_size); in tftp_put()
437 tftpc_index += send_size; in tftp_put()
444 if (send_size < TFTP_BLOCK_SIZE) { in tftp_put()