summaryrefslogtreecommitdiff
path: root/nuttx/net
Commit message (Collapse)AuthorAgeFilesLines
* Add CONFIG_NET_ETHERNET (not used yet)Gregory Nutt2014-06-011-0/+11
|
* Move arp, icmp, and igmp configuration values into new Kconfig files in ↵Gregory Nutt2014-05-304-54/+82
| | | | those directories
* Files that I forgot to add in the previous commitsGregory Nutt2014-05-302-0/+105
|
* Move ICMP files from net/uip to net/icmpGregory Nutt2014-05-304-976/+0
|
* Move ICMP files from net/uip to net/icmpGregory Nutt2014-05-307-13/+1036
|
* Move IGMP files from net/uip to net/igmpGregory Nutt2014-05-3012-48/+37
|
* A few build fixes from last, big ARP relocation changeGregory Nutt2014-05-303-5/+3
|
* Move include/nuttx/net/uip/uip-arch.h to include/nuttx/net/arp.h; rename all ↵Gregory Nutt2014-05-308-54/+38
| | | | uip_arp_ functions to arp_
* Move arp-related files from net/uip to net/arpGregory Nutt2014-05-304-13/+16
|
* Change all variadic macros to C99 styleGregory Nutt2014-05-222-8/+8
|
* More trailing whilespace removalGregory Nutt2014-04-1317-208/+208
|
* Make sure that there is one space after forGregory Nutt2014-04-121-3/+3
|
* Make sure that there is one space between while and conditionGregory Nutt2014-04-121-1/+1
|
* Make sure that there is one space between if and conditionGregory Nutt2014-04-121-1/+1
|
* net/uip: Review all files in this directory for coding style and spellingGregory Nutt2014-04-1236-144/+183
|
* net/: IGMP-related bugfixes from Manuel StühnGregory Nutt2014-03-242-5/+12
|
* Simplify last change to netdev_findbyaddrGregory Nutt2014-03-221-13/+7
|
* net/netdev_findbyaddr.c: Skip network devices that are in the down state. ↵Gregory Nutt2014-03-201-6/+26
| | | | They have no meaning address
* SAM4E-EK: Add an EMAC driver. Initial commit is just a quick port of the ↵Gregory Nutt2014-03-121-2/+2
| | | | SAMA5D3 EMAC driver
* networking: Fix one place where the reference count was not being zeroed. ↵Gregory Nutt2014-02-251-0/+1
| | | | This is really a cosmetic fix UNLESS CONFIG_DEBUG_NET is enabled, then it causes assertions
* Back out part of write buffering change. David G reports that this causes ↵Gregory Nutt2014-02-151-2/+1
| | | | problems connecting to a server
* Many changes to reduce complaints from CppCheck. Several latent bugs fixes, ↵Gregory Nutt2014-02-103-6/+9
| | | | but probably some new typos introduced
* Networking: Improved status reporting and new carrier management ↵Gregory Nutt2014-01-213-23/+142
| | | | interfaces. From Max Holtzberg
* Add true and false commands; repartition some logic to better support ↵Gregory Nutt2014-01-171-4/+6
| | | | forthcoming looping
* Some fixes for typos in recent changes to Kconfig filesGregory Nutt2014-01-161-1/+2
|
* net/Kconfig: Improved default values and commentsGregory Nutt2014-01-161-23/+54
|
* NET: write buffering configuration no longer depends on EXPERIMENTALGregory Nutt2014-01-151-1/+0
|
* If write buffering is enabled, then it is necessary to release the write ↵Gregory Nutt2014-01-141-2/+14
| | | | buffer resources (callback structure) when the socket is closed
* When dup'ing sockets, need to clone fields for TCP write buffering tooGregory Nutt2014-01-145-11/+15
|
* Changes to correct TCP write buffereing build errorsGregory Nutt2014-01-1414-93/+112
|
* All of Jason Jaing's write buffering logic has been incorporated, but not ↵Gregory Nutt2014-01-144-24/+61
| | | | even yet built
* More TCP write buffer code. Part of big change from Jason JiangGregory Nutt2014-01-131-5/+46
|
* The first set of changes to incorporate Jason Jiangs TCP write buffering logicGregory Nutt2014-01-1310-602/+1413
|
* Add configuration support for TCP Write BufferingGregory Nutt2014-01-132-14/+65
|
* Change how TCP read-ahead is selected to better integrate with TCP write ↵Gregory Nutt2014-01-139-33/+40
| | | | buffering
* NET: prevent tcp_connect callback from being double freed. From Max Holtzberg.Gregory Nutt2014-01-133-3/+18
|
* Add support for the SO_LINGER socket option. Based on logic from Jason ↵Gregory Nutt2014-01-133-23/+287
| | | | Jiang. Utestested on initial commit
* 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
|