mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
BusyBee is a refined version of the HyperDex event loop. It exposes a "messaging" abstraction on top of TCP and automatically packs/unpacks messages on the wire. At the core of BusyBee is a thread-safe event loop that enables multiple threads to send and receive messages concurrently. WWW: https://github.com/rescrv/busybee PR: 178655 Submitted by: Veniamin Gvozdikov <g.veniamin@googlemail.com>
12 lines
251 B
C++
12 lines
251 B
C++
--- busybee_utils.cc.orig 2013-05-14 11:01:48.938913816 +0000
|
|
+++ busybee_utils.cc 2013-05-14 11:02:14.734910166 +0000
|
|
@@ -27,6 +27,9 @@
|
|
|
|
// POSIX
|
|
#ifndef _MSC_VER
|
|
+#ifdef __FreeBSD__
|
|
+#include <sys/types.h>
|
|
+#endif
|
|
#include <ifaddrs.h>
|
|
#endif
|
|
|