Update rcon.cpp

This commit is contained in:
6arelyFuture 2022-10-31 17:30:50 +00:00 committed by GitHub
parent 6dcd08f6d1
commit d0303e9cbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ private:
static void add_commands() { static void add_commands() {
network::on_packet("rcon_authorization", [](const game::netadr_s& adr, network::on_packet("rcon_authorization", [](const game::netadr_s& adr,
const std::strin& data) { const std::string& data) {
const auto signed_msg = utils::cryptography::ecc::sign_message(key, data); const auto signed_msg = utils::cryptography::ecc::sign_message(key, data);
proto::rcon::command info; proto::rcon::command info;