Mac OS X (Darwin) 下的 AF_PACKET 等效项
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.)