mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
15 lines
266 B
JavaScript
15 lines
266 B
JavaScript
// see: http://man7.org/linux/man-pages/man2/accept.2.html#ERRORS
|
|
var offlineErrorCodes = [
|
|
'EAI_AGAIN',
|
|
'ENETDOWN',
|
|
'EPROTO',
|
|
'ENOPROTOOPT',
|
|
'EHOSTDOWN',
|
|
'ENONET',
|
|
'EHOSTUNREACH',
|
|
'EOPNOTSUPP',
|
|
'ENETUNREACH',
|
|
]
|
|
|
|
module.exports = offlineErrorCodes
|