Class: RCONGoldSrcResponse

Inherits:
Object
  • Object
show all
Includes:
SteamPacket
Defined in:
lib/steam/packets/rcon/rcon_goldsrc_response.rb

Overview

This packet class represents a RCON response packet sent by a GoldSrc server

It is used to transport the output of a command from the server to the client which requested the command execution.

See Also:

Author:

  • Sebastian Staudt

Constant Summary

Constants included from SteamPacket

SteamPacket::A2M_GET_SERVERS_BATCH2_HEADER, SteamPacket::A2S_INFO_HEADER, SteamPacket::A2S_PLAYER_HEADER, SteamPacket::A2S_RULES_HEADER, SteamPacket::A2S_SERVERQUERY_GETCHALLENGE_HEADER, SteamPacket::C2M_CHECKMD5_HEADER, SteamPacket::M2A_SERVER_BATCH_HEADER, SteamPacket::M2C_ISVALIDMD5_HEADER, SteamPacket::M2S_REQUESTRESTART_HEADER, SteamPacket::RCON_GOLDSRC_CHALLENGE_HEADER, SteamPacket::RCON_GOLDSRC_NO_CHALLENGE_HEADER, SteamPacket::RCON_GOLDSRC_RESPONSE_HEADER, SteamPacket::S2A_INFO2_HEADER, SteamPacket::S2A_INFO_DETAILED_HEADER, SteamPacket::S2A_LOGSTRING_HEADER, SteamPacket::S2A_PLAYER_HEADER, SteamPacket::S2A_RULES_HEADER, SteamPacket::S2C_CHALLENGE_HEADER, SteamPacket::S2C_CONNREJECT_HEADER, SteamPacket::S2M_HEARTBEAT2_HEADER

Instance Method Summary collapse

Methods included from SteamPacket

#to_s

Constructor Details

#initialize(command_response) ⇒ RCONGoldSrcResponse

Creates a RCON command response for the given command output

Parameters:

  • command_response (String)

    The output of the command executed on the server



23
24
25
# File 'lib/steam/packets/rcon/rcon_goldsrc_response.rb', line 23

def initialize(command_response)
  super RCON_GOLDSRC_RESPONSE_HEADER, command_response
end

Instance Method Details

#responseString

Returns the output of the command execution

Returns:

  • (String)

    The output of the command



30
31
32
# File 'lib/steam/packets/rcon/rcon_goldsrc_response.rb', line 30

def response
  @content_data.string[0..-3]
end