-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fe28ef5 docs: [#256] crate docs for tracker and bootstrap mods (Jose Celano) Pull request description: Documentation for: - [Tracker mod](https://github.com/torrust/torrust-tracker/tree/develop/src/tracker) - [Bootstrap mod](https://github.com/torrust/torrust-tracker/tree/develop/src/bootstrap) Top commit has no ACKs. Tree-SHA512: c1f6cc83259a3d121de7b5fcee93dffe878064533bd5376b40256d306b59659fc6cc10eef74c5191dffc38339b6adc53d0b987ed8547fc54bcdf3e846694f5ef
- Loading branch information
Showing
26 changed files
with
1,423 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,7 @@ | |
"proot", | ||
"Quickstart", | ||
"Rasterbar", | ||
"reannounce", | ||
"repr", | ||
"reqwest", | ||
"rngs", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
//! Tracker application bootstrapping. | ||
//! | ||
//! This module includes all the functions to build the application, its dependencies, and run the jobs. | ||
//! | ||
//! Jobs are tasks executed concurrently. Some of them are concurrent because of the asynchronous nature of the task, | ||
//! like cleaning torrents, and other jobs because they can be enabled/disabled depending on the configuration. | ||
//! For example, you can have more than one UDP and HTTP tracker, each server is executed like a independent job. | ||
pub mod app; | ||
pub mod jobs; | ||
pub mod logging; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.