您现在的位置:首页 > 知识库 > 电子信息 >TCP IP详解 卷2 实现(英文版)2016年
TCP IP详解 卷2 实现(英文版)2016年

TCP IP详解 卷2 实现(英文版)2016年

资料大小: 178.63 MB
文档格式: PDF文档
资料语言: 英文版
资料类别: 电子信息
更新日期: 2020-07-22
下载说明:
推荐信息: 详解   英文   史蒂文斯   赖特   实现

本地下载(30点)  备用下载(30点)

内容简介
TCP IP详解 卷2 实现(英文版)
出版时间: 2016年版
内容简介
  本书是TCP/IP领域的经典之作!书中完整而详细地介绍了TCP/IP协议是如何实现的。本书介绍了一个实际的TCP/IP实现,并给出了这一实现的完整源代码,帮助读者全面掌握TCP/IP的实现。本书内容详尽,几乎每章都提供精选的习题,并在附录中提供了部分习题的答案。
目录
Chapter 1. Introduction/概述    1 1.1 Introduction / 概述 1 1.2 Source Code Presentation / 源代码表示 1 1.3 History / 历史 3 1.4 Application Programming Interfaces / 应用编程接口 5 1.5 Example Program / 示例程序 5 1.6 System Calls and Library Functions / 系统调用和库函数 7 1.7 Network Implementation Overview / 网络实现概述 9 1.8 Descriptors / 描述符 10 1.9 Mbufs (Memory Buffers) and Output Processing / Mbuf与输出处理 15 1.10 Input Processing / 输入处理 19 1.11 Network Implementation Overview Revisited / 网络实现概述(续) 22 1.12 Interrupt Levels and Concurrency / 中断级别与并发 23 1.13 Source Code Organization / 源代码组织 26 1.14 Test Network / 测试网络 28 1.15 Summary / 小结 29 Chapter 2. Mbufs: Memory Buffers / Mbuf:存储器缓冲区 31 2.1 Introduction / 概述 31 2.2 Code Introduction / 代码介绍 36 2.3 Mbuf Definitions / Mbuf定义 37 2.4 mbuf Structure / mbuf结构 38 2.5 Simple Mbuf Macros and Functions / 简单的Mbuf宏和函数 40 2.6 m_devget and m_pullup Functions / m_devget和m_pullup函数 44 2.7 Summary of Mbuf Macros and Functions / Mbuf宏和函数小结 51 2.8 Summary of