Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2023 HERE Europe B.V.
* Copyright (C) 2023-2025 HERE Europe B.V.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -19,8 +19,10 @@

#pragma once

#include "olp/core/CoreApi.h"
#include "olp/core/http/CertificateSettings.h"
#include <boost/optional/optional.hpp>

#include <olp/core/CoreApi.h>
#include <olp/core/http/CertificateSettings.h>

namespace olp {
namespace http {
Expand All @@ -38,6 +40,12 @@ struct CORE_API NetworkInitializationSettings {
* @brief The custom certificate settings.
*/
CertificateSettings certificate_settings;

/**
* @brief Enable the underlying implementation to produce additional logs.
* Note: This is EXPERIMENTAL settings, only CURL implementation supports it.
*/
boost::optional<std::string> log_file_path;
};

} // namespace http
Expand Down
Loading
Loading