uringmachine 0.16 → 0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/FUNDING.yml +3 -0
- data/.gitmodules +4 -0
- data/CHANGELOG.md +12 -0
- data/TODO.md +13 -4
- data/examples/bm_send.rb +86 -0
- data/examples/fiber_scheduler_demo.rb +71 -0
- data/ext/um/um.c +107 -36
- data/ext/um/um.h +7 -2
- data/ext/um/um_async_op.c +2 -1
- data/ext/um/um_class.c +23 -0
- data/ext/um/um_const.c +5 -2
- data/ext/um/um_stream.c +8 -8
- data/ext/um/um_stream_class.c +1 -1
- data/ext/um/um_sync.c +2 -2
- data/ext/um/um_utils.c +38 -15
- data/lib/uringmachine/fiber_scheduler.rb +104 -0
- data/lib/uringmachine/version.rb +1 -1
- data/test/test_stream.rb +3 -3
- data/test/test_um.rb +129 -0
- data/vendor/libressl/.github/scripts/changelog.sh +74 -0
- data/vendor/libressl/.github/workflows/android.yml +35 -0
- data/vendor/libressl/.github/workflows/cifuzz.yml +33 -0
- data/vendor/libressl/.github/workflows/cmake-config.yml +98 -0
- data/vendor/libressl/.github/workflows/coverity.yml +69 -0
- data/vendor/libressl/.github/workflows/emscripten.yml +71 -0
- data/vendor/libressl/.github/workflows/fedora-rawhide.yml +39 -0
- data/vendor/libressl/.github/workflows/freebsd.yml +71 -0
- data/vendor/libressl/.github/workflows/linux.yml +71 -0
- data/vendor/libressl/.github/workflows/macos.yml +37 -0
- data/vendor/libressl/.github/workflows/release.yml +81 -0
- data/vendor/libressl/.github/workflows/rust-openssl.yml +47 -0
- data/vendor/libressl/.github/workflows/solaris.yml +37 -0
- data/vendor/libressl/.github/workflows/windows.yml +70 -0
- data/vendor/libressl/.gitignore +333 -0
- data/vendor/libressl/CMakeLists.txt +581 -0
- data/vendor/libressl/COPYING +133 -0
- data/vendor/libressl/ChangeLog +3280 -0
- data/vendor/libressl/FindLibreSSL.cmake +232 -0
- data/vendor/libressl/LibreSSLConfig.cmake.in +36 -0
- data/vendor/libressl/Makefile.am +60 -0
- data/vendor/libressl/Makefile.am.common +20 -0
- data/vendor/libressl/OPENBSD_BRANCH +1 -0
- data/vendor/libressl/README.md +238 -0
- data/vendor/libressl/README.mingw.md +43 -0
- data/vendor/libressl/apps/CMakeLists.txt +18 -0
- data/vendor/libressl/apps/Makefile.am +5 -0
- data/vendor/libressl/apps/nc/CMakeLists.txt +67 -0
- data/vendor/libressl/apps/nc/Makefile.am +64 -0
- data/vendor/libressl/apps/nc/compat/accept4.c +17 -0
- data/vendor/libressl/apps/nc/compat/readpassphrase.c +205 -0
- data/vendor/libressl/apps/nc/compat/socket.c +29 -0
- data/vendor/libressl/apps/nc/compat/sys/socket.h +30 -0
- data/vendor/libressl/apps/ocspcheck/CMakeLists.txt +44 -0
- data/vendor/libressl/apps/ocspcheck/Makefile.am +45 -0
- data/vendor/libressl/apps/ocspcheck/compat/.gitignore +0 -0
- data/vendor/libressl/apps/openssl/CMakeLists.txt +97 -0
- data/vendor/libressl/apps/openssl/Makefile.am +108 -0
- data/vendor/libressl/apps/openssl/apps_win.c +138 -0
- data/vendor/libressl/apps/openssl/certhash_win.c +13 -0
- data/vendor/libressl/apps/openssl/compat/clock_gettime_osx.c +26 -0
- data/vendor/libressl/apps/openssl/compat/poll_win.c +329 -0
- data/vendor/libressl/appveyor.yml +53 -0
- data/vendor/libressl/autogen.sh +15 -0
- data/vendor/libressl/check-release.sh +86 -0
- data/vendor/libressl/cmake_export_symbol.cmake +71 -0
- data/vendor/libressl/cmake_uninstall.cmake.in +36 -0
- data/vendor/libressl/config +17 -0
- data/vendor/libressl/configure.ac +165 -0
- data/vendor/libressl/crypto/CMakeLists.txt +863 -0
- data/vendor/libressl/crypto/Makefile.am +962 -0
- data/vendor/libressl/crypto/Makefile.am.arc4random +46 -0
- data/vendor/libressl/crypto/Makefile.am.elf-mips +14 -0
- data/vendor/libressl/crypto/Makefile.am.elf-mips64 +14 -0
- data/vendor/libressl/crypto/Makefile.am.elf-x86_64 +35 -0
- data/vendor/libressl/crypto/Makefile.am.macosx-x86_64 +35 -0
- data/vendor/libressl/crypto/Makefile.am.masm-x86_64 +22 -0
- data/vendor/libressl/crypto/Makefile.am.mingw64-x86_64 +23 -0
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_darwin.c +60 -0
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_linux.c +62 -0
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_none.c +26 -0
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_windows.c +36 -0
- data/vendor/libressl/crypto/arch/loongarch64/crypto_arch.h +21 -0
- data/vendor/libressl/crypto/arch/mips/crypto_arch.h +21 -0
- data/vendor/libressl/crypto/bn/arch/loongarch64/bn_arch.h +23 -0
- data/vendor/libressl/crypto/bn/arch/mips/bn_arch.h +24 -0
- data/vendor/libressl/crypto/compat/.gitignore +31 -0
- data/vendor/libressl/crypto/compat/arc4random.h +41 -0
- data/vendor/libressl/crypto/compat/b_win.c +55 -0
- data/vendor/libressl/crypto/compat/bsd-asprintf.c +96 -0
- data/vendor/libressl/crypto/compat/crypto_lock_win.c +56 -0
- data/vendor/libressl/crypto/compat/explicit_bzero_win.c +13 -0
- data/vendor/libressl/crypto/compat/freezero.c +32 -0
- data/vendor/libressl/crypto/compat/getdelim.c +78 -0
- data/vendor/libressl/crypto/compat/getline.c +40 -0
- data/vendor/libressl/crypto/compat/getopt_long.c +528 -0
- data/vendor/libressl/crypto/compat/getpagesize.c +18 -0
- data/vendor/libressl/crypto/compat/getprogname_linux.c +23 -0
- data/vendor/libressl/crypto/compat/getprogname_unimpl.c +7 -0
- data/vendor/libressl/crypto/compat/getprogname_windows.c +13 -0
- data/vendor/libressl/crypto/compat/posix_win.c +296 -0
- data/vendor/libressl/crypto/compat/syslog_r.c +19 -0
- data/vendor/libressl/crypto/compat/ui_openssl_win.c +334 -0
- data/vendor/libressl/dist.sh +22 -0
- data/vendor/libressl/gen-coverage-report.sh +58 -0
- data/vendor/libressl/gen-openbsd-tags.sh +20 -0
- data/vendor/libressl/include/CMakeLists.txt +61 -0
- data/vendor/libressl/include/Makefile.am +79 -0
- data/vendor/libressl/include/arch/loongarch64/opensslconf.h +150 -0
- data/vendor/libressl/include/arch/mips/opensslconf.h +150 -0
- data/vendor/libressl/include/compat/arpa/inet.h +15 -0
- data/vendor/libressl/include/compat/arpa/nameser.h +25 -0
- data/vendor/libressl/include/compat/cet.h +19 -0
- data/vendor/libressl/include/compat/dirent.h +17 -0
- data/vendor/libressl/include/compat/dirent_msvc.h +611 -0
- data/vendor/libressl/include/compat/endian.h +161 -0
- data/vendor/libressl/include/compat/err.h +95 -0
- data/vendor/libressl/include/compat/fcntl.h +32 -0
- data/vendor/libressl/include/compat/getopt.h +50 -0
- data/vendor/libressl/include/compat/limits.h +25 -0
- data/vendor/libressl/include/compat/netdb.h +10 -0
- data/vendor/libressl/include/compat/netinet/in.h +19 -0
- data/vendor/libressl/include/compat/netinet/ip.h +49 -0
- data/vendor/libressl/include/compat/netinet/tcp.h +10 -0
- data/vendor/libressl/include/compat/poll.h +63 -0
- data/vendor/libressl/include/compat/pthread.h +122 -0
- data/vendor/libressl/include/compat/readpassphrase.h +44 -0
- data/vendor/libressl/include/compat/resolv.h +24 -0
- data/vendor/libressl/include/compat/stdint.h +31 -0
- data/vendor/libressl/include/compat/stdio.h +65 -0
- data/vendor/libressl/include/compat/stdlib.h +57 -0
- data/vendor/libressl/include/compat/string.h +98 -0
- data/vendor/libressl/include/compat/sys/_null.h +18 -0
- data/vendor/libressl/include/compat/sys/ioctl.h +11 -0
- data/vendor/libressl/include/compat/sys/mman.h +19 -0
- data/vendor/libressl/include/compat/sys/param.h +15 -0
- data/vendor/libressl/include/compat/sys/queue.h +536 -0
- data/vendor/libressl/include/compat/sys/select.h +10 -0
- data/vendor/libressl/include/compat/sys/socket.h +18 -0
- data/vendor/libressl/include/compat/sys/stat.h +129 -0
- data/vendor/libressl/include/compat/sys/time.h +37 -0
- data/vendor/libressl/include/compat/sys/tree.h +1006 -0
- data/vendor/libressl/include/compat/sys/types.h +69 -0
- data/vendor/libressl/include/compat/sys/uio.h +17 -0
- data/vendor/libressl/include/compat/syslog.h +38 -0
- data/vendor/libressl/include/compat/time.h +59 -0
- data/vendor/libressl/include/compat/unistd.h +83 -0
- data/vendor/libressl/include/compat/win32netcompat.h +57 -0
- data/vendor/libressl/include/openssl/Makefile.am.tpl +45 -0
- data/vendor/libressl/libcrypto.pc.in +28 -0
- data/vendor/libressl/libressl.pub +2 -0
- data/vendor/libressl/libssl.pc.in +28 -0
- data/vendor/libressl/libtls.pc.in +28 -0
- data/vendor/libressl/m4/ax_add_fortify_source.m4 +80 -0
- data/vendor/libressl/m4/ax_check_compile_flag.m4 +53 -0
- data/vendor/libressl/m4/check-hardening-options.m4 +110 -0
- data/vendor/libressl/m4/check-libc.m4 +189 -0
- data/vendor/libressl/m4/check-os-options.m4 +181 -0
- data/vendor/libressl/m4/disable-compiler-warnings.m4 +44 -0
- data/vendor/libressl/man/CMakeLists.txt +26 -0
- data/vendor/libressl/man/links +2780 -0
- data/vendor/libressl/man/update_links.sh +25 -0
- data/vendor/libressl/openssl.pc.in +11 -0
- data/vendor/libressl/patches/bn_shift.patch +34 -0
- data/vendor/libressl/patches/crypto_arch.h.patch +34 -0
- data/vendor/libressl/patches/crypto_namespace.h.patch +22 -0
- data/vendor/libressl/patches/netcat.c.patch +178 -0
- data/vendor/libressl/patches/openssl.c.patch +12 -0
- data/vendor/libressl/patches/opensslfeatures.h.patch +49 -0
- data/vendor/libressl/patches/patch-amd64-crypto-cpu-caps.c.patch +20 -0
- data/vendor/libressl/patches/patch-i386-crypto-cpu-caps.c.patch +20 -0
- data/vendor/libressl/patches/speed.c.patch +114 -0
- data/vendor/libressl/patches/ssl_namespace.h.patch +21 -0
- data/vendor/libressl/patches/tls.h.patch +16 -0
- data/vendor/libressl/patches/tls_config.c.patch +15 -0
- data/vendor/libressl/patches/win32_amd64_bn_arch.h.patch +28 -0
- data/vendor/libressl/patches/windows_headers.patch +80 -0
- data/vendor/libressl/scripts/config.guess +1774 -0
- data/vendor/libressl/scripts/config.sub +1907 -0
- data/vendor/libressl/scripts/i686-w64-mingw32.cmake +9 -0
- data/vendor/libressl/scripts/test +210 -0
- data/vendor/libressl/scripts/wrap-compiler-for-flag-check +31 -0
- data/vendor/libressl/scripts/x86_64-w64-mingw32.cmake +9 -0
- data/vendor/libressl/ssl/CMakeLists.txt +183 -0
- data/vendor/libressl/ssl/Makefile.am +187 -0
- data/vendor/libressl/tests/CMakeLists.txt +970 -0
- data/vendor/libressl/tests/Makefile.am +944 -0
- data/vendor/libressl/tests/aeadtest.sh +30 -0
- data/vendor/libressl/tests/arc4randomforktest.sh +21 -0
- data/vendor/libressl/tests/asn1time_small.test +10 -0
- data/vendor/libressl/tests/cmake/CMakeLists.txt +52 -0
- data/vendor/libressl/tests/cmake/crypto.c +7 -0
- data/vendor/libressl/tests/cmake/ssl.c +6 -0
- data/vendor/libressl/tests/cmake/tls.c +6 -0
- data/vendor/libressl/tests/compat/pipe2.c +186 -0
- data/vendor/libressl/tests/dtlstest.sh +28 -0
- data/vendor/libressl/tests/evptest.sh +22 -0
- data/vendor/libressl/tests/keypairtest.sh +27 -0
- data/vendor/libressl/tests/mlkem_tests.sh +39 -0
- data/vendor/libressl/tests/ocsptest.bat +25 -0
- data/vendor/libressl/tests/ocsptest.sh +23 -0
- data/vendor/libressl/tests/openssl.cnf +29 -0
- data/vendor/libressl/tests/optionstest.c +381 -0
- data/vendor/libressl/tests/pidwraptest.c +85 -0
- data/vendor/libressl/tests/pidwraptest.sh +26 -0
- data/vendor/libressl/tests/quictest.bat +27 -0
- data/vendor/libressl/tests/quictest.sh +30 -0
- data/vendor/libressl/tests/renegotiation_test.bat +27 -0
- data/vendor/libressl/tests/renegotiation_test.sh +30 -0
- data/vendor/libressl/tests/rfc5280time_small.test +10 -0
- data/vendor/libressl/tests/servertest.bat +27 -0
- data/vendor/libressl/tests/servertest.sh +30 -0
- data/vendor/libressl/tests/shutdowntest.bat +27 -0
- data/vendor/libressl/tests/shutdowntest.sh +30 -0
- data/vendor/libressl/tests/ssltest.bat +32 -0
- data/vendor/libressl/tests/ssltest.sh +48 -0
- data/vendor/libressl/tests/testdsa.bat +47 -0
- data/vendor/libressl/tests/testdsa.sh +57 -0
- data/vendor/libressl/tests/testenc.bat +85 -0
- data/vendor/libressl/tests/testenc.sh +93 -0
- data/vendor/libressl/tests/testrsa.bat +47 -0
- data/vendor/libressl/tests/testrsa.sh +57 -0
- data/vendor/libressl/tests/testssl.bat +171 -0
- data/vendor/libressl/tests/tlstest.bat +27 -0
- data/vendor/libressl/tests/tlstest.sh +28 -0
- data/vendor/libressl/tls/CMakeLists.txt +125 -0
- data/vendor/libressl/tls/Makefile.am +76 -0
- data/vendor/libressl/tls/compat/ftruncate.c +17 -0
- data/vendor/libressl/tls/compat/pread.c +29 -0
- data/vendor/libressl/tls/compat/pwrite.c +29 -0
- data/vendor/libressl/update.sh +460 -0
- data/vendor/liburing/.github/workflows/ci.yml +8 -0
- data/vendor/liburing/configure +23 -2
- data/vendor/liburing/examples/helpers.c +1 -1
- data/vendor/liburing/examples/helpers.h +1 -1
- data/vendor/liburing/examples/reg-wait.c +3 -3
- data/vendor/liburing/examples/zcrx.c +5 -5
- data/vendor/liburing/liburing.spec +1 -1
- data/vendor/liburing/src/include/liburing/io_uring.h +16 -0
- data/vendor/liburing/src/include/liburing.h +20 -4
- data/vendor/liburing/src/lib.h +2 -4
- data/vendor/liburing/src/liburing-ffi.map +7 -0
- data/vendor/liburing/src/liburing.map +7 -0
- data/vendor/liburing/src/register.c +5 -0
- data/vendor/liburing/src/sanitize.c +5 -4
- data/vendor/liburing/src/setup.c +43 -28
- data/vendor/liburing/test/Makefile +7 -0
- data/vendor/liburing/test/cmd-discard.c +2 -2
- data/vendor/liburing/test/evfd-short-read.c +84 -0
- data/vendor/liburing/test/fdinfo-sqpoll.c +117 -0
- data/vendor/liburing/test/fdinfo.c +1 -1
- data/vendor/liburing/test/fixed-buf-merge.c +2 -2
- data/vendor/liburing/test/futex-kill.c +135 -0
- data/vendor/liburing/test/helpers.c +1 -1
- data/vendor/liburing/test/helpers.h +1 -1
- data/vendor/liburing/test/init-mem.c +50 -12
- data/vendor/liburing/test/io_uring_passthrough.c +25 -6
- data/vendor/liburing/test/msg-ring.c +123 -9
- data/vendor/liburing/test/recv-bundle-short-ooo.c +16 -1
- data/vendor/liburing/test/recv-inc-ooo.c +411 -0
- data/vendor/liburing/test/recv-mshot-fair.c +513 -0
- data/vendor/liburing/test/reg-wait.c +14 -14
- data/vendor/liburing/test/send-zerocopy.c +4 -4
- data/vendor/liburing/test/timerfd-short-read.c +81 -0
- data/vendor/liburing/test/timestamp.c +382 -0
- data/vendor/liburing/test/zcrx.c +22 -22
- metadata +224 -2
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: uringmachine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '0.
|
|
4
|
+
version: '0.19'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sharon Rosner
|
|
@@ -72,6 +72,7 @@ extensions:
|
|
|
72
72
|
extra_rdoc_files:
|
|
73
73
|
- README.md
|
|
74
74
|
files:
|
|
75
|
+
- ".github/FUNDING.yml"
|
|
75
76
|
- ".github/dependabot.yml"
|
|
76
77
|
- ".github/workflows/test.yml"
|
|
77
78
|
- ".gitignore"
|
|
@@ -84,12 +85,14 @@ files:
|
|
|
84
85
|
- TODO.md
|
|
85
86
|
- examples/bm_http_parse.rb
|
|
86
87
|
- examples/bm_queue.rb
|
|
88
|
+
- examples/bm_send.rb
|
|
87
89
|
- examples/bm_side_running.rb
|
|
88
90
|
- examples/bm_snooze.rb
|
|
89
91
|
- examples/bm_sqlite.rb
|
|
90
92
|
- examples/bm_write.rb
|
|
91
93
|
- examples/dns_client.rb
|
|
92
94
|
- examples/echo_server.rb
|
|
95
|
+
- examples/fiber_scheduler_demo.rb
|
|
93
96
|
- examples/http_server.rb
|
|
94
97
|
- examples/inout.rb
|
|
95
98
|
- examples/nc.rb
|
|
@@ -117,6 +120,7 @@ files:
|
|
|
117
120
|
- lib/uringmachine.rb
|
|
118
121
|
- lib/uringmachine/actor.rb
|
|
119
122
|
- lib/uringmachine/dns_resolver.rb
|
|
123
|
+
- lib/uringmachine/fiber_scheduler.rb
|
|
120
124
|
- lib/uringmachine/version.rb
|
|
121
125
|
- supressions/ruby.supp
|
|
122
126
|
- test/helper.rb
|
|
@@ -127,6 +131,217 @@ files:
|
|
|
127
131
|
- test/test_stream.rb
|
|
128
132
|
- test/test_um.rb
|
|
129
133
|
- uringmachine.gemspec
|
|
134
|
+
- vendor/libressl/.github/scripts/changelog.sh
|
|
135
|
+
- vendor/libressl/.github/workflows/android.yml
|
|
136
|
+
- vendor/libressl/.github/workflows/cifuzz.yml
|
|
137
|
+
- vendor/libressl/.github/workflows/cmake-config.yml
|
|
138
|
+
- vendor/libressl/.github/workflows/coverity.yml
|
|
139
|
+
- vendor/libressl/.github/workflows/emscripten.yml
|
|
140
|
+
- vendor/libressl/.github/workflows/fedora-rawhide.yml
|
|
141
|
+
- vendor/libressl/.github/workflows/freebsd.yml
|
|
142
|
+
- vendor/libressl/.github/workflows/linux.yml
|
|
143
|
+
- vendor/libressl/.github/workflows/macos.yml
|
|
144
|
+
- vendor/libressl/.github/workflows/release.yml
|
|
145
|
+
- vendor/libressl/.github/workflows/rust-openssl.yml
|
|
146
|
+
- vendor/libressl/.github/workflows/solaris.yml
|
|
147
|
+
- vendor/libressl/.github/workflows/windows.yml
|
|
148
|
+
- vendor/libressl/.gitignore
|
|
149
|
+
- vendor/libressl/CMakeLists.txt
|
|
150
|
+
- vendor/libressl/COPYING
|
|
151
|
+
- vendor/libressl/ChangeLog
|
|
152
|
+
- vendor/libressl/FindLibreSSL.cmake
|
|
153
|
+
- vendor/libressl/LibreSSLConfig.cmake.in
|
|
154
|
+
- vendor/libressl/Makefile.am
|
|
155
|
+
- vendor/libressl/Makefile.am.common
|
|
156
|
+
- vendor/libressl/OPENBSD_BRANCH
|
|
157
|
+
- vendor/libressl/README.md
|
|
158
|
+
- vendor/libressl/README.mingw.md
|
|
159
|
+
- vendor/libressl/apps/CMakeLists.txt
|
|
160
|
+
- vendor/libressl/apps/Makefile.am
|
|
161
|
+
- vendor/libressl/apps/nc/CMakeLists.txt
|
|
162
|
+
- vendor/libressl/apps/nc/Makefile.am
|
|
163
|
+
- vendor/libressl/apps/nc/compat/accept4.c
|
|
164
|
+
- vendor/libressl/apps/nc/compat/readpassphrase.c
|
|
165
|
+
- vendor/libressl/apps/nc/compat/socket.c
|
|
166
|
+
- vendor/libressl/apps/nc/compat/sys/socket.h
|
|
167
|
+
- vendor/libressl/apps/ocspcheck/CMakeLists.txt
|
|
168
|
+
- vendor/libressl/apps/ocspcheck/Makefile.am
|
|
169
|
+
- vendor/libressl/apps/ocspcheck/compat/.gitignore
|
|
170
|
+
- vendor/libressl/apps/openssl/CMakeLists.txt
|
|
171
|
+
- vendor/libressl/apps/openssl/Makefile.am
|
|
172
|
+
- vendor/libressl/apps/openssl/apps_win.c
|
|
173
|
+
- vendor/libressl/apps/openssl/certhash_win.c
|
|
174
|
+
- vendor/libressl/apps/openssl/compat/clock_gettime_osx.c
|
|
175
|
+
- vendor/libressl/apps/openssl/compat/poll_win.c
|
|
176
|
+
- vendor/libressl/appveyor.yml
|
|
177
|
+
- vendor/libressl/autogen.sh
|
|
178
|
+
- vendor/libressl/check-release.sh
|
|
179
|
+
- vendor/libressl/cmake_export_symbol.cmake
|
|
180
|
+
- vendor/libressl/cmake_uninstall.cmake.in
|
|
181
|
+
- vendor/libressl/config
|
|
182
|
+
- vendor/libressl/configure.ac
|
|
183
|
+
- vendor/libressl/crypto/CMakeLists.txt
|
|
184
|
+
- vendor/libressl/crypto/Makefile.am
|
|
185
|
+
- vendor/libressl/crypto/Makefile.am.arc4random
|
|
186
|
+
- vendor/libressl/crypto/Makefile.am.elf-mips
|
|
187
|
+
- vendor/libressl/crypto/Makefile.am.elf-mips64
|
|
188
|
+
- vendor/libressl/crypto/Makefile.am.elf-x86_64
|
|
189
|
+
- vendor/libressl/crypto/Makefile.am.macosx-x86_64
|
|
190
|
+
- vendor/libressl/crypto/Makefile.am.masm-x86_64
|
|
191
|
+
- vendor/libressl/crypto/Makefile.am.mingw64-x86_64
|
|
192
|
+
- vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_darwin.c
|
|
193
|
+
- vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_linux.c
|
|
194
|
+
- vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_none.c
|
|
195
|
+
- vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_windows.c
|
|
196
|
+
- vendor/libressl/crypto/arch/loongarch64/crypto_arch.h
|
|
197
|
+
- vendor/libressl/crypto/arch/mips/crypto_arch.h
|
|
198
|
+
- vendor/libressl/crypto/bn/arch/loongarch64/bn_arch.h
|
|
199
|
+
- vendor/libressl/crypto/bn/arch/mips/bn_arch.h
|
|
200
|
+
- vendor/libressl/crypto/compat/.gitignore
|
|
201
|
+
- vendor/libressl/crypto/compat/arc4random.h
|
|
202
|
+
- vendor/libressl/crypto/compat/b_win.c
|
|
203
|
+
- vendor/libressl/crypto/compat/bsd-asprintf.c
|
|
204
|
+
- vendor/libressl/crypto/compat/crypto_lock_win.c
|
|
205
|
+
- vendor/libressl/crypto/compat/explicit_bzero_win.c
|
|
206
|
+
- vendor/libressl/crypto/compat/freezero.c
|
|
207
|
+
- vendor/libressl/crypto/compat/getdelim.c
|
|
208
|
+
- vendor/libressl/crypto/compat/getline.c
|
|
209
|
+
- vendor/libressl/crypto/compat/getopt_long.c
|
|
210
|
+
- vendor/libressl/crypto/compat/getpagesize.c
|
|
211
|
+
- vendor/libressl/crypto/compat/getprogname_linux.c
|
|
212
|
+
- vendor/libressl/crypto/compat/getprogname_unimpl.c
|
|
213
|
+
- vendor/libressl/crypto/compat/getprogname_windows.c
|
|
214
|
+
- vendor/libressl/crypto/compat/posix_win.c
|
|
215
|
+
- vendor/libressl/crypto/compat/syslog_r.c
|
|
216
|
+
- vendor/libressl/crypto/compat/ui_openssl_win.c
|
|
217
|
+
- vendor/libressl/dist.sh
|
|
218
|
+
- vendor/libressl/gen-coverage-report.sh
|
|
219
|
+
- vendor/libressl/gen-openbsd-tags.sh
|
|
220
|
+
- vendor/libressl/include/CMakeLists.txt
|
|
221
|
+
- vendor/libressl/include/Makefile.am
|
|
222
|
+
- vendor/libressl/include/arch/loongarch64/opensslconf.h
|
|
223
|
+
- vendor/libressl/include/arch/mips/opensslconf.h
|
|
224
|
+
- vendor/libressl/include/compat/arpa/inet.h
|
|
225
|
+
- vendor/libressl/include/compat/arpa/nameser.h
|
|
226
|
+
- vendor/libressl/include/compat/cet.h
|
|
227
|
+
- vendor/libressl/include/compat/dirent.h
|
|
228
|
+
- vendor/libressl/include/compat/dirent_msvc.h
|
|
229
|
+
- vendor/libressl/include/compat/endian.h
|
|
230
|
+
- vendor/libressl/include/compat/err.h
|
|
231
|
+
- vendor/libressl/include/compat/fcntl.h
|
|
232
|
+
- vendor/libressl/include/compat/getopt.h
|
|
233
|
+
- vendor/libressl/include/compat/limits.h
|
|
234
|
+
- vendor/libressl/include/compat/netdb.h
|
|
235
|
+
- vendor/libressl/include/compat/netinet/in.h
|
|
236
|
+
- vendor/libressl/include/compat/netinet/ip.h
|
|
237
|
+
- vendor/libressl/include/compat/netinet/tcp.h
|
|
238
|
+
- vendor/libressl/include/compat/poll.h
|
|
239
|
+
- vendor/libressl/include/compat/pthread.h
|
|
240
|
+
- vendor/libressl/include/compat/readpassphrase.h
|
|
241
|
+
- vendor/libressl/include/compat/resolv.h
|
|
242
|
+
- vendor/libressl/include/compat/stdint.h
|
|
243
|
+
- vendor/libressl/include/compat/stdio.h
|
|
244
|
+
- vendor/libressl/include/compat/stdlib.h
|
|
245
|
+
- vendor/libressl/include/compat/string.h
|
|
246
|
+
- vendor/libressl/include/compat/sys/_null.h
|
|
247
|
+
- vendor/libressl/include/compat/sys/ioctl.h
|
|
248
|
+
- vendor/libressl/include/compat/sys/mman.h
|
|
249
|
+
- vendor/libressl/include/compat/sys/param.h
|
|
250
|
+
- vendor/libressl/include/compat/sys/queue.h
|
|
251
|
+
- vendor/libressl/include/compat/sys/select.h
|
|
252
|
+
- vendor/libressl/include/compat/sys/socket.h
|
|
253
|
+
- vendor/libressl/include/compat/sys/stat.h
|
|
254
|
+
- vendor/libressl/include/compat/sys/time.h
|
|
255
|
+
- vendor/libressl/include/compat/sys/tree.h
|
|
256
|
+
- vendor/libressl/include/compat/sys/types.h
|
|
257
|
+
- vendor/libressl/include/compat/sys/uio.h
|
|
258
|
+
- vendor/libressl/include/compat/syslog.h
|
|
259
|
+
- vendor/libressl/include/compat/time.h
|
|
260
|
+
- vendor/libressl/include/compat/unistd.h
|
|
261
|
+
- vendor/libressl/include/compat/win32netcompat.h
|
|
262
|
+
- vendor/libressl/include/openssl/Makefile.am.tpl
|
|
263
|
+
- vendor/libressl/libcrypto.pc.in
|
|
264
|
+
- vendor/libressl/libressl.pub
|
|
265
|
+
- vendor/libressl/libssl.pc.in
|
|
266
|
+
- vendor/libressl/libtls.pc.in
|
|
267
|
+
- vendor/libressl/m4/ax_add_fortify_source.m4
|
|
268
|
+
- vendor/libressl/m4/ax_check_compile_flag.m4
|
|
269
|
+
- vendor/libressl/m4/check-hardening-options.m4
|
|
270
|
+
- vendor/libressl/m4/check-libc.m4
|
|
271
|
+
- vendor/libressl/m4/check-os-options.m4
|
|
272
|
+
- vendor/libressl/m4/disable-compiler-warnings.m4
|
|
273
|
+
- vendor/libressl/man/CMakeLists.txt
|
|
274
|
+
- vendor/libressl/man/links
|
|
275
|
+
- vendor/libressl/man/update_links.sh
|
|
276
|
+
- vendor/libressl/openssl.pc.in
|
|
277
|
+
- vendor/libressl/patches/bn_shift.patch
|
|
278
|
+
- vendor/libressl/patches/crypto_arch.h.patch
|
|
279
|
+
- vendor/libressl/patches/crypto_namespace.h.patch
|
|
280
|
+
- vendor/libressl/patches/netcat.c.patch
|
|
281
|
+
- vendor/libressl/patches/openssl.c.patch
|
|
282
|
+
- vendor/libressl/patches/opensslfeatures.h.patch
|
|
283
|
+
- vendor/libressl/patches/patch-amd64-crypto-cpu-caps.c.patch
|
|
284
|
+
- vendor/libressl/patches/patch-i386-crypto-cpu-caps.c.patch
|
|
285
|
+
- vendor/libressl/patches/speed.c.patch
|
|
286
|
+
- vendor/libressl/patches/ssl_namespace.h.patch
|
|
287
|
+
- vendor/libressl/patches/tls.h.patch
|
|
288
|
+
- vendor/libressl/patches/tls_config.c.patch
|
|
289
|
+
- vendor/libressl/patches/win32_amd64_bn_arch.h.patch
|
|
290
|
+
- vendor/libressl/patches/windows_headers.patch
|
|
291
|
+
- vendor/libressl/scripts/config.guess
|
|
292
|
+
- vendor/libressl/scripts/config.sub
|
|
293
|
+
- vendor/libressl/scripts/i686-w64-mingw32.cmake
|
|
294
|
+
- vendor/libressl/scripts/test
|
|
295
|
+
- vendor/libressl/scripts/wrap-compiler-for-flag-check
|
|
296
|
+
- vendor/libressl/scripts/x86_64-w64-mingw32.cmake
|
|
297
|
+
- vendor/libressl/ssl/CMakeLists.txt
|
|
298
|
+
- vendor/libressl/ssl/Makefile.am
|
|
299
|
+
- vendor/libressl/tests/CMakeLists.txt
|
|
300
|
+
- vendor/libressl/tests/Makefile.am
|
|
301
|
+
- vendor/libressl/tests/aeadtest.sh
|
|
302
|
+
- vendor/libressl/tests/arc4randomforktest.sh
|
|
303
|
+
- vendor/libressl/tests/asn1time_small.test
|
|
304
|
+
- vendor/libressl/tests/cmake/CMakeLists.txt
|
|
305
|
+
- vendor/libressl/tests/cmake/crypto.c
|
|
306
|
+
- vendor/libressl/tests/cmake/ssl.c
|
|
307
|
+
- vendor/libressl/tests/cmake/tls.c
|
|
308
|
+
- vendor/libressl/tests/compat/pipe2.c
|
|
309
|
+
- vendor/libressl/tests/dtlstest.sh
|
|
310
|
+
- vendor/libressl/tests/evptest.sh
|
|
311
|
+
- vendor/libressl/tests/keypairtest.sh
|
|
312
|
+
- vendor/libressl/tests/mlkem_tests.sh
|
|
313
|
+
- vendor/libressl/tests/ocsptest.bat
|
|
314
|
+
- vendor/libressl/tests/ocsptest.sh
|
|
315
|
+
- vendor/libressl/tests/openssl.cnf
|
|
316
|
+
- vendor/libressl/tests/optionstest.c
|
|
317
|
+
- vendor/libressl/tests/pidwraptest.c
|
|
318
|
+
- vendor/libressl/tests/pidwraptest.sh
|
|
319
|
+
- vendor/libressl/tests/quictest.bat
|
|
320
|
+
- vendor/libressl/tests/quictest.sh
|
|
321
|
+
- vendor/libressl/tests/renegotiation_test.bat
|
|
322
|
+
- vendor/libressl/tests/renegotiation_test.sh
|
|
323
|
+
- vendor/libressl/tests/rfc5280time_small.test
|
|
324
|
+
- vendor/libressl/tests/servertest.bat
|
|
325
|
+
- vendor/libressl/tests/servertest.sh
|
|
326
|
+
- vendor/libressl/tests/shutdowntest.bat
|
|
327
|
+
- vendor/libressl/tests/shutdowntest.sh
|
|
328
|
+
- vendor/libressl/tests/ssltest.bat
|
|
329
|
+
- vendor/libressl/tests/ssltest.sh
|
|
330
|
+
- vendor/libressl/tests/testdsa.bat
|
|
331
|
+
- vendor/libressl/tests/testdsa.sh
|
|
332
|
+
- vendor/libressl/tests/testenc.bat
|
|
333
|
+
- vendor/libressl/tests/testenc.sh
|
|
334
|
+
- vendor/libressl/tests/testrsa.bat
|
|
335
|
+
- vendor/libressl/tests/testrsa.sh
|
|
336
|
+
- vendor/libressl/tests/testssl.bat
|
|
337
|
+
- vendor/libressl/tests/tlstest.bat
|
|
338
|
+
- vendor/libressl/tests/tlstest.sh
|
|
339
|
+
- vendor/libressl/tls/CMakeLists.txt
|
|
340
|
+
- vendor/libressl/tls/Makefile.am
|
|
341
|
+
- vendor/libressl/tls/compat/ftruncate.c
|
|
342
|
+
- vendor/libressl/tls/compat/pread.c
|
|
343
|
+
- vendor/libressl/tls/compat/pwrite.c
|
|
344
|
+
- vendor/libressl/update.sh
|
|
130
345
|
- vendor/liburing/.github/actions/codespell/stopwords
|
|
131
346
|
- vendor/liburing/.github/pull_request_template.md
|
|
132
347
|
- vendor/liburing/.github/workflows/ci.yml
|
|
@@ -256,6 +471,7 @@ files:
|
|
|
256
471
|
- vendor/liburing/test/eventfd-reg.c
|
|
257
472
|
- vendor/liburing/test/eventfd-ring.c
|
|
258
473
|
- vendor/liburing/test/eventfd.c
|
|
474
|
+
- vendor/liburing/test/evfd-short-read.c
|
|
259
475
|
- vendor/liburing/test/evloop.c
|
|
260
476
|
- vendor/liburing/test/exec-target.c
|
|
261
477
|
- vendor/liburing/test/exit-no-cleanup.c
|
|
@@ -264,6 +480,7 @@ files:
|
|
|
264
480
|
- vendor/liburing/test/fc2a85cb02ef.c
|
|
265
481
|
- vendor/liburing/test/fd-install.c
|
|
266
482
|
- vendor/liburing/test/fd-pass.c
|
|
483
|
+
- vendor/liburing/test/fdinfo-sqpoll.c
|
|
267
484
|
- vendor/liburing/test/fdinfo.c
|
|
268
485
|
- vendor/liburing/test/fifo-nonblock-read.c
|
|
269
486
|
- vendor/liburing/test/file-exit-unreg.c
|
|
@@ -281,6 +498,7 @@ files:
|
|
|
281
498
|
- vendor/liburing/test/fpos.c
|
|
282
499
|
- vendor/liburing/test/fsnotify.c
|
|
283
500
|
- vendor/liburing/test/fsync.c
|
|
501
|
+
- vendor/liburing/test/futex-kill.c
|
|
284
502
|
- vendor/liburing/test/futex.c
|
|
285
503
|
- vendor/liburing/test/hardlink.c
|
|
286
504
|
- vendor/liburing/test/helpers.c
|
|
@@ -349,8 +567,10 @@ files:
|
|
|
349
567
|
- vendor/liburing/test/read-mshot.c
|
|
350
568
|
- vendor/liburing/test/read-write.c
|
|
351
569
|
- vendor/liburing/test/recv-bundle-short-ooo.c
|
|
570
|
+
- vendor/liburing/test/recv-inc-ooo.c
|
|
352
571
|
- vendor/liburing/test/recv-msgall-stream.c
|
|
353
572
|
- vendor/liburing/test/recv-msgall.c
|
|
573
|
+
- vendor/liburing/test/recv-mshot-fair.c
|
|
354
574
|
- vendor/liburing/test/recv-multishot.c
|
|
355
575
|
- vendor/liburing/test/recvsend_bundle-inc.c
|
|
356
576
|
- vendor/liburing/test/recvsend_bundle.c
|
|
@@ -414,6 +634,8 @@ files:
|
|
|
414
634
|
- vendor/liburing/test/thread-exit.c
|
|
415
635
|
- vendor/liburing/test/timeout-new.c
|
|
416
636
|
- vendor/liburing/test/timeout.c
|
|
637
|
+
- vendor/liburing/test/timerfd-short-read.c
|
|
638
|
+
- vendor/liburing/test/timestamp.c
|
|
417
639
|
- vendor/liburing/test/truncate.c
|
|
418
640
|
- vendor/liburing/test/tty-write-dpoll.c
|
|
419
641
|
- vendor/liburing/test/unlink.c
|
|
@@ -453,7 +675,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
453
675
|
- !ruby/object:Gem::Version
|
|
454
676
|
version: '0'
|
|
455
677
|
requirements: []
|
|
456
|
-
rubygems_version: 3.
|
|
678
|
+
rubygems_version: 3.7.0.dev
|
|
457
679
|
specification_version: 4
|
|
458
680
|
summary: A lean, mean io_uring machine
|
|
459
681
|
test_files: []
|