Difference between revisions of "Afd.sys"

From ReactOS Wiki
Jump to: navigation, search
(Undo revision 30286 by Parrishcartwright (Talk))
Line 12: Line 12:
  
 
Apart from that the rest is bookkeeping.
 
Apart from that the rest is bookkeeping.
 
[http://customwritingservices.org/dissertation.php dissertation writing services]
 

Revision as of 13:37, 17 October 2011

This page is probably outdated

The information on this page might not be valid for the current state of ReactOS.
A Wiki Administrator should look at this page and decide or discuss what to do with it.


It was complicated before. Here's how it works now:

Each AFD_FCB has a read and write buffer which currently holds up to one packet. For better performance, we can make this buffering scheme better. For the sake of simplicity, it's the way it is now.

Each socket can have at most one send IRP active at a time. Others either wait or do nothing depending on whether they're for stream or packet sockets. This too can be improved but again does no real harm.

Each socket has at most one receive IRP active at a time (or listen IRP for a listen socket). The TDI provider completes the irp when some data arrives, and we relaunch it when our buffer is empty.

Select is accomplished by calls to PollReeval in ReceiveComplete, SendComplete, Afd*ReadData and Afd*WriteData. Each time PollReeval is called, a select IRP could get completed.

Apart from that the rest is bookkeeping.