Skip to content

Commit

Permalink
[Removed] Disable openssl for now
Browse files Browse the repository at this point in the history
It segfaults under multicore: see savonet/ocaml-ssl#76
  • Loading branch information
talex5 authored and Willenbrink committed Mar 12, 2023
1 parent 1ed0a6f commit dc4b7be
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/vendor/h2
Submodule h2 updated 87 files
+5 −5 .github/workflows/test.yml
+13 −23 .ocamlformat
+0 −41 CHANGES.md
+13 −13 README.md
+19 −73 async/h2_async.ml
+8 −24 async/h2_async.mli
+21 −17 async/h2_async_intf.ml
+15 −28 certificates/server.key
+13 −19 certificates/server.pem
+0 −4 eio/dune
+0 −85 eio/h2_eio.ml
+0 −71 eio/h2_eio.mli
+6 −4 examples/alpn/lib/h2_handler.ml
+10 −8 examples/alpn/lib/http1_handler.ml
+4 −2 examples/alpn/mirage/h2_handler.ml
+4 −2 examples/alpn/mirage/http1_handler.ml
+5 −2 examples/alpn/mirage/unikernel.ml
+12 −6 examples/alpn/unix/alpn_server_ssl.ml
+8 −6 examples/alpn/unix/alpn_server_tls.ml
+18 −16 examples/async/async_https_echo_post.ml
+0 −84 examples/async/async_tls_https_echo_client_post.ml
+2 −2 examples/async/dune
+0 −8 examples/eio/dune
+0 −96 examples/eio/eio_get.ml
+2 −2 examples/lwt/dune
+30 −31 examples/lwt/lwt_echo_server2.ml
+6 −4 examples/lwt/lwt_get.ml
+13 −12 examples/lwt/lwt_h2c.ml
+15 −10 examples/lwt/lwt_https_server.ml
+4 −10 examples/lwt/lwt_post.ml
+0 −154 examples/mirage/key_gen.ml
+0 −119 examples/mirage/main.ml
+0 −0 examples/mirage/myocamlbuild.ml
+2 −2 examples/mirage/unikernel.ml
+0 −80 flake.lock
+0 −25 flake.nix
+0 −22 h2-eio.opam
+1 −1 h2-mirage.opam
+1 −1 h2.opam
+58 −46 hpack/src/decoder.ml
+10 −5 hpack/src/dynamic_table.ml
+56 −66 hpack/src/encoder.ml
+32 −26 hpack/src/huffman.ml
+187 −68 hpack/src/static_table.ml
+31 −38 hpack/test/test.ml
+51 −29 hpack/util/gen_huffman.ml
+22 −14 hpack/util/gen_static.ml
+126 −137 lib/body.ml
+175 −186 lib/client_connection.ml
+90 −45 lib/error_code.ml
+6 −0 lib/flags.ml
+44 −22 lib/frame.ml
+101 −100 lib/h2.mli
+91 −35 lib/headers.ml
+6 −2 lib/message.ml
+4 −2 lib/optional_thunk.ml
+5 −0 lib/optional_thunk.mli
+117 −110 lib/parse.ml
+2 −0 lib/priority.ml
+169 −132 lib/reqd.ml
+57 −41 lib/respd.ml
+5 −6 lib/response.ml
+66 −57 lib/scheduler.ml
+72 −71 lib/serialize.ml
+149 −148 lib/server_connection.ml
+87 −52 lib/settings.ml
+45 −22 lib/status.ml
+10 −27 lib/stream.ml
+3 −0 lib/stream_identifier.ml
+1 −0 lib/util.ml
+20 −17 lib_test/test_common.ml
+65 −34 lib_test/test_frames.ml
+1 −64 lib_test/test_h2.ml
+46 −351 lib_test/test_h2_client.ml
+63 −138 lib_test/test_h2_server.ml
+5 −3 lib_test/test_priority.ml
+4 −18 lwt-unix/h2_lwt_unix.ml
+5 −4 lwt/h2_lwt.ml
+1 −0 lwt/h2_lwt.mli
+4 −2 lwt/h2_lwt_intf.ml
+1 −1 mirage/dune
+4 −15 mirage/h2_mirage.ml
+5 −29 nix/ci/test.nix
+82 −97 nix/default.nix
+41 −0 nix/sources.nix
+22 −27 shell.nix
+19 −17 spec/lwt_h2spec.ml
2 changes: 1 addition & 1 deletion src/vendor/httpaf
Submodule httpaf updated 53 files
+7 −5 .github/workflows/test.yml
+10 −12 async/httpaf_async.ml
+9 −7 async/httpaf_async.mli
+18 −16 async/httpaf_async_intf.ml
+1 −7 benchmarks/dune
+1 −1 benchmarks/wrk_async_benchmark.ml
+0 −4 eio/dune
+0 −80 eio/httpaf_eio.ml
+0 −68 eio/httpaf_eio.mli
+4 −5 examples/async/async_echo_post.ml
+1 −1 examples/async/async_get.ml
+4 −4 examples/async/async_get_pipelined.ml
+9 −9 examples/async/async_https_echo_post.ml
+4 −4 examples/async/async_https_get.ml
+1 −1 examples/async/async_post.ml
+3 −14 examples/async/dune
+0 −9 examples/eio/dune
+0 −87 examples/eio/eio_echo_post.ml
+0 −65 examples/eio/eio_get.ml
+0 −69 examples/eio/eio_ssl_get.ml
+1 −1 examples/lib/httpaf_examples.ml
+2 −2 examples/lwt/lwt_echo_post.ml
+2 −2 examples/lwt/lwt_get_pipelined.ml
+1 −1 examples/lwt/lwt_https_get.ml
+2 −1 examples/lwt/lwt_https_server.ml
+0 −80 flake.lock
+0 −20 flake.nix
+0 −1 httpaf-async.opam
+0 −25 httpaf-eio.opam
+1 −1 httpaf-mirage.opam
+1 −0 httpaf.opam
+18 −17 lib/body.ml
+21 −19 lib/client_connection.ml
+1 −1 lib/dune
+1 −1 lib/headers.ml
+5 −7 lib/httpaf.mli
+2 −2 lib/parse.ml
+4 −3 lib/reqd.ml
+2 −5 lib/respd.ml
+2 −2 lib/response_state.ml
+21 −22 lib/server_connection.ml
+0 −20 lib/status.ml
+45 −347 lib_test/test_client_connection.ml
+8 −199 lib_test/test_server_connection.ml
+1 −1 lwt/httpaf_lwt.ml
+2 −8 lwt/httpaf_lwt.mli
+0 −1 lwt/httpaf_lwt_intf.ml
+2 −8 mirage/dune
+5 −14 mirage/httpaf_mirage.ml
+5 −27 nix/ci/test.nix
+72 −83 nix/default.nix
+17 −0 nix/sources.nix
+2 −2 shell.nix

0 comments on commit dc4b7be

Please sign in to comment.