Add RateTracker (rolling deque, events/sec) and LatencyTracker (circular buffer, p50/p95/p99 in ms) to the Metrics class. Both are recorded in _handle_client and exposed via summary(), to_dict(), /status, and /metrics. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
42 lines
1.3 KiB
Markdown
42 lines
1.3 KiB
Markdown
# s5p -- Roadmap
|
|
|
|
## v0.1.0 (current)
|
|
|
|
- [x] SOCKS5 server (CONNECT command)
|
|
- [x] Proxy chaining (SOCKS5, SOCKS4/4a, HTTP CONNECT)
|
|
- [x] Per-hop authentication
|
|
- [x] YAML config + CLI flags
|
|
- [x] DNS leak prevention
|
|
- [x] Container deployment (Alpine + podman-compose)
|
|
- [x] Graceful SIGTERM/SIGINT shutdown
|
|
- [x] cProfile support
|
|
- [x] Dynamic proxy source API integration
|
|
- [x] Weighted proxy selection (recency-based)
|
|
- [x] Per-proxy backoff (connection failure cooldown)
|
|
- [x] Stale proxy expiry (last_seen TTL)
|
|
- [x] Pool stats in periodic metrics log
|
|
- [x] Instant warm start (trust cached state, defer all health tests)
|
|
- [x] Static chain health check (pre-flight before pool tests)
|
|
- [x] SIGHUP hot config reload
|
|
- [x] Dead proxy reporting to source API
|
|
|
|
## v0.2.0
|
|
|
|
- [x] Built-in control API (runtime metrics, pool state, config reload)
|
|
- [ ] SOCKS5 server authentication (username/password)
|
|
- [x] Tor control port integration (circuit renewal via NEWNYM)
|
|
- [x] Metrics (connections/sec, bytes relayed, hop latency)
|
|
|
|
## v0.3.0
|
|
|
|
- [ ] UDP ASSOCIATE support (SOCKS5 UDP relay)
|
|
- [ ] BIND support
|
|
- [ ] Chain randomization (random order, random subset)
|
|
|
|
## v1.0.0
|
|
|
|
- [ ] Stable API and config format
|
|
- [ ] Comprehensive test suite with mock proxies
|
|
- [ ] Systemd service unit
|
|
- [ ] Performance benchmarks
|