incubator-nuttx/net/tcp
Gregory Nutt cb9e27c3b0 Standardize naming used for public data and function groupings 2015-10-02 16:30:35 -06:00
..
Kconfig Fix references to the no-longer-existent misc/ directory in comments, README files, and documentation 2015-06-28 08:08:57 -06:00
Make.defs TCP networking: Add support for network driver events 2015-05-30 09:12:27 -06:00
tcp.h Fix a error in some comments 2015-09-02 20:03:28 -06:00
tcp_accept.c Networking: Correct return value from psock_tcp_accept(). From SaeHie Park 2015-08-25 07:15:21 -06:00
tcp_appsend.c Standardize naming used for public data and function groupings 2015-10-02 16:30:35 -06:00
tcp_backlog.c Reanem kzalloc to kmm_zalloc for consistency 2014-08-31 17:34:44 -06:00
tcp_callback.c Fix typo in pre-processor command noted by Pierre-noel Bouteville. Also move # of pre-processior command to column 1 2015-09-05 09:10:48 -06:00
tcp_conn.c net/tcp: The logic that binds a specific networkd device to a connection was faulty for the case of multiple network devices. On bind(), the local address should be used to associate a device with the connection (if the local address is not INADDR_ANY); On connect(), the remote address should be used (in case the local address is INADDR_ANY). On accept(), it does not matter but the remote address is the one guarenteed to be available. 2015-09-02 19:48:31 -06:00
tcp_devpoll.c Standardize naming used for public data and function groupings 2015-10-02 16:30:35 -06:00
tcp_finddev.c Fix a compile error when IPv6 is enabled 2015-09-07 16:34:25 -06:00
tcp_input.c Standardize naming used for public data and function groupings 2015-10-02 16:30:35 -06:00
tcp_ipselect.c Networking: Some fixes for compilation when both IPv4 and IPv6 are enabled 2015-01-18 09:23:22 -06:00
tcp_listen.c Costmetic changes 2015-08-27 10:38:43 -06:00
tcp_netpoll.c Trivial typo fix 2015-09-02 10:09:33 -06:00
tcp_send.c Standardize naming used for public data and function groupings 2015-10-02 16:30:35 -06:00
tcp_send_buffered.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
tcp_send_unbuffered.c Fix tcp_send_unbuffered when NET_ETHERNET is not defined. 2015-09-07 13:31:35 -06:00
tcp_seqno.c Remove all inclusion of uip.h 2014-07-04 16:58:22 -06:00
tcp_timer.c Standardize naming used for public data and function groupings 2015-10-02 16:30:35 -06:00
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_wrbuffer_dump.c Update everything under nuttx/net to use the corrected syslog interfaces 2014-10-08 10:48:11 -06:00