. */ /** * Http Protocol Class * * Used for making actual http requests to servers for information * * @author Austin Bischoff */ abstract class GameQ_Protocols_Http extends GameQ_Protocols { /** * Set the transport to use TCP * * @var string */ protected $transport = self::TRANSPORT_TCP; /** * Default port for this server type * * @var int */ protected $port = 80; // Default port, used if not set when instanced }