koraktor/steam-condenser-ruby

View on GitHub
lib/steam-condenser/servers/packets/rcon/rcon_goldsrc_request.rb

Summary

Maintainability
A
0 mins
Test Coverage
# This code is free software; you can redistribute it and/or modify it under
# the terms of the new BSD License.
#
# Copyright (c) 2008-2012, Sebastian Staudt

require 'steam-condenser/servers/packets/base_packet'

module SteamCondenser::Servers::Packets::RCON

  # This packet class represents a RCON request packet sent to a GoldSrc server
  #
  # It is used to request a command execution on the server.
  #
  # @author Sebastian Staudt
  # @see GoldSrcServer#rcon_exec
  class RCONGoldSrcRequest

    include SteamCondenser::Servers::Packets::BasePacket

    # Creates a request for the given request string
    #
    # The request string has the form `rcon {challenge number} {RCON password}
    # {command}`.
    #
    # @param [String] request The request string to send to the server
    def initialize(request)
      super 0x00, request
    end

    # Returns the raw data representing this packet
    #
    # @return [String] A string containing the raw data of this request packet
    def to_s
      [0xFFFFFFFF, @content_data.string].pack('Va*')
    end

  end
end