HomeSort by: relevance | last modified time | path
    Searched defs:send_total (Results 1 - 2 of 2) sorted by relevancy

  /src/crypto/external/cpl/trousers/dist/src/tspi/rpc/tcstp/
rpc.c 325 int send_size = 0, send_total = 0; local
327 while (send_total < size) {
328 if ((send_size = send(sock, buffer+send_total, size-send_total, 0)) < 0) {
332 send_total += send_size;
335 return send_total;
  /src/crypto/external/cpl/trousers/dist/src/tcs/rpc/tcstp/
rpc.c 83 int send_size = 0, send_total = 0; local
85 while (send_total < size) {
86 if ((send_size = send(sock, buffer+send_total, size-send_total, 0)) < 0) {
90 send_total += send_size;
93 return send_total;

Completed in 26 milliseconds