Bug #4725 » 0001-doc-for-webrick-Errno.patch
| lib/webrick/compat.rb | ||
|---|---|---|
|
# $IPR: compat.rb,v 1.6 2002/10/01 17:16:32 gotoyuzo Exp $
|
||
|
module Errno
|
||
|
##
|
||
|
# Protocol error.
|
||
|
class EPROTO < SystemCallError; end
|
||
|
##
|
||
|
# Remote host reset the connection request.
|
||
|
class ECONNRESET < SystemCallError; end
|
||
|
##
|
||
|
# Client send RST before server has accepted the connection
|
||
|
# requested by client.
|
||
|
class ECONNABORTED < SystemCallError; end
|
||
|
end
|
||