- 论坛徽章:
- 0
|
This note looks inside the communication under linux to explain the network system of kernel.
User space function -->> Kernel function -->> L4(there is tcp) -->> L3(there is ip) -->> L2 -->> Driver
There is an example of a C/S communication model.
Server:
socket();
bind();
listen();
accept();
recv();
close();
Client:
socket();
connect();
send();
close();
基本就是这个流程,分析每个函数执行后,内核做的相应处理。
全贴上来不太现实,写了40多页呢。。。。。。
另:楼上那个地址是很方便,不过要求网络好,要不会很慢。其实用cscope,source insight本地看也很方便。
[ 本帖最后由 罗格纳 于 2007-8-22 15:54 编辑 ] |
|