This website requires JavaScript.
Explore
Help
Register
Sign In
Mirrors_Framework
/
nuttx
Watch
1
Star
0
Fork
0
You've already forked nuttx
mirror of
https://github.com/apache/nuttx.git
synced
2026-06-06 16:50:55 +08:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
Files
b1e09d4847693daa480d16a12ee69cfa48febc9a
nuttx
/
net
/
socket
T
History
Gregory Nutt
b1e09d4847
net/socket and net/tcp: Fix a problem in whent there are multiple network devices. Polls were being sent to all TCP sockets before. This is not good because it means that packets may sometimes be sent out on the wrong device. That is inefficient because it will cause retransmissions and bad performance. But, worse, when one of the devices is not Ethernet, it will have a different MSS and, as a result, incorrect data transfers can cause crashes. The fix is to lock into a single device once the MSS is locked locked down.
2015-08-27 09:06:46 -06:00
..
accept.c
…
bind.c
…
connect.c
net/socket and net/tcp: Fix a problem in whent there are multiple network devices. Polls were being sent to all TCP sockets before. This is not good because it means that packets may sometimes be sent out on the wrong device. That is inefficient because it will cause retransmissions and bad performance. But, worse, when one of the devices is not Ethernet, it will have a different MSS and, as a result, incorrect data transfers can cause crashes. The fix is to lock into a single device once the MSS is locked locked down.
2015-08-27 09:06:46 -06:00
getsockname.c
…
getsockopt.c
…
Kconfig
…
listen.c
…
Make.defs
net/udp: Add support for send() with connected UDP sockets
2015-08-11 19:17:55 -06:00
net_checksd.c
…
net_clone.c
…
net_close.c
…
net_dupsd2.c
…
net_dupsd.c
…
net_monitor.c
…
net_poll.c
…
net_sendfile.c
net/socket and net/tcp: Fix a problem in whent there are multiple network devices. Polls were being sent to all TCP sockets before. This is not good because it means that packets may sometimes be sent out on the wrong device. That is inefficient because it will cause retransmissions and bad performance. But, worse, when one of the devices is not Ethernet, it will have a different MSS and, as a result, incorrect data transfers can cause crashes. The fix is to lock into a single device once the MSS is locked locked down.
2015-08-27 09:06:46 -06:00
net_sockets.c
…
net_timeo.c
…
net_vfcntl.c
…
recv.c
…
recvfrom.c
wdogs: Fix counting of free, pre-allocated wdog timers. The could could get decremented below zero in some situations
2015-08-21 11:30:22 -06:00
send.c
net/udp: Add support for send() with connected UDP sockets
2015-08-11 19:17:55 -06:00
sendto.c
net/udp: Add support for send() with connected UDP sockets
2015-08-11 19:17:55 -06:00
setsockopt.c
…
socket.c
…
socket.h
…