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_PUBLIC_CLIENT_CONFIG_H_ 6 #define OSP_PUBLIC_CLIENT_CONFIG_H_ 7 8 #include <cstdint> 9 #include <vector> 10 11 #include "platform/api/network_interface.h" 12 13 namespace openscreen { 14 namespace osp { 15 16 struct ClientConfig { 17 ClientConfig(); 18 ~ClientConfig(); 19 20 // The indexes of network interfaces that should be used by the Open Screen 21 // Library. The indexes derive from the values of 22 // openscreen::InterfaceInfo::index. 23 std::vector<NetworkInterfaceIndex> interface_indexes; 24 }; 25 26 } // namespace osp 27 } // namespace openscreen 28 29 #endif // OSP_PUBLIC_CLIENT_CONFIG_H_ 30