Instead of lengthy blurbs, switch to single-line, machine-readable standardized (https://spdx.dev) license identifiers. The Linux kernel switched long ago, so there is strong precedent. Three cases are handled: AGPL-only, Apache-only, and dual licensed. For the latter case, I chose (AGPL-3.0-or-later and Apache-2.0), reasoning that our changes are extensive enough to apply our license. The changes we applied mechanically with a script, except to licenses/README.md. Closes #9937
48 lines
797 B
C++
48 lines
797 B
C++
/*
|
|
*
|
|
* Modified by ScyllaDB
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <ostream>
|
|
|
|
namespace gms {
|
|
|
|
enum class application_state {
|
|
STATUS = 0,
|
|
LOAD,
|
|
SCHEMA,
|
|
DC,
|
|
RACK,
|
|
RELEASE_VERSION,
|
|
REMOVAL_COORDINATOR,
|
|
INTERNAL_IP,
|
|
RPC_ADDRESS,
|
|
X_11_PADDING, // padding specifically for 1.1
|
|
SEVERITY,
|
|
NET_VERSION,
|
|
HOST_ID,
|
|
TOKENS,
|
|
SUPPORTED_FEATURES,
|
|
CACHE_HITRATES,
|
|
SCHEMA_TABLES_VERSION,
|
|
RPC_READY,
|
|
VIEW_BACKLOG,
|
|
SHARD_COUNT,
|
|
IGNORE_MSB_BITS,
|
|
CDC_GENERATION_ID,
|
|
SNITCH_NAME,
|
|
// pad to allow adding new states to existing cluster
|
|
X10,
|
|
};
|
|
|
|
std::ostream& operator<<(std::ostream& os, const application_state& m);
|
|
|
|
}
|