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 08:36:24 +08:00
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
Files
7f95e4fb2c3d0a631a098a10b8051b7822c51a03
nuttx
/
net
/
tcp
T
History
Gregory Nutt
9c2af5317f
Merge remote-tracking branch 'origin/master' into afunix
2015-01-28 12:03:43 -06:00
..
Kconfig
…
Make.defs
Networking: Move TCP specific logic out of net/socket/accept.c to net/tcp/tcp_accept.c; add hooks for local, Unix doamin sockets
2015-01-25 15:46:05 -06:00
tcp_accept.c
Networking: Add local Unix domain socket accept logic
2015-01-25 16:27:25 -06:00
tcp_appsend.c
Networking: Back out a previous change. It is incorrect
2015-01-22 12:10:16 -06:00
tcp_backlog.c
…
tcp_callback.c
Networking: The are issues with the TCP write-ahead buffering if CONFIG_NET_NOINTS is enabled: There is a possibility of deadlocks in certain timing conditions. I have not seen this with the Tiva driver that I have been users but other people claim to see the issue on other platforms. Certainly it is a logic error: The network should never wait for TCP read-ahead buffering space to be available. It should drop the packets immediately.
2015-01-27 21:23:42 -06:00
tcp_conn.c
Correct name of fields in struct sockaddr_in6: sin6_port and sin6_family, not sin_port and sin_family
2015-01-20 18:14:09 -06:00
tcp_input.c
…
tcp_ipselect.c
…
tcp_listen.c
…
tcp_poll.c
…
tcp_send_buffered.c
Networking: Fix another deadlock condition. tcp_write_buffer_alloc() calls sem_wait() with network locked. That worked if CONFIG_NET_NOINTS was not defined because interrupts are automatically restored when the wait happens. But with CONFIG_NET_NOINTS=y, the wait blocks with the network locked -- bad style and also can lead to a deadlock condition
2015-01-28 11:56:11 -06:00
tcp_send_unbuffered.c
Armv7-M: Remove Px4-only setting of stack to 0xff. This is incompatible with standard NuttX stack montitoring logic
2015-01-22 10:09:10 -06:00
tcp_send.c
Networking: Clean up network status collection and presentation for IPv6
2015-01-24 08:26:12 -06:00
tcp_seqno.c
…
tcp_timer.c
…
tcp_wrbuffer_dump.c
…
tcp_wrbuffer.c
Networking: Fix another deadlock condition. tcp_write_buffer_alloc() calls sem_wait() with network locked. That worked if CONFIG_NET_NOINTS was not defined because interrupts are automatically restored when the wait happens. But with CONFIG_NET_NOINTS=y, the wait blocks with the network locked -- bad style and also can lead to a deadlock condition
2015-01-28 11:56:11 -06:00
tcp.h
Merge remote-tracking branch 'origin/master' into afunix
2015-01-28 12:03:43 -06:00