blob: 22288b5d5452c856f462857add8636033af73080 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
const core = window.__bootstrap.core;
const ops = core.ops;
const { HttpConn } = window.__bootstrap.http;
function serveHttp(conn) {
const rid = ops.op_http_start(conn.rid);
return new HttpConn(rid, conn.remoteAddr, conn.localAddr);
}
window.__bootstrap.http.serveHttp = serveHttp;
})(globalThis);
|