OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
2.5.0
/
webrick
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
accesslog.rb
4.34 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
cgi.rb
8.06 KB
03/28/2018 12:50:56 PM
rw-r--r--
📄
compat.rb
943 bytes
12/16/2015 05:07:31 AM
rw-r--r--
📄
config.rb
5.69 KB
12/07/2016 12:59:48 PM
rw-r--r--
📄
cookie.rb
3.91 KB
09/27/2016 03:17:47 AM
rw-r--r--
📄
htmlutils.rb
711 bytes
12/16/2015 05:07:31 AM
rw-r--r--
📁
httpauth
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
httpauth.rb
3.36 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
httpproxy.rb
9.6 KB
03/28/2018 04:44:33 PM
rw-r--r--
📄
httprequest.rb
14.89 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
httpresponse.rb
11.8 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
https.rb
3.07 KB
07/18/2017 01:59:28 AM
rw-r--r--
📄
httpserver.rb
7.75 KB
12/13/2017 12:38:08 AM
rw-r--r--
📁
httpservlet
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
httpservlet.rb
700 bytes
12/16/2015 05:07:31 AM
rw-r--r--
📄
httpstatus.rb
5.24 KB
09/14/2017 11:16:23 AM
rw-r--r--
📄
httputils.rb
12.91 KB
12/22/2017 01:08:05 AM
rw-r--r--
📄
httpversion.rb
1.6 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
log.rb
3.99 KB
12/22/2017 01:07:55 AM
rw-r--r--
📄
server.rb
10.04 KB
12/12/2017 11:56:25 AM
rw-r--r--
📄
ssl.rb
7.27 KB
07/18/2017 01:59:28 AM
rw-r--r--
📄
utils.rb
6.94 KB
12/12/2017 11:56:25 AM
rw-r--r--
📄
version.rb
415 bytes
12/24/2017 08:38:43 AM
rw-r--r--
Editing: compat.rb
Close
# 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