Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92592271
HTTPFutureResponseStatusTransport.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Nov 21, 19:18
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Nov 23, 19:18 (2 d)
Engine
blob
Format
Raw Data
Handle
22465724
Attached To
rPHU libphutil
HTTPFutureResponseStatusTransport.php
View Options
<?php
/**
* @group futures
*/
final
class
HTTPFutureResponseStatusTransport
extends
HTTPFutureResponseStatus
{
const
ERROR_TIMEOUT
=
1
;
const
ERROR_CONNECTION_ABORTED
=
2
;
const
ERROR_CONNECTION_REFUSED
=
3
;
const
ERROR_CONNECTION_FAILED
=
4
;
protected
function
getErrorCodeType
(
$code
)
{
return
'Transport'
;
}
public
function
isError
()
{
return
true
;
}
public
function
isTimeout
()
{
return
(
$this
->
getStatusCode
()
==
self
::
ERROR_TIMEOUT
);
}
protected
function
getErrorCodeDescription
(
$code
)
{
$map
=
array
(
self
::
ERROR_TIMEOUT
=>
'The request took too long to complete.'
,
self
::
ERROR_CONNECTION_ABORTED
=>
'The remote host closed the connection before the request completed.'
,
self
::
ERROR_CONNECTION_REFUSED
=>
'The remote host refused the connection. This usually means the '
.
'host is not running an HTTP server, or the network is blocking '
.
'connections from this machine. Verify you can connect to the '
.
'remote host from this host.'
,
self
::
ERROR_CONNECTION_FAILED
=>
'Connection could not be initiated. This usually indicates a DNS '
.
'problem: verify the domain name is correct, that you can '
.
'perform a DNS lookup for it from this machine. (Did you add the '
.
'domain to `/etc/hosts` on some other machine, but not this one?) '
.
'This might also indicate that you specified the wrong port.'
,
);
return
idx
(
$map
,
$code
);
}
}
Event Timeline
Log In to Comment