You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get Httpaf working on Windows and I now have it compiling but it fails at runtime with Fatal error: exception Lwt_sys.Not_available("unix_writev").
In the docs it's stated that it probably could be implemented
Not implemented on Windows. It should be possible to implement, upon request, for Windows sockets only.
What needs to happen to make this happen?
The text was updated successfully, but these errors were encountered:
The easiest thing to do at first is to forward to regular write on Windows, and write only the first buffer. This is what Httpaf used to do on Unix as well, when using Lwt, before Unix writev was added.
I'm trying to get Httpaf working on Windows and I now have it compiling but it fails at runtime with
Fatal error: exception Lwt_sys.Not_available("unix_writev")
.In the docs it's stated that it probably could be implemented
What needs to happen to make this happen?
The text was updated successfully, but these errors were encountered: