ZeroconfBonjour: use htons() instead of g_htons()

This commit is contained in:
Max Kellermann 2014-10-10 22:30:38 +02:00
parent 666f700a93
commit 86dd677e0c

View File

@ -26,10 +26,10 @@
#include "Log.hxx"
#include "Compiler.h"
#include <glib.h>
#include <dns_sd.h>
#include <arpa/inet.h>
static constexpr Domain bonjour_domain("bonjour");
class BonjourMonitor final : public SocketMonitor {
@ -82,7 +82,7 @@ BonjourInit(EventLoop &loop, const char *service_name)
DNSServiceErrorType error = DNSServiceRegister(&dnsReference,
0, 0, service_name,
SERVICE_TYPE, nullptr, nullptr,
g_htons(listen_port), 0,
htons(listen_port), 0,
nullptr,
dnsRegisterCallback,
nullptr);