X7ROOT File Manager
Current Path:
/opt/alt/ruby25/lib64/ruby/2.5.0/webrick
opt
/
alt
/
ruby25
/
lib64
/
ruby
/
2.5.0
/
webrick
/
ðŸ“
..
📄
accesslog.rb
(4.34 KB)
📄
cgi.rb
(8.06 KB)
📄
compat.rb
(943 B)
📄
config.rb
(5.69 KB)
📄
cookie.rb
(3.91 KB)
📄
htmlutils.rb
(711 B)
ðŸ“
httpauth
📄
httpauth.rb
(3.36 KB)
📄
httpproxy.rb
(9.6 KB)
📄
httprequest.rb
(14.89 KB)
📄
httpresponse.rb
(11.8 KB)
📄
https.rb
(3.07 KB)
📄
httpserver.rb
(7.75 KB)
ðŸ“
httpservlet
📄
httpservlet.rb
(700 B)
📄
httpstatus.rb
(5.24 KB)
📄
httputils.rb
(12.91 KB)
📄
httpversion.rb
(1.6 KB)
📄
log.rb
(3.99 KB)
📄
server.rb
(10.04 KB)
📄
ssl.rb
(7.27 KB)
📄
utils.rb
(6.94 KB)
📄
version.rb
(417 B)
Editing: compat.rb
# frozen_string_literal: false # # compat.rb -- cross platform compatibility # # Author: IPR -- Internet Programming with Ruby -- writers # Copyright (c) 2002 GOTOU Yuuzou # Copyright (c) 2002 Internet Programming with Ruby writers. All rights # reserved. # # $IPR: compat.rb,v 1.6 2002/10/01 17:16:32 gotoyuzo Exp $ ## # System call error module used by webrick for cross platform compatibility. # # EPROTO:: protocol error # ECONNRESET:: remote host reset the connection request # ECONNABORTED:: Client sent TCP reset (RST) before server has accepted the # connection requested by client. # module Errno ## # Protocol error. class EPROTO < SystemCallError; end ## # Remote host reset the connection request. class ECONNRESET < SystemCallError; end ## # Client sent TCP reset (RST) before server has accepted the connection # requested by client. class ECONNABORTED < SystemCallError; end end
Upload File
Create Folder