add cURL client with HEAD method

This commit is contained in:
Evan Prodromou
2009-09-15 21:50:19 -04:00
parent bb4b0706a4
commit 9a9a0ae56f
2 changed files with 137 additions and 3 deletions

View File

@@ -47,9 +47,9 @@ if (!defined('STATUSNET')) {
class HTTPResponse
{
var $code = null;
var $headers = null;
var $body = null;
public $code = null;
public $headers = null;
public $body = null;
}
/**