​​ 因为需要​​inet_ntop​​​函数,我要包含​​Ws2tcpip.h​​​头文件.
要复制

const char *inet_ntop(int af, const void *restrict src, char *restrict dst, socklen_t size);

声明为​​D​​:

extern(C) const(char)* inet_ntop(int af, const(void)* src, char* dst, socklen_t size);

还需要:

alias socklen_t = ...;

该定义可在​​系统头文件​​​中找到.也许可以摆脱​​size_t​​​.
在​​​Windows​​​上,它可能具有基于​​字符宽度​​​的不同版本.
​​​win32​​​接口需要​​extern(Windows)​​.

alias socklen_t = int

这是​​链接​​​错误,你需要链接至​​ws2_32.lib​​库.