Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- [x] Good Performance in Busy Conditions.
- [x] Support for `UDP`, `HTTP`, and `TLS` Sockets.
- [x] Native `IPv4` and `IPv6` support.
- [x] [I2P] peer announces and matchmaking over HTTP.
- [x] Private & Whitelisted mode.
- [x] Tracker Management API.
- [x] Support [newTrackon][newtrackon] checks.
Expand Down Expand Up @@ -306,3 +307,4 @@ This project was a joint effort by [Nautilus Cyberneering GmbH][nautilus] and [D
[Power2All]: https://github.com/power2all
[torrust-demo]: https://github.com/torrust/torrust-demo
[prometheus]: https://prometheus.io/
[I2P]: https://i2p.net/en/docs/applications/bittorrent/
3 changes: 2 additions & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
],
"ignorePaths": [
".tmp/**",
"storage/**",
"target",
"docs/media/*.svg",
"contrib/bencode/benches/*.bencode",
Expand All @@ -33,4 +34,4 @@
"contrib/dev-tools/git/github-merge.py",
"docs/issues/**/evidence/*.html"
]
}
}

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions docs/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,13 @@ Packages that have been extracted to their own standalone repositories.
- Response bencoding
- Error code mapping
- Compact peer formatting
- I2P Destination parsing and compact Destination-hash formatting

HTTP swarms keep I2P peers isolated from clearnet peers. An I2P announce may provide its full
Base64 Destination, with or without the `.i2p` suffix, in the `ip` query parameter. Non-compact
responses return that Destination, while compact responses return its 32-byte SHA-256 hash.
See the [I2P BitTorrent specification](https://i2p.net/en/docs/applications/bittorrent/) for the
wire-format details.

### UDP Tracker (BEP 15)

Expand Down
28 changes: 28 additions & 0 deletions docs/pr-reviews-manual/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Manual PR Reviews

This directory contains manual (human-assisted) reviews of pull requests on the
[torrust/torrust-tracker](https://github.com/torrust/torrust-tracker) repository.

Each review lives in its own subfolder named `pr-<NUMBER>/` and may contain
multiple Markdown files — one per review pass or analysis task (e.g. code review,
protocol compliance audit, spec comparison).

## Structure

```text
docs/pr-reviews-manual/
├── README.md ← this file
└── pr-2050/
├── review-pass-1.md ← first-pass findings, actions, and questions
├── protocol-compliance.md ← optional: I2P spec compliance audit
└── ...
```

## Differences from `docs/pr-reviews/`

| Aspect | `docs/pr-reviews/` | `docs/pr-reviews-manual/` |
| ------------ | ----------------------------- | --------------------------------------------------- |
| Scope | Copilot suggestion processing | Manual code review, design analysis, spec audits |
| Workflow | Automated suggestion threads | Human-driven analysis with AI assistance |
| Output | Suggestion tracker files | Multi-file review packages per PR |
| Final report | N/A | Single consolidated report with actions + questions |
Loading
Loading