| // Copyright (c) 2019 The Chromium Authors. All rights reserved. | 
 | // Use of this source code is governed by a BSD-style license that can be | 
 | // found in the LICENSE file. | 
 |  | 
 | #include "net/third_party/quiche/src/quic/tools/quic_epoll_client_factory.h" | 
 |  | 
 | #include <netdb.h> | 
 | #include <sys/socket.h> | 
 | #include <sys/types.h> | 
 |  | 
 | #include <utility> | 
 |  | 
 | #include "net/third_party/quiche/src/quic/core/quic_server_id.h" | 
 | #include "net/third_party/quiche/src/quic/platform/api/quic_socket_address.h" | 
 | #include "net/third_party/quiche/src/quic/tools/quic_client.h" | 
 | #include "net/third_party/quiche/src/common/platform/api/quiche_str_cat.h" | 
 |  | 
 | namespace quic { | 
 |  | 
 | std::unique_ptr<QuicSpdyClientBase> QuicEpollClientFactory::CreateClient( | 
 |     std::string host_for_handshake, | 
 |     std::string host_for_lookup, | 
 |     int address_family_for_lookup, | 
 |     uint16_t port, | 
 |     ParsedQuicVersionVector versions, | 
 |     const QuicConfig& config, | 
 |     std::unique_ptr<ProofVerifier> verifier) { | 
 |   QuicSocketAddress addr = tools::LookupAddress( | 
 |       address_family_for_lookup, host_for_lookup, quiche::QuicheStrCat(port)); | 
 |   if (!addr.IsInitialized()) { | 
 |     QUIC_LOG(ERROR) << "Unable to resolve address: " << host_for_lookup; | 
 |     return nullptr; | 
 |   } | 
 |   QuicServerId server_id(host_for_handshake, port, false); | 
 |   return std::make_unique<QuicClient>(addr, server_id, versions, config, | 
 |                                       &epoll_server_, std::move(verifier), | 
 |                                       nullptr); | 
 | } | 
 |  | 
 | }  // namespace quic |