Files
amethyst/quic/plans/README.md
T
Claude 6579b5f656 docs: audit, status-stamp, and index all module plans
Audited all 143 plan files across the 10 plans/ folders. Each plan now
carries a Status header (shipped | in-progress | queued | abandoned)
backed by codebase evidence, and every folder has a README.md index
grouping plans by status.

Shipped plans were moved into a per-folder plans/archive/ (via git mv,
history preserved) so each plans/ folder surfaces only live work:

  shipped (archived): 122   in-progress: 8   queued: 7   abandoned: 4

docs/plans/ is the frozen legacy folder; its plans were stamped and
indexed in place (48 of 52 archived) but it remains closed to new plans.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016hpUivtmq4pgzqRbY6MYrA
2026-06-30 15:35:38 +00:00

16 lines
1.1 KiB
Markdown

# quic plans
_Audited 2026-06-30. 4 plans: 3 shipped (archived), 0 in-progress, 0 queued, 1 abandoned._
## Abandoned
| Plan | Summary |
| ---- | ------- |
| [2026-05-05-congestion-control.md](2026-05-05-congestion-control.md) | NewReno congestion control parked indefinitely — no `CongestionController` in code; the real concern was solved by the smaller `SendBuffer.bestEffort` fix instead. |
## Archived (shipped)
| Plan | Summary |
| ---- | ------- |
| [archive/2026-04-26-quic-stack-status.md](archive/2026-04-26-quic-stack-status.md) | Living status doc for the shipped pure-Kotlin QUIC v1 + HTTP/3 + WebTransport stack; records all resolved RFC-audit gaps. |
| [archive/2026-05-04-control-frame-retransmit.md](archive/2026-05-04-control-frame-retransmit.md) | RFC 9002 per-frame retransmit (RecoveryToken/SentPacket/loss-detection/PTO) plus STREAM/CRYPTO/RESET_STREAM follow-ups and SendBuffer retain-until-ACK. |
| [archive/2026-05-08-lock-split-design.md](archive/2026-05-08-lock-split-design.md) | Phase-1 split of the single `QuicConnection.lock` into `streamsLock`/`lifecycleLock`/per-level locks; phase 2 writer split deferred. |