Skip to content

Commit 8415cce

Browse files
committed
Add bounded concurrent URL transport
OpenAI gpt-5.6-sol via OpenCode implemented the bounded concurrent validated-IP transport and deterministic tests. Chris Huber reviewed and remains responsible for every line.
1 parent 27fdd55 commit 8415cce

4 files changed

Lines changed: 956 additions & 539 deletions
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
/**
3+
* Mutable state for one nonblocking, validated URL fetch socket.
4+
*
5+
* @package StaticSiteImporter
6+
*/
7+
8+
class Static_Site_Importer_URL_Fetcher_Native_Handle {
9+
public mixed $socket;
10+
public array $target;
11+
public array $options;
12+
public float $started;
13+
public string $outbound;
14+
public string $raw;
15+
public bool $crypto;
16+
public string $error;
17+
public int $ip_index;
18+
}

0 commit comments

Comments
 (0)