-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FreeBSD support #2508
FreeBSD support #2508
Changes from 2 commits
d603b18
57e365f
383fb2a
90b43c1
0ff09a2
eb8d908
14a4673
054eabc
23a7751
b5925e3
46ad70b
4a24859
401f621
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,6 +207,30 @@ If Doxygen and graphviz are available, the process can also build the documentat | |
|
||
You can also selectively enable/disable other features (e.g., specific plugins you don't care about, or whether or not you want to build the recordings post-processor). Use the --help option when configuring for more info. | ||
|
||
### Building on FreeBSD | ||
pkg install libsrtp2 \ | ||
libusrsctp \ | ||
jansson \ | ||
libnice \ | ||
libmicrohttpd \ | ||
libwebsockets \ | ||
curl \ | ||
opus \ | ||
sofia-sip \ | ||
libogg \ | ||
jansson \ | ||
libnice \ | ||
libconfig \ | ||
libtool \ | ||
gmake \ | ||
autoconf \ | ||
autoconf-wrapper \ | ||
glib | ||
|
||
sh autogen.sh | ||
./configure | ||
gmake | ||
gmake install | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is there a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. gmake is for GNU make. BSDs has its own make |
||
|
||
### Building on MacOS | ||
While most of the above instructions will work when compiling Janus on MacOS as well, there are a few aspects to highlight when doing that. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
#define JANUS_RTP_H | ||
|
||
#include <arpa/inet.h> | ||
#ifdef __MACH__ | ||
#if defined (__MACH__) || defined(__FreeBSD__) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have the same definition in pp-rtp.h, which is in the post-processor code. Have you checked if postprocessing MJR recordings does indeed work as expected on FreeBSD? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry for the delay, I could not find the docs to acutally do a test, but I did change pp-rtp.h |
||
#include <machine/endian.h> | ||
#define __BYTE_ORDER BYTE_ORDER | ||
#define __BIG_ENDIAN BIG_ENDIAN | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -293,7 +293,7 @@ static const char *janus_websockets_reason_string(enum lws_callback_reasons reas | |
#if (LWS_LIBRARY_VERSION_MAJOR >= 4) | ||
static lws_retry_bo_t pingpong = { 0 }; | ||
#endif | ||
|
||
struct in_addr addr; | ||
atoppi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
/* Helper method to return the interface associated with a local IP address */ | ||
static char *janus_websockets_get_interface_name(const char *ip) { | ||
struct ifaddrs *addrs = NULL, *iap = NULL; | ||
|
@@ -591,13 +591,6 @@ int janus_websockets_init(janus_transport_callbacks *callback, const char *confi | |
/* Force single-thread server */ | ||
wscinfo.count_threads = 1; | ||
|
||
atoppi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
/* Create the base context */ | ||
wsc = lws_create_context(&wscinfo); | ||
if(wsc == NULL) { | ||
JANUS_LOG(LOG_ERR, "Error creating libwebsockets context...\n"); | ||
janus_config_destroy(config); | ||
return -1; /* No point in keeping the plugin loaded */ | ||
} | ||
|
||
/* Setup the Janus API WebSockets server(s) */ | ||
item = janus_config_get(config, config_general, janus_config_type_item, "ws"); | ||
|
@@ -618,12 +611,22 @@ int janus_websockets_init(janus_transport_callbacks *callback, const char *confi | |
item = janus_config_get(config, config_general, janus_config_type_item, "ws_ip"); | ||
if(item && item->value) { | ||
ip = (char *)item->value; | ||
if(inet_net_pton(AF_INET, ip, &addr, sizeof(addr))>0) { | ||
atoppi marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code style: there should be spaces before and after the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
wscinfo.options |= LWS_SERVER_OPTION_DISABLE_IPV6; | ||
} | ||
char *iface = janus_websockets_get_interface_name(ip); | ||
if(iface == NULL) { | ||
JANUS_LOG(LOG_WARN, "No interface associated with %s? Falling back to no interface...\n", ip); | ||
} | ||
ip = iface; | ||
//ip = iface; | ||
atoppi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
/* Create the base context */ | ||
wsc = lws_create_context(&wscinfo); | ||
if(wsc == NULL) { | ||
JANUS_LOG(LOG_ERR, "Error creating libwebsockets context...\n"); | ||
janus_config_destroy(config); | ||
return -1; /* No point in keeping the plugin loaded */ | ||
} | ||
/* Prepare context */ | ||
struct lws_context_creation_info info; | ||
memset(&info, 0, sizeof info); | ||
|
@@ -656,19 +659,24 @@ int janus_websockets_init(janus_transport_callbacks *callback, const char *confi | |
JANUS_LOG(LOG_ERR, "Invalid port (%s), falling back to default\n", item->value); | ||
wsport = 8989; | ||
} | ||
int ipv4_only = 0; | ||
char *interface = NULL; | ||
item = janus_config_get(config, config_general, janus_config_type_item, "wss_interface"); | ||
if(item && item->value) | ||
interface = (char *)item->value; | ||
char *ip = NULL; | ||
item = janus_config_get(config, config_general, janus_config_type_item, "wss_ip"); | ||
|
||
atoppi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if(item && item->value) { | ||
ip = (char *)item->value; | ||
if(inet_net_pton(AF_INET, ip, &addr, sizeof(addr))>0) { | ||
ipv4_only = 1; | ||
} | ||
char *iface = janus_websockets_get_interface_name(ip); | ||
if(iface == NULL) { | ||
JANUS_LOG(LOG_WARN, "No interface associated with %s? Falling back to no interface...\n", ip); | ||
} | ||
ip = iface; | ||
//ip = iface; | ||
} | ||
item = janus_config_get(config, config_certs, janus_config_type_item, "cert_pem"); | ||
if(!item || !item->value) { | ||
|
@@ -706,6 +714,9 @@ int janus_websockets_init(janus_transport_callbacks *callback, const char *confi | |
#else | ||
info.options = 0; | ||
#endif | ||
if(ipv4_only) { | ||
info.options |= LWS_SERVER_OPTION_DISABLE_IPV6; | ||
} | ||
/* Create the secure WebSocket context */ | ||
swss = lws_create_vhost(wsc, &info); | ||
if(swss == NULL) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add some more descriptive description here too, as we do for MacOs. The
pkg
line should be "compacted" a bit too (like what we do above foryum
andapt-get
), as there's too many lines now I believe.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done