自己写的send_n()、recv_n()

TCP下socket的send函数发送的字节数可能小于要求发送的字节数,send_n用得太频繁,没办法,自己写了一个。

无甚技术含量,勉强够用^_^

  1. int send_n(SOCKET s, const char *buf, int len, int flags)
  2. {
  3.     int result, old_len = len;
  4.     do {
  5.         result = send(s, buf, len, flags);
  6.         if (result == SOCKET_ERROR)
  7.             return SOCKET_ERROR;
  8.         len -= result;
  9.         buf += result;
  10.     } while (len);
  11.     return old_len;
  12. }

干脆把recv_n()也写上了,基本结构都是一样的。

  1. int recv_n(SOCKET s, char *buf, int len, int flags)
  2. {
  3.     int result, old_len = len;
  4.     do {
  5.         result = recv(s, buf, len, flags);
  6.         if (result == SOCKET_ERROR)
  7.             return SOCKET_ERROR;
  8.         len -= result;
  9.         buf += result;
  10.     } while (len);
  11.     return old_len;
  12. }
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值