blob: c6508eae9ab3cd8f3f9e6f9d58617235bb55a8e5 [file] [log] [blame]
// Copyright 2020 The Chromium OS 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 "attestation/pca_agent/server/default_transport_factory.h"
#include <memory>
#include <string>
#include <brillo/http/http_transport.h>
namespace attestation {
namespace pca_agent {
std::shared_ptr<brillo::http::Transport>
DefaultTransportFactory::CreateWithProxy(const std::string& proxy_server) {
return brillo::http::Transport::CreateDefaultWithProxy(proxy_server);
}
} // namespace pca_agent
} // namespace attestation