mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-20 00:20:47 +00:00
32 lines
636 B
C++
32 lines
636 B
C++
/*
|
|
* Copyright (C) 2026-present ScyllaDB
|
|
*
|
|
* Modified by ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.1 and Apache-2.0)
|
|
*/
|
|
|
|
#include "auth/maintenance_socket_authenticator.hh"
|
|
|
|
|
|
namespace auth {
|
|
|
|
maintenance_socket_authenticator::~maintenance_socket_authenticator() {
|
|
}
|
|
|
|
future<> maintenance_socket_authenticator::start() {
|
|
return make_ready_future<>();
|
|
}
|
|
|
|
future<> maintenance_socket_authenticator::ensure_superuser_is_created() const {
|
|
return make_ready_future<>();
|
|
}
|
|
|
|
bool maintenance_socket_authenticator::require_authentication() const {
|
|
return false;
|
|
}
|
|
|
|
} // namespace auth
|