#ifndef NET_BASE_TRANSPORT_INFO_H_
#define NET_BASE_TRANSPORT_INFO_H_
#include <iosfwd>
#include <string>
#include <string_view>
#include "net/base/ip_endpoint.h"
#include "net/base/net_export.h"
#include "net/socket/next_proto.h"
namespace net {
enum class TransportType { … };
NET_EXPORT std::string_view TransportTypeToString(TransportType type);
struct NET_EXPORT TransportInfo { … };
NET_EXPORT std::ostream& operator<<(std::ostream& out, TransportType type);
NET_EXPORT std::ostream& operator<<(std::ostream& out,
const TransportInfo& info);
}
#endif