ZeqTransport — Congestion Control
Congestion control using R(t) modulation instead of TCP window sizing. Send rate modulated by HulyaPulse — naturally oscillates to find optimal throughput without packet loss.
| Endpoint | POST /api/network/transport/state |
| Auth | api-key |
| Rate limit | 120/min |
| Category | network |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
connectionId | string | Yes | Transport connection ID. |
currentRate | number | Yes | Current send rate (bytes/sec). |
packetLoss | number | No | Current packet loss ratio (0–1). |
Returns
{ recommendedRate, R_t_modulation, phase, backoffMs, congestionState }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"connectionId": "<connectionId>",
"currentRate": 0,
"packetLoss": 0
}' \
"https://zeqsdk.com/api/network/transport/state"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-transport.