⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.txt

📁 An implementation of the TCP/IP protocol suite for the LINUX operating system. INET is implemented u
💻 TXT
字号:
  1 
  2 NET2Debugged 1.24 README
  3 ------------------------
  4 
  5 Major Changes
  6 
  7 o       PLIP driver sort of works
  8 o       UDP and RAW have been partially rewritten for speed
  9 o       Internals heavily cleaned up, and memory monitoring of network
 10         memory is now done. (On shift-scroll-lock)
 11 o       ARP should now not generate garbage
 12 o       Using MSG_PEEK can't cause race conditions and crashes
 13 o       Support for bootp clients.
 14 o       Supports RFC931 TAP authd
 15 o       NFS problems with certain types of network configuration are
 16         fixed.
 17 o       Doesn't forward packets for other subnet (can cause packet storms)
 18 o       TCP won't ack rst frames causing packet storms (especially with
 19         Lan workplace for DOS).
 20 o       Numerous fixes for solidity
 21 o       Verify_area used properly.
 22 o       MSG_PEEK is faster again
 23 o       Minor TCP fixes. Hopefully no more TCP lockups (ha!)
 24 o       Donald's promiscuous mode. Go forth and write protocol analysers...
 25 -------------------------------------------------------------------------
 26 NOTE:
 27         Drivers for this stack set must be using alloc_skb() not just
 28 kmalloc. If you get millions of 'non sk_buff...' errors please check the
 29 driver you are using. All Donald's drivers know about this. If you have
 30 a problem driver replace all cases of
 31         
 32         .. =(struct sk_buff *)kmalloc(sizeof(struct sk_buff)+...
 33 
 34 With
 35         ..=alloc_skb(sizeof(struct sk_buff)+...
 36 
 37 And if it uses kfree_s on the packet change that to use kfree_skbmem().
 38 
 39 -------------------------------------------------------------------------
 40 Bug fixes and improvements for this section of the code should be mailed to
 41 iiitac@pyr.swan.ac.uk.
 42 
 43 
 44 Alan

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -