Lucas Pluvinage

Results 42 comments of Lucas Pluvinage

Hi, the `mirage build` command should only ask dune to build the unikernel. Currently it's invoking `dune build --root .` which is asking `dune` to build everything in the workspace,...

It's not upgraded yet, still on old OpenBSDs, I have just moved and restarted the CI infrastructure.

Ocamlification was introduced to generate opam files with correct names (as `'.'` would confuse opam). Do you know if there are other places were we expect ocamlified names ? I'm...

> The current dist/ target directory is not super practical for mirage-skeleton as tutorial/hello-key/dist is not at the root of the repo. The problem is that as long as mirage...

Thank you for testing mirage 4 ! > * [ ] I started with a mirage-skeleton repository which was dirty (I did some previous builds with mirage3 in there), a...

`netif` and TCP/IP: there are two network interface that could be implemented: - wifi: someone has a blogpost on that matter https://iosoft.blog/zerowi/ - ethernet: the ethernet drivers need to be...

Blocker for the common API are PRs in httpaf that enables a Mirage adapter and response with upgrade: https://github.com/inhabitedtype/httpaf/pull/83 and https://github.com/inhabitedtype/httpaf/pull/91

> First on the general design, I think it's along the right lines though one of the properties I tried to have of the existing design is that there's a...

The PR is updated with some changes: - C / OCaml API separation - labels for custom types declaration - reuse buffers for performance About the `user_resolve` function, it's a...

I have finally figured out something for the ID => event resolution. My last commits adds the implementation of a basic memoization system using an array of Event.t values. Indices...