add http.cm and probe

This commit is contained in:
2026-02-24 21:04:03 -06:00
parent 3d4c0ec3d3
commit 2b877e6b0c
11 changed files with 846 additions and 7 deletions

View File

@@ -912,6 +912,14 @@ int js_is_blob(JSContext *js, JSValue v);
#include "blob.h"
/* ============================================================
Actor I/O Watch — event-driven fd monitoring
============================================================ */
void actor_watch_readable(JSContext *actor, int fd, JSValue fn);
void actor_watch_writable(JSContext *actor, int fd, JSValue fn);
void actor_unwatch(JSContext *actor, int fd);
/* ============================================================
Convenience Functions
============================================================ */