Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/net/lib/http/
Dhttp_client.c74 int ret, end_of_send = *send_buf_pos; in http_send_data() local
89 to_be_copied = send_buf_max_len - end_of_send; in http_send_data()
92 strncpy(send_buf + end_of_send, in http_send_data()
96 end_of_send += to_be_copied; in http_send_data()
100 LOG_HEXDUMP_DBG(send_buf, end_of_send, in http_send_data()
103 ret = sendall(sock, send_buf, end_of_send, req_end_timepoint); in http_send_data()
106 end_of_send, ret); in http_send_data()
109 sent += end_of_send; in http_send_data()
110 end_of_send = 0; in http_send_data()
113 memcpy(send_buf + end_of_send, in http_send_data()
[all …]