Add TX data notification

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@397 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2007-11-22 14:42:52 +00:00
parent eba6556056
commit cf2027e03a
2 changed files with 8 additions and 0 deletions

View File

@ -705,6 +705,9 @@ Other memory:
* Integrated uIP micro webserver * Integrated uIP micro webserver
* Corrected a serious bug in TCP queue management * Corrected a serious bug in TCP queue management
* Fix leak in socket close logic * Fix leak in socket close logic
* Add TX notification to driver so that it can respond faster to
the availability of TX data.
* Moved urgent data info into device structure.
</pre></ul> </pre></ul>
<table width ="100%"> <table width ="100%">

View File

@ -1370,6 +1370,11 @@ The system can be re-made subsequently by just typing <code>make</code>.
<li> <li>
<code>CONFIG_NET_NTCP_READAHEAD_BUFFERS</code>: Number of TCP read-ahead buffers (may be zero) <code>CONFIG_NET_NTCP_READAHEAD_BUFFERS</code>: Number of TCP read-ahead buffers (may be zero)
</li> </li>
<li>
<code>CONFIG_NET_TCPURGDATA</code>: Determines if support for TCP urgent data
notification should be compiled in. Urgent data (out-of-band data)
is a rarely used TCP feature that is very seldom would be required.
</li>
<li> <li>
<code>CONFIG_NET_UDP</code>: UDP support on or off <code>CONFIG_NET_UDP</code>: UDP support on or off
</li> </li>