Mac OS X (Darwin) 下的 AF_PACKET 等效项

发布于 2024-12-02 13:41:26 字数 75 浏览 1 评论 0原文

我正在尝试在 Mac OS X 上编译一个使用 AF_PACKET 套接字和 libpcap 的 C 程序,OS X 中的等效项是什么?

I am trying to compile a C program on Mac OS X that uses AF_PACKET sockets and libpcap, what is the equivalent in OS X?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独孤求败 2024-12-09 13:41:26

Mac OS X(以及其他 BSD 风格的操作系统,例如 FreeBSD、NetBSD、OpenBSD、Dragonfly BSD 等)中与 AF_PACKET 套接字最接近的等效项是 BPF,但它的工作方式不太像 AF_PACKET 套接字;请参阅“man bpf”。

Mac OS X(以及其他 BSD 风格的 UN*Xes)中的 libpcap 完全等效的是 libpcap。 (libpcap 也与许多其他 UN*X 中的 libpcap 完全相同,但它并不作为所有这些 UN*X 的标准部分提供,而它确实作为Mac OS X 和其他 BSD 风格的 UN*X。)

The closest equivalent to AF_PACKET sockets in Mac OS X (and in other BSD-flavored OSes, such as FreeBSD, NetBSD, OpenBSD, Dragonfly BSD, and so on) is BPF, but it doesn't work very much like AF_PACKET sockets; see "man bpf".

The exact equivalent to libpcap in Mac OS X (and in other BSD-flavored UN*Xes) is, well, libpcap. (libpcap is also the exact equivalent to libpcap in many other UN*Xes, but it doesn't ship as a standard part of all of those UN*Xes, whereas it does ship as a standard part of Mac OS X and the other BSD-flavored UN*Xes.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文