• TCP/IP详解 卷2 实现(英文版)
  • TCP/IP详解 卷2 实现(英文版)
  • TCP/IP详解 卷2 实现(英文版)
  • TCP/IP详解 卷2 实现(英文版)
  • TCP/IP详解 卷2 实现(英文版)
21年品牌 40万+商家 超1.5亿件商品

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

书脊有磨损

218 九品

仅1件

河北邯郸
认证卖家担保交易快速发货售后保障

作者[美]加里·R.赖特(Gary R.Wright)、[美]理查德·史蒂文斯(W.Richard Stevens) 著

出版社人民邮电出版社

出版时间2016-01

版次1

装帧平装

货号C1036

上书时间2025-01-02

一得书苑

十一年老店
已实名 已认证 进店 收藏店铺

   商品详情   

品相描述:九品
图书标准信息
  • 作者 [美]加里·R.赖特(Gary R.Wright)、[美]理查德·史蒂文斯(W.Richard Stevens) 著
  • 出版社 人民邮电出版社
  • 出版时间 2016-01
  • 版次 1
  • ISBN 9787115401281
  • 定价 139.00元
  • 装帧 平装
  • 开本 16开
  • 纸张 胶版纸
  • 页数 1131页
  • 字数 1868千字
  • 正文语种 英语
  • 原版书名 TCP/IP Illustrated, Volume 2: The Implementation
【内容简介】
  本书是TCP/IP领域的经典之作!书中完整而详细地介绍了TCP/IP协议是如何实现的。本书介绍了一个实际的TCP/IP实现,并给出了这一实现的完整源代码,帮助读者全面掌握TCP/IP的实现。本书内容详尽,几乎每章都提供精选的习题,并在附录中提供了部分习题的答案。
【作者简介】
  Gary R. Wright,研究TCP/IP多年。他是Connix公司的董事长,Connix公司主要提供Internet接入和咨询服务。

  W. Richard Stevens(1951—1999),国际知名的UNIX和网络专家,备受赞誉的技术作家。生前著有《TCP/IP详解》(三卷)、《UNIX环境高级编程》和《UNIX网络编程》(两卷),均为不朽的经典著作。
【目录】
Chapter1.Introduction/概述    1
1.1 Introduction/概述 1
1.2 SourceCodePresentation/源代码表示 1
1.3 History/历史 3
1.4 ApplicationProgrammingInterfaces/应用编程接口 5
1.5 ExampleProgram/示例程序 5
1.6 SystemCallsandLibraryFunctions/系统调用和库函数 7
1.7 NetworkImplementationOverview/网络实现概述 9
1.8 Descriptors/描述符 10
1.9 Mbufs(MemoryBuffers)andOutputProcessing/Mbuf与输出处理 15
1.10 InputProcessing/输入处理 19
1.11 NetworkImplementationOverviewRevisited/网络实现概述(续) 22
1.12 InterruptLevelsandConcurrency/中断级别与并发 23
1.13 SourceCodeOrganization/源代码组织 26
1.14 TestNetwork/测试网络 28
1.15 Summary/小结 29

Chapter 2.Mbufs:MemoryBuffers/Mbuf:存储器缓冲区 31
2.1 Introduction/概述 31
2.2 CodeIntroduction/代码介绍 36
2.3 MbufDefinitions/Mbuf定义 37
2.4 mbufStructure/mbuf结构 38
2.5 SimpleMbufMacrosandFunctions/简单的Mbuf宏和函数 40
2.6 m_devgetandm_pullupFunctions/m_devget和m_pullup函数 44
2.7 SummaryofMbufMacrosandFunctions/Mbuf宏和函数小结 51
2.8 SummaryofNet/3NetworkingDataStructures/Nef/3联网数据结构小结 54
2.9 m_copyandClusterReferenceCounts/m_copy和簇引用计数 56
2.10 Alternatives/其他选择 60
2.11 Summary/小结 60

Chapter 3.InterfaceLayer/接口层 63
3.1 Introduction/概述 63
3.2 CodeIntroduction/代码介绍 64
3.3 ifnetStructure/ifnet结构 65
3.4 ifaddrStructure/ifaddr结构 73
3.5 sockaddrStructure/sockaddr结构 74
3.6 ifnetandifaddrSpecialization/ifnet和ifaddr专用化 76
3.7 NetworkInitializationOverview/网络初始化概述 77
3.8 EthernetInitialization/以太网初始化 80
3.9 SLIPInitialization/SLIP初始化 82
3.10 LoopbackInitialization/环回初始化 85
3.11 if_attachFunction/if_attach函数 85
3.12 ifinitFunction/ifinit函数 93
3.13 Summary/小结 94

Chapter 4.Interfaces:Ethernet/接口:以太网95
4.1 Introduction/概述 95
4.2 CodeIntroduction/代码介绍 96
4.3 EthernetInterface/以太网接口 98
4.4 ioctlSystemcall/ioctl系统调用 114
4.5 Summary/小结 125

Chapter 5.Interfaces:SLIPandLoopback/接口:SLIP和环回127
5.1 Introduction/概述 127
5.2 CodeIntroduction/代码介绍 127
5.3 SLIPInterface/SLIP接口 128
5.4 LoopbackInterface/环回接口 150
5.5 Summary/小结 153

Chapter 6.IPAddressing/IP编址 155
6.1 Introduction/概述 155
6.2 CodeIntroduction/代码介绍 158
6.3 InterfaceandAddressSummary/接口和地址小结 158
6.4 sockaddr_inStructure/sockaddr_in结构 160
6.5 in_ifaddrStructure/in_ifaddr结构 161
6.6 AddressAssignment/地址指派 161
6.7 InterfaceioctlProcessing/接口ioctl处理 177
6.8 InternetUtilityFunctions/Internet实用函数 181
6.9 ifnetUtilityFunctions/ifnet实用函数 182
6.10 Summary/小结 183

Chapter 7.DomainsandProtocols/域和协议185
7.1 Introduction/概述 185
7.2 CodeIntroduction/代码介绍 186
7.3 domainStructure/domain结构 187
7.4 protoswStructure/protosw结构 188
7.5 IPdomainandprotoswStructures/IP的domain和protosw结构 191
7.6 pffindprotoandpffindtypeFunctions/pffindproto和pffindtype函数 196
7.7 pfctlinputFunction/pfctlinput函数 198
7.8 IPInitialization/IP初始化 199
7.9 sysctlSystemcall/sysctl系统调用 201
7.10 Summary/小结 204

Chapter 8.IP:InternetProtocol/IP:网际协议 205
8.1 Introduction/概述 205
8.2 CodeIntroduction/代码介绍 206
8.3 IPPackets/IP分组 210
8.4 InputProcessing:ipintrFunction/输入处理:ipintr函数 212
8.5 Forwarding:ip_forwardFunction/转发:ip_forward函数 220
8.6 OutputProcessing:ip_outputFunction/输出处理:ip_output函数 228
8.7 InternetChecksum:in_cksumFunction/Internet检验和:in_cksum函数 234
8.8 setsockoptandgetsockoptSystemcalls/setsockopt和getsockopt系统调用 239
8.9 ip_sysctlFunction/ip_sysctl函数 244
8.10 Summary/小结 245

Chapter 9.IPOptionProcessing/IP选项处理247
9.1 Introduction/概述 247
9.2 CodeIntroduction/代码介绍 247
9.3 OptionFormat/选项格式 248
9.4 ip_dooptionsFunction/ip_dooptions函数 249
9.5 RecordRouteOption/记录路由选项 252
9.6 SourceandRecordRouteOptions/源站和记录路由选项254
9.7 TimestampOption/时间戳选项 261
9.8 ip_insertoptionsFunction/ip_insertoptions函数 265
9.9 ip_pcboptsFunction/ip_pcbopts函数 269
9.10 Limitations/一些限制 272
9.11 Summary/小结 272

Chapter 10.IPFragmentationandReassembly/IP分片与重装275
10.1 Introduction/概述 275
10.2 CodeIntroduction/代码介绍 277
10.3 Fragmentation/分片278
10.4 ip_optcopyFunction/ip_optcopy函数 282
10.5 Reassembly/重装 283
10.6 ip_reassFunction/ip_reass函数 286
10.7 ip_slowtimoFunction/ip_slowtimo函数 298
10.8 Summary/小结 300

Chapter 11.ICMP:InternetControlMessageProtocol/ICMP:因特网控制消息协议301
11.1 Introduction/概述 301
11.2 CodeIntroduction/代码介绍 305
11.3 icmpStructure/icmp结构308
11.4 ICMPprotoswStructure/ICMP的protosw结构309
11.5 InputProcessing:icmp_inputFunction/输入处理:icmp_input函数 310
11.6 ErrorProcessing/错误处理313
11.7 RequestProcessing/请求处理316
11.8 RedirectProcessing/重定向处理321
11.9 ReplyProcessing/回答处理323
11.10 OutputProcessing/输出处理324
11.11 icmp_errorFunction/icmp_error函数 324
11.12 icmp_reflectFunction/icmp_reflect函数 328
11.13 icmp_sendFunction/icmp_send函数 333
11.14 icmp_sysctlFunction/icmp_sysctl函数 334
11.15 Summary/小结 335

Chapter 12.IPMulticasting/IP多播337
12.1 Introduction/概述 337
12.2 CodeIntroduction/代码介绍 340
12.3 EthernetMulticastAddresses/以太网多播地址 341
12.4 ether_multiStructure/ether_multi结构342
12.5 EthernetMulticastReception/以太网多播接收344
12.6 in_multiStructure/in_multi结构345
12.7 ip_moptionsStructure/ip_moptions结构 347
12.8 MulticastSocketOptions/多播的套接字选项 348
12.9 MulticastTTLValues/多播的TTL值348
12.10 ip_setmoptionsFunction/ip_setmoptions函数 351
12.11 JoininganIPMulticastGroup/加入一个IP多播组355
12.12 LeavinganIPMulticastGroup/离开一个IP多播组366
12.13 ip_getmoptionsFunction/ip_getmoptions函数 371
12.14 MulticastInputProcessing:ipintrFunction/多播输入处理:ipintr函数 373
12.15 MulticastOutputProcessing:ip_outputFunction/多播输出处理:ip_output函数 375
12.16 PerformanceConsiderations/性能的考虑379
12.17 Summary/小结 379

Chapter 13.IGMP:InternetGroupManagementProtocol/Intemet组管理协议381
13.1 Introduction/概述 381
13.2 CodeIntroduction/代码介绍 382
13.3 igmpStructure/igmp结构 384
13.4 IGMPprotoswStructure/IGMP的protosw结构 384
13.5 JoiningaGroup:igmp_joingroupFunction/加入一个组:igmp_joingroup函数 386
13.6 igmp_fasttimoFunction/igmp_fasttimo函数 387
13.7 InputProcessing:igmp_inputFunction/输入处理:igmp_input函数 391
13.8 LeavingaGroup:igmp_leavegroupFunction/离开一个组:igmp_leavegroup函数 395
13.9 Summary/小结 396

Chapter 14.IPMulticastRouting/IP多播选路 397
14.1 Introduction/概述397
14.2 CodeIntroduction/代码介绍398
14.3 MulticastOutputProcessingRevisited/多播输出处理(续) 399
14.4 mroutedDaemon/mrouted守护进程 401
14.5 VirtualInterfaces/虚拟接口 404
14.6 IGMPRevisited/IGMP(续) 411
14.7 MulticastRouting/多播选路 416
14.8 MulticastForwarding:ip_mforwardFunction/多播转发:ip_mforward函数 424
14.9 Cleanup:ip_mrouter_doneFunction/清理:ip_mrouter_done函数 433
14.10 Summary/小结 434

Chapter 15.SocketLayer/套接字层 435
15.1 Introduction/概述435
15.2 CodeIntroduction/代码介绍436
15.3 socketStructure/socket结构 437
15.4 SystemCalls/系统调用 441
15.5 Processes,Descriptors,andSockets/进程、描述符和套接字 445
15.6 socketSystemCall/socket系统调用447
15.7 getsockandsockargsFunctions/getsock和sockargs函数 451
15.8 bindSystemCall/bind系统调用453
15.9 1istenSystemCall/1isten系统调用 455
15.10 tsleepandwakeupFunctions/tsleep和wakeup函数 456
15.11 acceptSystemCall/accept系统调用457
15.12 sonewconnandsoisconnectedFunctions/sonewconn和soisconnected函数 461
15.13 connectSystemcall/connect系统调用 464
15.14 shutdownSystemcall/shutdown系统调用 468
15.15 c1oseSystemcall/c1ose系统调用 471
15.16 Summary/小结 474

Chapter 16.SocketI/O/套接字I/O 475
16.1 Introduction/概述475
16.2 CodeIntroduction/代码介绍475
16.3 SocketBuffers/套接字缓冲区 476
16.4 write,writev,sendto,andsendmsgSystemcalls/write、writev、sendto和sendmsg系统调用480
16.5 sendmsgSystemcall/sendmsg系统调用 483
16.6 senditFunction/sendit函数 485
16.7 sosendFunction/sosend函数 489
16.8 read,readv,recvfrom,andrecvmsgSystemcalls/read、readv、recvfrom和recvmsg系统调用 500
16.9 recvmsgSystemcall/recvmsg系统调用 501
16.10 recvitFunction/recvit函数 503
16.11 soreceiveFunction/soreceive函数 505
16.12 soreceiveCode/soreceive代码510
16.13 se1ectSystemcall/se1ect系统调用 524
16.14 Summary/小结 534

Chapter 17.SocketOptions/套接字选项 537
17.1 Introduction/概述537
17.2 CodeIntroduction/代码介绍 538
17.3 setsockoptSystemcall/setsockopt系统调用 539
17.4 getsockoptSystemcall/getsockopt系统调用 545
17.5 font1andioct1Systemcall/font1和ioct1系统调用 548
17.6 getsocknameSystemcall/getsockname系统调用 554
17.7 getpeernameSystemcall/getpeername系统调用 554
17.8 Summary/小结 557

Chapter 18.RadixTreeRoutingTables/Radix树选路表559
18.1 Introduction/概述559
18.2 RoutingTableStructure/选路表结构 560
18.3 RoutingSockets/选路套接字 569
18.4 CodeIntroduction/代码介绍570
18.5 RadixNodeDataStructures/Radix节点数据结构 573
18.6 RoutingStructures/选路结构 578
18.7 Initialization:route_initandrtable_initFunctions/初始化:route_init和rtable_init函数 581
18.8 Initialization:rn_initandrn_initheadFunctions/初始化:rn_init和rn_inithead函数 584
18.9 DuplicateKeysandMaskLists/重复键和掩码列表 587
18.10 rn_matchFunction/rn_match函数 591
18.11 rn_searchFunction/rn_search函数 599
18.12 Summary/小结 599

Chapter 19.RoutingRequestsandRoutingMessages/选路请求和选路消息601
19.1 Introduction/概述601
19.2 rtallocandrtalloclFunctions/rtalloc和rtallocl函数 601
19.3 RTFREEMacroandrtfreeFunction/RTFREE宏和rtfree函数 604
19.4 rtrequestFunction/rtrequest函数 607
19.5 rt_setgateFunction/rt_setgate函数 612
19.6 rtinitFunction/rtinit函数 615
19.7 rtredirectFunction/rtredirect函数 617
19.8 RoutingMessageStructures/选路消息结构 621
19.9 rt_missmsgFunction/rt_missmsg函数 625
19.10 rt_ifmsgFunction/rt_ifmsg函数 627
19.11 rt_newaddrmsgFunction/rt_newaddrmsg函数 628
19.12 rt_msg1Function/rt_msg1函数 630
19.13 rt_msg2Function/rt_msg2函数 632
19.14 sysctl_rtableFunction/sysctl_rtable函数 635
19.15 sysctl_dumpentryFunction/sysctl_dumpentry函数 640
19.16 sysctl_iflistFunction/sysctl_iflist函数 642
19.17 Summary/小结 644

Chapter 20.RoutingSockets/选路套接字 645
20.1 Introduction/概述645
20.2 routedomainandprotoswStructures/routedomain和protosw结构 646
20.3 RoutingControlBlocks/选路控制块 647
20.4 raw_initFunction/raw_init函数 647
20.5 route_outputFunction/route_output函数 648
20.6 rt_xaddrsFunction/rt_xaddrs函数 660
20.7 rt_setmetricsFunction/rt_setmetrics函数 661
20.8 raw_inputFunction/raw_input函数 662
20.9 route_usrreqFunction/route_usrreq函数 664
20.10 raw_usrreqFunction/raw_usrreq函数 666
20.11 raw_attach,raw_detach,andraw_disconnectFunctions/raw_attach、raw_detach和raw_disconnect函数 671
20.12 Summary/小结 672

Chapter 21.ARP:AddressResolutionProtocol/ARP:地址解析协议 675
21.1 Introduction/概述675
21.2 ARPandtheRoutingTable/ARP及选路表 675
21.3 CodeIntroduction/代码介绍678
21.4 ARPStructures/ARP结构 681
21.5 arpwhohasFunction/arpwhohas函数 683
21.6 arprequestFunction/arprequest函数 684
21.7 arpintrFunction/arpintr函数 687
21.8 in_arpinputFunction/in_arpinput函数 688
21.9 ARPTimerFunctions/ARP定时器函数 694
21.10 arpresolveFunction/arpresolve函数 696
21.11 arplookupFunction/arplookup函数 701
21.12 ProxyARP/代理ARP 703
21.13 arp_rtrequestFunction/arp_rtrequest函数 704
21.14 ARPandMulticasting/ARP和多播 710
21.15 Summary/小结 711

Chapter 22.ProtocolControlBlocks/协议控制块 713
22.1 Introduction/概述713
22.2 CodeIntroduction/代码介绍715
22.3 inpcbStructure/inpcb结构716
22.4 in_pcballocandin_pcbdetachFunctions/in_pcballoc和in_pcbdetach函数 717
22.5 Binding,Connecting,andDemultiplexing/绑定、连接和多路分配 719
22.6 in_pcblookupFunction/in_pcblookup函数 724
22.7 in_pcbbindFunction/in_pcbbind函数 728
22.8 in_pcbconnectFunction/in_pcbconnect函数 735
22.9 in_pcbdisconnectFunction/in_pcbdisconnect函数 741
22.10 in_setsockaddrandin_setpeeraddrFunctions/in_setsockaddr和in_setpeeraddr函数 741
22.11 in_pcbnotify,in_rtchange,andin_losingFunctions/in_pcbnotify、in_rtchange和in_losing函数 742
22.12 ImplementationRefinements/实现细化 750
22.13 Summary/小结 751

Chapter 23.UDP:UserDatagramProtocol/UDP:用户数据报协议755
23.1 Introduction/概述755
23.2 CodeIntroduction/代码介绍755
23.3 UDPprotoswStructure/UDP的protosw结构 758
23.4 UDPHeader/UDP首部 759
23.5 udp_initFunction/udp_init函数 760
23.6 udp_outputFunction/udp_output函数 760
23.7 udp_inputFunction/udp_input函数 769
23.8 udp_saveoptFunction/udp_saveopt函数 781
23.9 udp_ct1inputFunction/udp_ct1input函数 782
23.10 udp_usrreqFunction/udp_usrreq函数 784
23.11 udp_sysct1Function/udp_sysct1函数 790
23.12 ImplementationRefinements/实现细化 791
23.13 Summary/小结 793

Chapter 24.TCP:TransmissionControlProtocol/TCP:传输控制协议 795
24.1 Introduction/概述795
24.2 CodeIntroduction/代码介绍795
24.3 TCPprotoswStructure/TCP的protosw结构801
24.4 TCPHeader/TCP首部 801
24.5 TCPControlBlock/TCP控制块 803
24.6 TCPStateTransitionDiagram/TCP状态变迁图 805
24.7 TCPSequenceNumbers/TCP序列号807
24.8 tcp_initFunction/tcp_init函数 812
24.9 Summary/小结 815

Chapter 25.TCPTimers/TCP定时器817
25.1 Introduction/概述817
25.2 CodeIntroduction/代码介绍819
25.3 tcp_canceltimersFunction/tcp_canceltimers函数 821
25.4 tcp_fasttimoFunction/tcp_fasttimo函数 821
25.5 tcp_s1owtimoFunction/cp_s1owtimo函数 822
25.6 tcp_timersFunction/cp_timers函数 824
25.7 RetransmissionTimerCalculations/重传定时器计算 831
25.8 tcp_newtcpcbFunction/tcp_newtcpcb函数 833
25.9 tcp_setpersistFunction/tcp_setpersist函数 835
25.10 tcp_xmit_timerFunction/tcp_xmit_timer函数 836
25.11 RetransmissionTimeout:tcp_timersFunction/重传超时:tcp_timers函数 841
25.12 AnRTTExample/RTT示例846
25.13 Summary/小结 848

Chapter 26.TCPOutput/TCP输出 851
26.1 Introduction/概述851
26.2 tcp_outputOverview/tcp_output概述 852
26.3 DetermineifaSegmentShouldbeSent/确定一个段是否应该发送852
26.4 TCPOptions/TCP选项 864
26.5 WindowScaleOption/窗口缩放选项 866
26.6 TimestampOption/时间戳选项 866
26.7 SendaSegment/发送一个段 871
26.8 tcp_templateFunction/tcp_template函数 884
26.9 tcp_respondFunction/tcp_respond函数 885
26.10 Summary/小结 888

Chapter 27.TCPFunctions/TCP函数 891
27.1 Introduction/概述891
27.2 tcp_drainFunction/tcp_drain函数 892
27.3 tcp_dropFunction/tcp_drop函数 892
27.4 tcp_closeFunction/tcp_close函数 893
27.5 tcp_mssFunction/tcp_mss函数 897
27.6 tcp_ctlinputFunction/tcp_ctlinput函数 904
27.7 tcp_notifyFunction/tcp_notify函数 904
27.8 tcp_quenchFunction/tcp_quench函数 906
27.9 TCP_REASSMacroandtcp_reassFunction/TCP_REASS宏tcp_reass函数 906
27.10 tcp_traceFunction/tcp_trace函数 916
27.11 Summary/小结 920

Chapter 28.TCPInput/TCP输入923
28.1 Introduction/概述923
28.2 PreliminaryProcessing/初步处理925
28.3 tcp_dooptionsFunction/tcp_dooptions函数 933
28.4 HeaderPrediction/首部预测 934
28.5 TCPInput:SlowPathProcessing/TCP输入:慢路径处理 941
28.6 InitiationofPassiveOpen,CompletionofActiveOpen/被动打开的开始,主动打开的完成 942
28.7 PAWS:ProtectionAgainstWrappedSequenceNumbers/PAWS:包装序列号保护 951
28.8 TrimSegmentsoDataisWithinWindow/修剪段使数据在窗口中 954
28.9 Self-ConnectsandSimultaneousOpens/自连接和同时打开 960
28.10 RecordTimestamp/记录时间戳 963
28.11 RSTProcessing/RST处理 963
28.12 Summary/小结 965

Chapter 29.TCPInput(Continued)/TCP输入(续)967
29.1 Introduction/概述967
29.2 ACKProcessingOverview/ACK处理概述 967
29.3 CompletionofPassiveOpensandSimultaneousOpens/被动打开和同时打开的完成967
29.4 FastRetransmitandFastRecoveryAlgorithms/快速重传及快速恢复算法 970
29.5 ACKProcessing/ACK处理974
29.6 UpdateWindowInformation/更新窗口信息 981
29.7 UrgentModeProcessing/紧急模式处理983
29.8 tcp_pulloutofbandFunction/tcp_pulloutofband函数 986
29.9 ProcessingofReceivedData/接收到的数据的处理 988
29.10 FINProcessing/FIN处理990
29.11 FinalProcessing/最终处理992
29.12 ImplementationRefinements/实现细化994
29.13 HeaderCompression/首部压缩 995
29.14 Summary/小结 1004

Chapter 30.TCPUserRequests/TCP用户请求1007
30.1 Introduction/概述1007
30.2 tcp_usrreqFunction/tcp_usrreq函数 1007
30.3 tcp_attachFunction/tcp_attach函数 1018
30.4 tcp_disconnectFunction/tcp_disconnect函数 1019
30.5 tcp_usrclosedFunction/tcp_usrclosed函数 1021
30.6 tcp_ctloutputFunction/tcp_ctloutput函数 1022
30.7 Summary/小结 1025

Chapter 31.BPF:BSDPacketFilter/BPF:BSD分组过滤程序1027
31.1 Introduction/概述1027
31.2 CodeIntroduction/代码介绍1028
31.3 bpf_ifStructure/bpf_if结构 1029
31.4 bpf_dStructure/bpf_d结构 1032
31.5 BPFInput/BPF输入 1040
31.6 BPFOutput/BPF输出1046
31.7 Summary/小结 1047

Chapter 32.原始IP 1049
32.1 Introduction/概述1049
32.2 CodeIntroduction/代码介绍1050
32.3 RawIPprotoswStructure/原始IP的protosw结构1051
32.4 rip_initFunction/rip_init函数 1053
32.5 rip_inputFunction/rip_input函数 1053
32.6 rip_outputFunction/rip_output函数 1056
32.7 rip_usrreqFunction/rip_usrreq函数 1058
32.8 rip_ctloutputFunction/rip_ctloutput函数 1063
32.9 Summary/小结 1065

Epilogue /后记1067

Appendix A.SolutionstoSelectedExercises/精选习题的解答1069

Appendix B.SourceCodeAvailability/源代码的获取1093

Appendix C.RFC1122Compliance/RFC1122的有关内容1097
C.1 Link-LayerRequirements/链路层要求1097
C.2 IPRequirements/IP要求1098
C.3 IPOptionsRequirements/IP选项要求 1102
C.4 IPFragmentationandReassemblyRequirements/分片和组装要求1104
C.5 ICMPRequirements/ICMP要求1105
C.6 MulticastingRequirements/多播要求 1110
C.7 IGMPRequirements/IGMP要求1111
C.8 RoutingRequirements/选路要求1111
C.9 ARPRequirements/ARP要求 1113
C. 10UDPRequirements/UDP要求 1113
C. 11TCPRequirements/TCP要求 1115

Bibliography /参考文献 1125
点击展开 点击收起

—  没有更多了  —

以下为对购买帮助不大的评价

此功能需要访问孔网APP才能使用
暂时不用
打开孔网APP