summaryrefslogtreecommitdiff
path: root/sd/source/ui/remotecontrol/WINNetworkService.cxx
blob: 3643e1d2fd26f817fc3da16d7a6a0f48dad6ef04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <string>
#include <iostream>
#include "WINNetworkService.hxx"
#include "mDNSResponder/dns_sd.h"
#include <sal/log.hxx>

void sd::WINNetworkService::setup()
{
    DNSServiceErrorType err = DNSServiceRegister(&client, 0, 0, NULL, kREG_TYPE, "local", NULL, 1599, 1, "", NULL, this );

    if (kDNSServiceErr_NoError != err)
        SAL_WARN("sdremote.wifi", "DNSServiceRegister failed: " << err);

    // Fail silently
}

void sd::WINNetworkService::clear()
{
    DNSServiceRefDeallocate(client);
}