summaryrefslogtreecommitdiff
path: root/runtime/js/40_http.js
blob: 36d81037415a7d84aa22130fc4c1652bd3b98341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2018-2022 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);