Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 GDB 调试 C 代码,我看到 ip 地址显示为 -
npc_srcip = 0x7fa06e7fd430,npc_dstip = 0x7fa06e7fd434。将其转换为十进制点分格式的方法是什么?
这些看起来像指针,因为它们大于 32 位。您可能希望取消对它们的引用。然后将每个字节从十六进制转换为十进制,你就得到了你的 IP 地址。这就像: x/4ub npc_srcip应该给你零件。
x/4ub npc_srcip