/home/arranoyd/magicraft/wp-content/plugins/wp-rocket/inc/functions/varnish.php
<?php
defined( 'ABSPATH' ) or die( 'Cheatin\' uh?' );

/**
 * Send data to Varnish
 *
 * @since 2.6.8
 *
 * @param  string $url The URL to purge
 * @return void
 */
function rocket_varnish_http_purge( $url ) {
	list( $host, $path, $scheme, $query ) = get_rocket_parse_url( $url );

	$varnish_x_purgemethod = 'default';
	$regex = '';

	if ( $query == 'vregex' ) {
		$varnish_x_purgemethod = 'regex';
		$regex = '.*';
	}

	/**
	 * Filter the Varnish IP to call
	 *
	 * @since 2.6.8
	 * @param string The Varnish IP
	*/
	$varnish_ip = apply_filters( 'rocket_varnish_ip', '' );

	if ( defined( 'WP_ROCKET_VARNISH_IP' ) && ! WP_ROCKET_VARNISH_IP ) {
		$varnish_ip = WP_ROCKET_VARNISH_IP;
	}

	/**
	 * Filter the HTTP protocol (scheme)
	 *
	 * @since 2.7.3
	 * @param string The HTTP protocol
	 */
	$scheme = apply_filters( 'rocket_varnish_http_purge_scheme', 'http' );

	$host 	 = ( $varnish_ip ) ? $varnish_ip : $host;
	$purgeme = $scheme . '://' . $host . $path . $regex;

	wp_remote_request(
		$purgeme,
		array(
			'method'      => 'PURGE',
			'blocking'    => false,
			'redirection' => 0,
			'headers'     => array(
				'host'           => $host,
				'X-Purge-Method' => $varnish_x_purgemethod
			),
		)
	);
}