tcp.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. How the new TCP output machine [nyi] works.
  2. Data is kept on a single queue. The skb->users flag tells us if the frame is
  3. one that has been queued already. To add a frame we throw it on the end. Ack
  4. walks down the list from the start.
  5. We keep a set of control flags
  6. sk->tcp_pend_event
  7. TCP_PEND_ACK Ack needed
  8. TCP_ACK_NOW Needed now
  9. TCP_WINDOW Window update check
  10. TCP_WINZERO Zero probing
  11. sk->transmit_queue The transmission frame begin
  12. sk->transmit_new First new frame pointer
  13. sk->transmit_end Where to add frames
  14. sk->tcp_last_tx_ack Last ack seen
  15. sk->tcp_dup_ack Dup ack count for fast retransmit
  16. Frames are queued for output by tcp_write. We do our best to send the frames
  17. off immediately if possible, but otherwise queue and compute the body
  18. checksum in the copy. 
  19. When a write is done we try to clear any pending events and piggy back them.
  20. If the window is full we queue full sized frames. On the first timeout in
  21. zero window we split this.
  22. On a timer we walk the retransmit list to send any retransmits, update the
  23. backoff timers etc. A change of route table stamp causes a change of header
  24. and recompute. We add any new tcp level headers and refinish the checksum
  25. before sending.