1 Star 0 Fork 4

monkey/nethogs

forked from Gitee 极速下载/nethogs 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
DESIGN 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
Arnout Engelen 提交于 2004-09-15 12:49 . hunting memory management bug
Rough design notitions:
decpcap handles pcap. nethogs.cpp asks to be notified of all IPv4 or IPv6
TCP packets.
the IP callbacks store the source and destination addresses into the user
data. The TCP callback makes a Packet out of it, finds the Connection
corresponding to that packet, and adds the packet to the connection.
If no connection is found, a new one is constructed, and the process
related to that connection is found though getProcess.
If needed, the screen is refreshed.
If, in getProcess, no corresponding process is found, the connection is
added to the 'unknown' process.
To prevent connections from accidentally ending up in the 'unknown' process,
and then staying there indefinitely, we should maybe walk though
the unknownproc's connections whenever the connection-to-inode table is
refreshed.
And maybe, while there are still unknown connections, the connection-to-inode
table should be updated regularly.
There are some global data structures:
connection.cpp:
connections. 'ConnList' list containting all currently known connections.
A connection removes itself from the global 'connections' list in its
destructor.
processes. 'ProcList *' containing all processes.
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/monkey_ma/nethogs.git
git@gitee.com:monkey_ma/nethogs.git
monkey_ma
nethogs
nethogs
build-as-lib

搜索帮助