Skip to main content

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.

EndpointPOST /api/network/transport/state
Authapi-key
Rate limit120/min
Categorynetwork

Parameters

NameTypeRequiredDescription
connectionIdstringYesTransport connection ID.
currentRatenumberYesCurrent send rate (bytes/sec).
packetLossnumberNoCurrent 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.