wordpress-develop/src/wp-includes/http.php
Scott Taylor 26aeb0f9bc After [34953], unbreak WordPress.
See [34930], #33982.


git-svn-id: https://develop.svn.wordpress.org/trunk@34954 602fd350-edb4-49c9-b593-d223f7449a82
2015-10-08 19:28:14 +00:00

36 lines
1.0 KiB
PHP

<?php
/**
* Core HTTP Request API
*
* Standardizes the HTTP requests for WordPress. Handles cookies, gzip encoding and decoding, chunk
* decoding, if HTTP 1.1 and various other difficult HTTP protocol implementations.
*
* @package WordPress
* @subpackage HTTP
* @since 2.7.0
*/
/** Core HTTP API functionality */
require_once( ABSPATH . WPINC . '/http-functions.php' );
/** WP_Http class */
require_once( ABSPATH . WPINC . '/class-http.php' );
/** WP_Http_Streams class */
require_once( ABSPATH . WPINC . '/class-wp-http-streams.php' );
/** WP_Http_Curl transport class */
require_once( ABSPATH . WPINC . '/class-wp-http-curl.php' );
/** WP_HTTP_Proxy transport class */
require_once( ABSPATH . WPINC . '/class-wp-http-proxy.php' );
/** WP_Http_Cookie class */
require_once( ABSPATH . WPINC . '/class-wp-http-cookie.php' );
/** WP_Http_Encoding class */
require_once( ABSPATH . WPINC . '/class-wp-http-encoding.php' );
/** WP_HTTP_Response class */
require_once( ABSPATH . WPINC . '/class-wp-http-response.php' );