#ifndef RTC_BASE_NETWORK_CONSTANTS_H_
#define RTC_BASE_NETWORK_CONSTANTS_H_
#include <stdint.h>
#include <string>
namespace rtc {
constexpr uint16_t kNetworkCostMax = …;
constexpr uint16_t kNetworkCostCellular2G = …;
constexpr uint16_t kNetworkCostCellular3G = …;
constexpr uint16_t kNetworkCostCellular = …;
constexpr uint16_t kNetworkCostCellular4G = …;
constexpr uint16_t kNetworkCostCellular5G = …;
constexpr uint16_t kNetworkCostUnknown = …;
constexpr uint16_t kNetworkCostLow = …;
constexpr uint16_t kNetworkCostMin = …;
constexpr uint16_t kNetworkCostVpn = …;
constexpr uint16_t kNetworkCostHigh = …;
enum AdapterType { … };
std::string AdapterTypeToString(AdapterType type);
constexpr AdapterType kAllAdapterTypes[] = …;
}
#endif