Changeset 26868 for trunk/src/wp-includes/class-http.php
- Timestamp:
- 12/24/2013 06:56:05 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-http.php
r25880 r26868 1396 1396 * @link http://core.trac.wordpress.org/ticket/4011 Proxy support ticket in WordPress. 1397 1397 * @link http://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_PROXY_BYPASS_HOSTS 1398 * @since 2.8 1398 * @since 2.8.0 1399 1399 */ 1400 1400 class WP_HTTP_Proxy { … … 1403 1403 * Whether proxy connection should be used. 1404 1404 * 1405 * @since 2.8 1405 * @since 2.8.0 1406 * 1406 1407 * @use WP_PROXY_HOST 1407 1408 * @use WP_PROXY_PORT … … 1416 1417 * Whether authentication should be used. 1417 1418 * 1418 * @since 2.8 1419 * @since 2.8.0 1420 * 1419 1421 * @use WP_PROXY_USERNAME 1420 1422 * @use WP_PROXY_PASSWORD … … 1429 1431 * Retrieve the host for the proxy server. 1430 1432 * 1431 * @since 2.8 1433 * @since 2.8.0 1432 1434 * 1433 1435 * @return string … … 1443 1445 * Retrieve the port for the proxy server. 1444 1446 * 1445 * @since 2.8 1447 * @since 2.8.0 1446 1448 * 1447 1449 * @return string … … 1457 1459 * Retrieve the username for proxy authentication. 1458 1460 * 1459 * @since 2.8 1461 * @since 2.8.0 1460 1462 * 1461 1463 * @return string … … 1471 1473 * Retrieve the password for proxy authentication. 1472 1474 * 1473 * @since 2.8 1475 * @since 2.8.0 1474 1476 * 1475 1477 * @return string … … 1485 1487 * Retrieve authentication string for proxy authentication. 1486 1488 * 1487 * @since 2.8 1489 * @since 2.8.0 1488 1490 * 1489 1491 * @return string … … 1496 1498 * Retrieve header string for proxy authentication. 1497 1499 * 1498 * @since 2.8 1500 * @since 2.8.0 1499 1501 * 1500 1502 * @return string … … 1763 1765 * Includes RFC 1950, RFC 1951, and RFC 1952. 1764 1766 * 1765 * @since 2.8 1767 * @since 2.8.0 1766 1768 * @package WordPress 1767 1769 * @subpackage HTTP … … 1774 1776 * Supports the RFC 1951 standard. 1775 1777 * 1776 * @since 2.8 1778 * @since 2.8.0 1777 1779 * 1778 1780 * @param string $raw String to compress. … … 1793 1795 * original compressed string will be returned. 1794 1796 * 1795 * @since 2.8 1797 * @since 2.8.0 1796 1798 * 1797 1799 * @param string $compressed String to decompress. … … 1877 1879 * What encoding types to accept and their priority values. 1878 1880 * 1879 * @since 2.8 1881 * @since 2.8.0 1880 1882 * 1881 1883 * @return string Types of encoding to accept. … … 1911 1913 * What encoding the content used when it was compressed to send in the headers. 1912 1914 * 1913 * @since 2.8 1915 * @since 2.8.0 1914 1916 * 1915 1917 * @return string Content-Encoding string to send in the header. … … 1922 1924 * Whether the content be decoded based on the headers. 1923 1925 * 1924 * @since 2.8 1926 * @since 2.8.0 1925 1927 * 1926 1928 * @param array|string $headers All of the available headers. … … 1945 1947 * disabled. 1946 1948 * 1947 * @since 2.8 1949 * @since 2.8.0 1948 1950 * 1949 1951 * @return bool
Note: See TracChangeset
for help on using the changeset viewer.