// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_SOCKET_TCP_STREAM_ATTEMPT_H_ #define NET_SOCKET_TCP_STREAM_ATTEMPT_H_ #include "base/time/time.h" #include "base/timer/timer.h" #include "net/base/ip_endpoint.h" #include "net/base/net_export.h" #include "net/socket/stream_attempt.h" namespace net { class NetLogWithSource; // Represents a single TCP connection attempt. class NET_EXPORT_PRIVATE TcpStreamAttempt final : public StreamAttempt { … }; } // namespace net #endif // NET_SOCKET_TCP_STREAM_ATTEMPT_H_