bind abstract method

Future<TailscaleHttpServer> bind({
  1. required int port,
})

Binds a tailnet HTTP port and exposes inbound requests as fd-backed Dart request objects.

The native accept backlog is bounded. If the Dart side falls behind far enough for the Go-side backlog to fill, new wire clients receive HTTP 503.

Implementation

Future<TailscaleHttpServer> bind({required int port});