标签:pre 函数 fir lan fnr soc 应用程序 lib 读取数据
要明白 telnetlib 中各个 read 函数的意义,首先要了解 telnetlib 的工作原理。 telnetlib 首先通过 socket 连接从网络接收数据,把数据存储到自己的 raw queque 中,然后对其进行(telnet 协议相关的)处理(cook)。处理结果存放在 cooked queue 中供应用程序取用。整个过程如下图.
---------, ,----------, ,-----, ,--------, ,-----------,
network |=====>|socket buf|=====>|raw-q|=====>|cooked-q|=====>|application|
---------` `----------` `-----` `--------` `-----------`
| | | | |
| | | | |
| | | |---------------|
| | | read_very_lazy |
| | | |
| | |------------------------------|
| | read_lazy |
| | |
| |------------------------------------------------|
| read_very_eager/read_eager |
| |
|----------------------------------------------------------------|
| read_until/read_all/read_some/expect |
各种 read 函数的不同就在于它们所包涵的阶段不同。
cookedq 成功读取到数据就返回,而 read_very_eager 会试图读尽可能多的数据。
标签:pre 函数 fir lan fnr soc 应用程序 lib 读取数据
原文地址:https://www.cnblogs.com/slqt/p/9639084.html