Results 75 issues of Fabian

There's a extended version of the pcap format, which is also supported by libpcap with a magic value of 0xa1b2cd34. This format is created by some routers when creating a...

enhancement

- Doesn't work on https (running `curl copy.sh` in buildroot): ``` Mixed Content: The page at 'https://copy.sh/v86/?profile=buildroot' was loaded over HTTPS, but requested an insecure resource 'http://copy.sh/'. This request has...

enhancement

## Expected Behavior `dune build @ocaml-index` should work ## Actual Behavior `dune build @ocaml-index` fails with various errors (see below) ## Reproduction 1. `opam source base` 1. `echo '(executable (name...

bug

It's not clear to me if this is related to any limitations in libkrun.

To reproduce, a slight modification of `examples/eio/echo_server_upgrade.ml`: ```ocaml open Eio.Std open Piaf let connection_handler { Server.request; _ } = Response.Upgrade.websocket request ~f:(fun wsd -> let frames = Ws.Descriptor.messages wsd in...

Note that there's a `tls-eio` bridge already on opam: https://github.com/mirleft/ocaml-tls/blob/main/eio/tls_eio.mli

To reproduce: ``` % dune exec examples/eio/echo_server_upgrade.exe ``` ```js // run with `node file.js` const ws = new WebSocket("ws://localhost:8080/"); ws.onopen = function() { console.log("open"); setTimeout(() => { console.log("close"); ws.close(); },...

For example: ```ocaml type t = (string, string) result [@@deriving yojson] ``` Prints: ``` File "test.ml", line 1: Error: Unbound value result_to_yojson ``` Other derivers (e.g. show) already support it.