.. |
arp
|
NET: Fix an error in networking Make.defs file
|
2014-06-03 12:41:06 -06:00 |
icmp
|
Move arp, icmp, and igmp configuration values into new Kconfig files in those directories
|
2014-05-30 14:44:07 -06:00 |
igmp
|
Move arp, icmp, and igmp configuration values into new Kconfig files in those directories
|
2014-05-30 14:44:07 -06:00 |
iob
|
TCP write buffering: Correct handling of retry counter
|
2014-06-22 15:27:01 -06:00 |
pkt
|
Fix file names in new net/pkt/Make.defs
|
2014-06-19 07:32:07 -06:00 |
tcp
|
First cut at conversion of write-buffering to use I/O buffer chaings (IOBs)
|
2014-06-22 11:27:57 -06:00 |
udp
|
Networking: Move relevant parts of net/Kconfig to tcp/Kconfig, udp/Kconfig, and pkt/Kconfig
|
2014-06-18 11:45:55 -06:00 |
uip
|
First cut at conversion of write-buffering to use I/O buffer chaings (IOBs)
|
2014-06-22 11:27:57 -06:00 |
.gitignore
|
…
|
|
Kconfig
|
Add missing CONFIG_NET_GUARDSIZE to Kconfig
|
2014-06-19 08:18:46 -06:00 |
Makefile
|
Move Packet files from net/uip to net/pkt
|
2014-06-18 11:02:52 -06:00 |
accept.c
|
…
|
|
bind.c
|
Raw sockets: Additional changes for error-free/warning-free compilation
|
2014-06-12 12:29:58 -06:00 |
connect.c
|
NET: prevent tcp_connect callback from being double freed. From Max Holtzberg.
|
2014-01-13 12:04:01 -06:00 |
getsockname.c
|
…
|
|
getsockopt.c
|
…
|
|
listen.c
|
…
|
|
net_addroute.c
|
Clean-up routing table design.
|
2013-10-05 12:05:51 -06:00 |
net_allocroute.c
|
More trailing whilespace removal
|
2014-04-13 14:32:20 -06:00 |
net_checksd.c
|
…
|
|
net_clone.c
|
When dup'ing sockets, need to clone fields for TCP write buffering too
|
2014-01-14 15:17:53 -06:00 |
net_close.c
|
Raw sockets: Various fixes for closing, free connections, TX from Daniel Lazo Sitzer
|
2014-06-18 09:46:45 -06:00 |
net_delroute.c
|
Clean-up routing table design.
|
2013-10-05 12:05:51 -06:00 |
net_dsec2timeval.c
|
…
|
|
net_dup.c
|
More trailing whilespace removal
|
2014-04-13 14:32:20 -06:00 |
net_dup2.c
|
…
|
|
net_foreachroute.c
|
Clean-up routing table design.
|
2013-10-05 12:05:51 -06:00 |
net_internal.h
|
A few build fixes from last, big ARP relocation change
|
2014-05-30 12:32:20 -06:00 |
net_monitor.c
|
Notify the socket layer if a connection is lost before the monitoring callback has been registered. From Max Holtzberg
|
2013-10-11 10:04:54 -06:00 |
net_poll.c
|
Change how TCP read-ahead is selected to better integrate with TCP write buffering
|
2014-01-13 13:55:51 -06:00 |
net_route.h
|
Another case where we should use the routing table: There may be multiple routers on the same network. In that case, we have to search for the routing table for the router that forwards to the destination address. We do this when we determine the MAC address we want in the ARP logic
|
2013-10-05 19:08:57 -06:00 |
net_router.c
|
Another case where we should use the routing table: There may be multiple routers on the same network. In that case, we have to search for the routing table for the router that forwards to the destination address. We do this when we determine the MAC address we want in the ARP logic
|
2013-10-05 19:08:57 -06:00 |
net_send_buffered.c
|
TCP write buffering: Correct handling of retry counter
|
2014-06-22 15:27:01 -06:00 |
net_send_unbuffered.c
|
First cut at conversion of write-buffering to use I/O buffer chaings (IOBs)
|
2014-06-22 11:27:57 -06:00 |
net_sendfile.c
|
Move include/nuttx/net/uip/uip-arch.h to include/nuttx/net/arp.h; rename all uip_arp_ functions to arp_
|
2014-05-30 12:13:06 -06:00 |
net_sockets.c
|
Net: First bug fixes for modified write buffer logic
|
2014-06-22 13:34:09 -06:00 |
net_timeo.c
|
…
|
|
net_timeval2dsec.c
|
…
|
|
net_vfcntl.c
|
Change how TCP read-ahead is selected to better integrate with TCP write buffering
|
2014-01-13 13:55:51 -06:00 |
netdev_carrier.c
|
Networking: Improved status reporting and new carrier management interfaces. From Max Holtzberg
|
2014-01-21 10:21:45 -06:00 |
netdev_count.c
|
…
|
|
netdev_findbyaddr.c
|
Simplify last change to netdev_findbyaddr
|
2014-03-22 09:24:25 -06:00 |
netdev_findbyname.c
|
…
|
|
netdev_foreach.c
|
…
|
|
netdev_ioctl.c
|
net/: IGMP-related bugfixes from Manuel Stühn
|
2014-03-24 09:34:17 -06:00 |
netdev_register.c
|
…
|
|
netdev_router.c
|
SAMA5: LCDC driver progress
|
2013-10-07 12:05:16 -06:00 |
netdev_rxnotify.c
|
Use the new signature of rxnotify caused by the routing table. From Max Holtzberg
|
2013-10-06 07:38:15 -06:00 |
netdev_sem.c
|
…
|
|
netdev_txnotify.c
|
Use the new signature of rxnotify caused by the routing table. From Max Holtzberg
|
2013-10-06 07:38:15 -06:00 |
netdev_unregister.c
|
…
|
|
recv.c
|
…
|
|
recvfrom.c
|
Raw sockets: Additional changes for error-free/warning-free compilation
|
2014-06-12 12:29:58 -06:00 |
send.c
|
The first set of changes to incorporate Jason Jiangs TCP write buffering logic
|
2014-01-13 17:11:01 -06:00 |
sendto.c
|
Changed the meaning of the uip_*input functions. They now return success when a packet is dropped; This is needed for the ENCX24J600 driver that must make a decision to return the packet or not: It should not retain dropped packets. From Max Holtzberg
|
2013-10-11 10:48:00 -06:00 |
setsockopt.c
|
Changes to correct TCP write buffereing build errors
|
2014-01-14 09:43:59 -06:00 |
socket.c
|
Raw sockets: Various fixes for closing, free connections, TX from Daniel Lazo Sitzer
|
2014-06-18 09:47:08 -06:00 |