mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Support HTTPS connection
Support HTTPS connection from server to server and server to cilent. 다양한 환경에서 적용하기 위해서 SSL 호스트 검증은 하지 못할듯 합니다. -- curl 이라면 가능하다고는 하는데..
This commit is contained in:
parent
c58b5bf4bf
commit
b8fd20bbae
8 changed files with 46 additions and 11 deletions
|
|
@ -27,7 +27,7 @@ class HTTP_Request extends HTTP_Request2
|
|||
public function getResponseHeader() {
|
||||
if($this->response)
|
||||
{
|
||||
return $this->response->getHeader();
|
||||
return $this->response->getHeader();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
var $ftp_resp;
|
||||
|
||||
/* Constractor */
|
||||
function ftp()
|
||||
function __construct()
|
||||
{
|
||||
$this->debug = false;
|
||||
$this->umask = 0022;
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ class tar {
|
|||
|
||||
|
||||
// Class Constructor -- Does nothing...
|
||||
function tar() {
|
||||
function __construct() {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue