summaryrefslogtreecommitdiff
path: root/nuttx/net
Commit message (Collapse)AuthorAgeFilesLines
* Changes for ZDS-II ez80 buildGregory Nutt2013-11-282-4/+6
|
* Add logic to enable DEBUG_NET if NET=n but WL_CC3000=yGregory Nutt2013-10-231-3/+9
|
* net_sendfile: Let the ACK callback handle the REXMIT flag and don't return ↵Gregory Nutt2013-10-171-20/+25
| | | | until all data has been ACK'd. From Max Holtzberg
* Move tcp connection into SYN_RCVD state after aception instead of bypassing ↵Gregory Nutt2013-10-171-9/+0
| | | | and moving directly into ESTABLISHED. From Max Holtzberg.
* TCP: Change how initial MSS is handled. From Max HoltzbergGregory Nutt2013-10-173-59/+51
|
* In net_sendfile(), correct parameter passed to netdev_txnotifiy. From Max ↵Gregory Nutt2013-10-171-1/+1
| | | | Holtzberg
* Reset TCP timeout timer when data is ACKed, not when data is sent. From Max ↵Gregory Nutt2013-10-172-15/+15
| | | | Holtzberg
* Changed net_close debug output to verbose. From Max Holtzberg (2013-10-17)Gregory Nutt2013-10-171-2/+2
|
* Changed the meaning of the uip_*input functions. They now return success ↵Gregory Nutt2013-10-118-68/+51
| | | | 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
* Notify the socket layer if a connection is lost before the monitoring ↵Gregory Nutt2013-10-111-1/+2
| | | | callback has been registered. From Max Holtzberg
* Missing one change in the last commitGregory Nutt2013-10-081-1/+1
|
* uip_tcpcallback: Simplify handling of callback return flagsGregory Nutt2013-10-081-7/+5
|
* Update to net_close() improvement from Max HoltzbergGregory Nutt2013-10-083-49/+41
|
* SAMA5: LCDC driver progressGregory Nutt2013-10-071-1/+3
|
* Make net_close() nonblocking and free unestablished connections if no free ↵Gregory Nutt2013-10-062-64/+85
| | | | connections available. From Max Holtzberg
* SAMA5 LCDC: Add 'skeleton' files that will eventually become an LCDC driver ↵Gregory Nutt2013-10-061-7/+7
| | | | for the SAMA5
* Use the new signature of rxnotify caused by the routing table. From Max ↵Gregory Nutt2013-10-063-7/+6
| | | | Holtzberg
* Another case where we should use the routing table: There may be multiple ↵Gregory Nutt2013-10-055-11/+249
| | | | 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
* Fix some delroute errorsGregory Nutt2013-10-052-5/+5
|
* Fix ordering of operations in network ioctl handling. We need to able to ↵Gregory Nutt2013-10-051-149/+236
| | | | distinguish an error because the command was not recognized vs. other kinds of error
* Add NSH addroute and delroute commandsGregory Nutt2013-10-052-2/+2
|
* Oops here is a file that I forget to add before a recent commitGregory Nutt2013-10-051-0/+174
|
* netdev_findbyaddr() will not use a routing table if one is available. It ↵Gregory Nutt2013-10-059-51/+120
| | | | will also make a better decision in the case there there is no routing table but only a single network interface.
* Clean-up routing table design.Gregory Nutt2013-10-059-94/+193
|
* Add a user interface to manage the routing tableGregory Nutt2013-10-027-20/+340
|
* Simple routing table hooked into network build systemGregory Nutt2013-10-016-27/+50
|
* Partial implementation of a simple network routing table.Gregory Nutt2013-10-014-0/+481
|
* net/net_sendfile: High performance sendfile is now functional. From Max ↵Gregory Nutt2013-09-302-20/+39
| | | | Holtzberg
* Dependency generation fix for directories that keep object files in a ↵Gregory Nutt2013-09-291-1/+1
| | | | sub-directory
* Clean up some naming: fd vs. fildes vs. filedes and filep vs filpGregory Nutt2013-09-281-10/+10
|
* Optimized sendfile() from Max HoltzbergGregory Nutt2013-09-284-3/+579
|
* Networking: Fix backward conditional in test to see if address is in ARP ↵Gregory Nutt2013-09-271-1/+1
| | | | table. From Max Holtzberg
* Networking: If sending out of the subnet, device lookup by IP will fail. ↵Gregory Nutt2013-09-271-0/+14
| | | | Fall back to ETH0 for now. From Max Holtzberg
* Can't test for UIP_CLOSED bit in TCP flags; UIP_CLOSED is defined to be 0Gregory Nutt2013-09-251-1/+1
|
* Add support for multiple PHY selections for multiple Ethernet MAC driversGregory Nutt2013-09-171-22/+0
|
* Networking: Important bug fix. The backlog buffer pointer was not being ↵Gregory Nutt2013-09-061-0/+1
| | | | incrmented so that only the first backlog buffer was getting added to the freelist. From Max Holtzberg
* Missing file change for previous driver-based UDP backlog from Max HoltzbergGregory Nutt2013-09-061-6/+10
|
* Update to previous change from Max HoltzbergGregory Nutt2013-09-062-2/+2
|
* Partial implementation of driver-based UDP backlog still missing some logic. ↵Gregory Nutt2013-09-068-100/+253
| | | | From Max Holtzberg.
* Networking: Fix race condition that can cause missing loss-of-connection ↵Gregory Nutt2013-09-061-0/+11
| | | | events. From Max Holtzberg
* Fix all occurrences of "the the" in documentation and commentsGregory Nutt2013-08-273-3/+3
|
* Network ARP harvesting: Corect backward condition in netmask task. From Max ↵Gregory Nutt2013-08-251-7/+7
| | | | Holtzberg
* .dSYM only needs to be in the same .gitignore files as .exeGregory Nutt2013-05-301-1/+0
|
* Upate .gitignore files. Add .dSYM. Make sure / is present where needed. ↵Gregory Nutt2013-05-301-8/+9
| | | | Add some missing .gitignore files
* When readahead data is available, poll needs to return POLLIN or POLLRDNORM, ↵Gregory Nutt2013-05-231-3/+5
| | | | not POLLOUT
* Add MTD partition support plus fix some typos in commentsGregory Nutt2013-04-301-2/+2
|
* Implement UDP sendto() timeouts. Currently disabled because it probably ↵Gregory Nutt2013-04-302-22/+110
| | | | unnecessary.
* Networking code should use kfree, not lib_freeGregory Nutt2013-04-111-1/+1
|
* Fix bad net_clone.c compilation when CONFIG_NET_SOCKOPTS is not definedGregory Nutt2013-04-053-6/+8
|
* Mostly updates and corrections to .gitignore filesGregory Nutt2013-04-041-11/+10
|