Commit 9423b456 authored by Max Kellermann's avatar Max Kellermann

zeroconf-bonjour: use g_htons() instead of htons()

htons() is not available if netinet/in.h is not included.
parent 64209749
...@@ -63,7 +63,7 @@ void init_zeroconf_osx(const char *serviceName) ...@@ -63,7 +63,7 @@ void init_zeroconf_osx(const char *serviceName)
DNSServiceErrorType error = DNSServiceRegister(&dnsReference, DNSServiceErrorType error = DNSServiceRegister(&dnsReference,
0, 0, serviceName, 0, 0, serviceName,
SERVICE_TYPE, NULL, NULL, SERVICE_TYPE, NULL, NULL,
htons(listen_port), 0, g_htons(listen_port), 0,
NULL, NULL,
dnsRegisterCallback, dnsRegisterCallback,
NULL); NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment