1 // Copyright 2018 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef OSP_IMPL_DISCOVERY_MDNS_MDNS_RESPONDER_PLATFORM_H_ 6 #define OSP_IMPL_DISCOVERY_MDNS_MDNS_RESPONDER_PLATFORM_H_ 7 8 #include <vector> 9 10 #include "platform/api/udp_socket.h" 11 12 struct mDNS_PlatformSupport_struct { 13 std::vector<openscreen::UdpSocket*> sockets; 14 }; 15 16 #endif // OSP_IMPL_DISCOVERY_MDNS_MDNS_RESPONDER_PLATFORM_H_ 17