Port httpz from OxCaml to vanilla OCaml 5 + Eio
Convert all OxCaml-specific features to standard OCaml:
- Replace unboxed types (int16#, int64#, char#, float#) with regular types
- Convert unboxed records #{...} to regular records {...}
- Remove @ local mode annotations and exclave_ keywords
- Replace incr/decr with Int.incr/Int.decr for Base compatibility
Rewrite server from Jane Street Async to Eio:
- Use Eio.Net for TCP server
- Use Eio.Flow for connection handling
- Use Eio.Switch for resource management
All tests pass. Server supports Range requests, ETag, and If-None-Match.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>