Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
31 lines
578 B
C++
31 lines
578 B
C++
/*
|
|
* Copyright (C) 2015-present ScyllaDB.
|
|
*/
|
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
|
|
#pragma once
|
|
#include <vector>
|
|
#include <seastar/core/sstring.hh>
|
|
|
|
#include "seastarx.hh"
|
|
#include "gms/inet_address.hh"
|
|
|
|
namespace dht {
|
|
struct endpoint_details {
|
|
gms::inet_address _host;
|
|
sstring _datacenter;
|
|
sstring _rack;
|
|
};
|
|
|
|
struct token_range_endpoints {
|
|
sstring _start_token;
|
|
sstring _end_token;
|
|
std::vector<sstring> _endpoints;
|
|
std::vector<sstring> _rpc_endpoints;
|
|
std::vector<endpoint_details> _endpoint_details;
|
|
};
|
|
|
|
}
|