tcp_send_unbuffered.c: Fix nxstyle errors

This commit is contained in:
YAMAMOTO Takashi 2021-10-13 10:48:16 +09:00 committed by Xiang Xiao
parent 1550a525e9
commit 28d168e1b8
1 changed files with 0 additions and 3 deletions

View File

@ -67,7 +67,6 @@
# define NEED_IPDOMAIN_SUPPORT 1
#endif
#define TCPIPv4BUF ((struct tcp_hdr_s *)&dev->d_buf[NET_LL_HDRLEN(dev) + IPv4_HDRLEN])
#define TCPIPv6BUF ((struct tcp_hdr_s *)&dev->d_buf[NET_LL_HDRLEN(dev) + IPv6_HDRLEN])
@ -243,7 +242,6 @@ static uint16_t tcpsend_eventhandler(FAR struct net_driver_s *dev,
pstate->snd_sent = pstate->snd_acked;
/* Fall through to re-send data from the last that was ACKed */
}
@ -301,7 +299,6 @@ static uint16_t tcpsend_eventhandler(FAR struct net_driver_s *dev,
uint32_t sndlen = pstate->snd_buflen - pstate->snd_sent;
if (sndlen > conn->mss)
{
sndlen = conn->mss;