Code Duplication    Length = 5-5 lines in 2 locations

src/wp-includes/class-snoopy.php 2 locations

@@ 857-861 (lines=5) @@
854
855
		while($currentHeader = fgets($fp,$this->_maxlinelen))
856
		{
857
			if ($this->read_timeout > 0 && $this->_check_timeout($fp))
858
			{
859
				$this->status=-100;
860
				return false;
861
			}
862
863
			if($currentHeader == "\r\n")
864
				break;
@@ 907-911 (lines=5) @@
904
    		$results .= $_data;
905
		} while(true);
906
907
		if ($this->read_timeout > 0 && $this->_check_timeout($fp))
908
		{
909
			$this->status=-100;
910
			return false;
911
		}
912
913
		// check if there is a redirect meta tag
914