Files
scylladb/dht/token_range_endpoints.hh
Avi Kivity 0ae22a09d4 LICENSE: Update to version 1.1
Updated terms of non-commercial use (must be a never-customer).
2026-04-12 19:46:33 +03:00

31 lines
578 B
C++

/*
* Copyright (C) 2015-present ScyllaDB.
*/
// SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
#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;
};
}