Class: RCONExecResponse

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

Overview

This packet class represents a SERVERDATA_RESPONSE_VALUE packet sent by a Source 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 RCONPacket

RCONPacket::SERVERDATA_AUTH, RCONPacket::SERVERDATA_AUTH_RESPONSE, RCONPacket::SERVERDATA_EXECCOMMAND, RCONPacket::SERVERDATA_RESPONSE_VALUE

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 Attribute Summary

Attributes included from RCONPacket

#request_id

Instance Method Summary collapse

Methods included from RCONPacket

#to_s

Methods included from SteamPacket

#to_s

Constructor Details

#initialize(request_id, command_response) ⇒ RCONExecResponse

Creates a RCON command response for the given request ID and command output

Parameters:

  • request_id (Fixnum)

    The request ID of the RCON connection

  • command_response (String)

    The output of the command executed on the server



26
27
28
# File 'lib/steam/packets/rcon/rcon_exec_response.rb', line 26

def initialize(request_id, command_response)
  super request_id, SERVERDATA_RESPONSE_VALUE, command_response
end

Instance Method Details

#responseString

Returns the output of the command execution

Returns:

  • (String)

    The output of the command



33
34
35
# File 'lib/steam/packets/rcon/rcon_exec_response.rb', line 33

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