进一步检查 C 头文件

Inspecting C Header Files Further

我正在通过查看 Microsoft Visual Basic 2013 中工作数据包嗅探器的代码来学习 C 语言网络。

下面是创建指向 hostent 结构 的指针的代码,获取 localhost 主机名,并将其加载到 hostent结构调用local.

struct hostent *local;
gethostname(hostname, sizeof(hostname))
local = gethostbyname(hostname);

下一部分使地址能够以点分十进制表示法打印。

for (i = 0; local->h_addr_list[i] != 0; ++i)
{
    memcpy(&addr, local->h_addr_list[i], sizeof(struct in_addr));
    printf("  Interface Number : %d Address : %s\n",i,inet_ntoa(addr));
}

现在,我想了解这一切是如何工作的等等。 . .

说我想了解inet_ntoa(),我右击选择Go To DefinitionGo To Declaration 然后它将我发送到 WinSock2.h 显示:

inet_ntoa(
    __in struct in_addr in
);

这似乎是向我展示了参数,而不是函数的工作原理或 return 值。这意味着我必须参考 MSDN 才能了解每次发生的情况。

我的问题是:读取正在发生的事情的代码在哪里,这样我就不必使用文档了?

例如inet_ntoa 函数内容在哪里?

你在这里:

#include <stdio.h>
#include <stdlib.h>
#include <arpa/inet.h>

/* The interface of this function is completely stupid, it requires a
   static buffer.  We relax this a bit in that we allow one buffer for
   each thread.  */

static __thread char buffer[18];

char *inet_ntoa (struct in_addr in)
{
   unsigned char *bytes = (unsigned char *) &in;
   __snprintf (buffer, sizeof (buffer), "%d.%d.%d.%d",
               bytes[0], bytes[1], bytes[2], bytes[3]);

  return buffer;
}

取自inet_ntoa.c, glibc 2.23

请记住,glibc 是开源的,所以如果您想探索一下并了解幕后发生的事情,请不要犹豫并下载它!

此致