Skip to content

Commit 848a5d7

Browse files
authored
[dnssd] add stub/empty implementation for new otPlatDnssd APIs (#2818)
Adds empty implementation for `otPlatDnssdStartRecordQuerier()` and `otPlatDnssdStopRecordQuerier()` in the `posix/dnssd.cpp` file.
1 parent bd18a44 commit 848a5d7

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

src/host/posix/dnssd.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,18 @@ void otPlatDnssdStopIp4AddressResolver(otInstance *aInstance, const otPlatDnssdA
181181
OTBR_UNUSED_VARIABLE(aResolver);
182182
}
183183

184+
void otPlatDnssdStartRecordQuerier(otInstance *aInstance, const otPlatDnssdRecordQuerier *aQuerier)
185+
{
186+
OTBR_UNUSED_VARIABLE(aInstance);
187+
OTBR_UNUSED_VARIABLE(aQuerier);
188+
}
189+
190+
void otPlatDnssdStopRecordQuerier(otInstance *aInstance, const otPlatDnssdRecordQuerier *aQuerier)
191+
{
192+
OTBR_UNUSED_VARIABLE(aInstance);
193+
OTBR_UNUSED_VARIABLE(aQuerier);
194+
}
195+
184196
//----------------------------------------------------------------------------------------------------------------------
185197

186198
namespace otbr {

0 commit comments

Comments
 (0)