From: Kefu Chai Date: Sat, 26 May 2018 11:25:56 +0000 (+0800) Subject: crimson: add poor man's md_config_t X-Git-Tag: v14.0.1~1115^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b00346c759f4a2011892cb513a672e21fb029d4b;p=ceph.git crimson: add poor man's md_config_t Signed-off-by: Kefu Chai --- diff --git a/src/crimson/net/Config.h b/src/crimson/net/Config.h new file mode 100644 index 0000000000000..21b0a4b5269a1 --- /dev/null +++ b/src/crimson/net/Config.h @@ -0,0 +1,25 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +// XXX: a poor man's md_config_t +#pragma once + +#include "include/msgr.h" +#include + +namespace ceph::net { + +using namespace std::literals::chrono_literals; + +constexpr struct simple_md_config_t { + uint32_t host_type = CEPH_ENTITY_TYPE_OSD; + bool cephx_require_signatures = false; + bool cephx_cluster_require_signatures = false; + bool cephx_service_require_signatures = false; + bool ms_die_on_old_message = true; + bool ms_die_on_skipped_message = true; + std::chrono::milliseconds ms_initial_backoff = 200ms; + std::chrono::milliseconds ms_max_backoff = 15000ms; + size_t osd_client_message_size_cap = 500ULL << 20; +} conf; +}