-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fetch: react to congestion event once per RTO
- Loading branch information
Showing
8 changed files
with
42 additions
and
43 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# ndn-dpdk/app/fetch | ||
|
||
This package is used in the [traffic generator](../tg). | ||
This package is the congestion aware fetcher, used in the [traffic generator](../tg). | ||
It implements a consumer that follows the TCP CUBIC congestion control algorithm, simulating traffic patterns similar to bulk file transfer. | ||
It requires at least one thread, running the `FetchThread_Run` function. |
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 |
---|---|---|
|
@@ -6,33 +6,33 @@ | |
"serve": "node --loader tsm main.ts serve", | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"packageManager": "pnpm@8.15.3+sha256.fc4a49bd609550a41e14d20efbce802a4b892aa4cac877322de2f0924f122991", | ||
"packageManager": "pnpm@9.0.5+sha256.61bd66913b52012107ec25a6ee4d6a161021ab99e04f6acee3aa50d0e34b4af9", | ||
"dependencies": { | ||
"@fastify/express": "^2.3.0", | ||
"@fastify/http-proxy": "^9.4.0", | ||
"@fastify/static": "^7.0.1", | ||
"@fastify/express": "^3.0.0", | ||
"@fastify/http-proxy": "^9.5.0", | ||
"@fastify/static": "^7.0.3", | ||
"@strattadb/environment": "^8.0.2", | ||
"@types/minimalistic-assert": "^1.0.3", | ||
"@types/ndjson": "^2.0.4", | ||
"@types/stdout-stream": "^1.4.2", | ||
"@types/yargs": "^17.0.32", | ||
"@typescript/lib-dom": "npm:@types/[email protected].139", | ||
"@typescript/lib-dom": "npm:@types/[email protected].143", | ||
"@usnistgov/ndn-dpdk": "file:/usr/local/share/ndn-dpdk/ndn-dpdk.npm.tgz", | ||
"delay": "^6.0.0", | ||
"dotenv": "^16.4.4", | ||
"fastify": "^4.26.1", | ||
"dotenv": "^16.4.5", | ||
"fastify": "^4.26.2", | ||
"get-stdin": "^9.0.0", | ||
"minimalistic-assert": "^1.0.1", | ||
"ndjson": "^2.0.0", | ||
"preact": "^10.19.4", | ||
"preact": "^10.20.2", | ||
"simple-statistics": "^7.8.3", | ||
"stdout-stream": "^2.0.0", | ||
"ts-loader": "^9.5.1", | ||
"tslib": "^2.6.2", | ||
"tsm": "^2.3.0", | ||
"typescript": "~5.3.3", | ||
"webpack": "^5.90.2", | ||
"webpack-dev-middleware": "^7.0.0", | ||
"typescript": "~5.4.5", | ||
"webpack": "^5.91.0", | ||
"webpack-dev-middleware": "^7.2.1", | ||
"yargs": "^17.7.2" | ||
}, | ||
"engines": { | ||
|
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 |
---|---|---|
|
@@ -4,24 +4,24 @@ | |
"scripts": { | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"packageManager": "pnpm@8.15.3+sha256.fc4a49bd609550a41e14d20efbce802a4b892aa4cac877322de2f0924f122991", | ||
"packageManager": "pnpm@9.0.5+sha256.61bd66913b52012107ec25a6ee4d6a161021ab99e04f6acee3aa50d0e34b4af9", | ||
"dependencies": { | ||
"@fastify/express": "^2.3.0", | ||
"@fastify/http-proxy": "^9.4.0", | ||
"@fastify/static": "^7.0.1", | ||
"@typescript/lib-dom": "npm:@types/[email protected].139", | ||
"@fastify/express": "^3.0.0", | ||
"@fastify/http-proxy": "^9.5.0", | ||
"@fastify/static": "^7.0.3", | ||
"@typescript/lib-dom": "npm:@types/[email protected].143", | ||
"@usnistgov/ndn-dpdk": "file:/usr/local/share/ndn-dpdk/ndn-dpdk.npm.tgz", | ||
"delay": "^6.0.0", | ||
"fastify": "^4.26.1", | ||
"fastify": "^4.26.2", | ||
"hashquery": "^1.0.0", | ||
"numd": "^3.1.0", | ||
"preact": "^10.19.4", | ||
"preact": "^10.20.2", | ||
"ts-loader": "^9.5.1", | ||
"tslib": "^2.6.2", | ||
"typescript": "~5.3.3", | ||
"typescript": "~5.4.5", | ||
"url-parse-lax": "^5.0.0", | ||
"webpack": "^5.90.2", | ||
"webpack-dev-middleware": "^7.0.0", | ||
"webpack": "^5.91.0", | ||
"webpack-dev-middleware": "^7.2.1", | ||
"yargs": "^17.7.2" | ||
}, | ||
"engines": { | ||
|