feat: using retry system to connect to aria2

This commit is contained in:
Chubby Granny Chaser
2024-05-29 21:50:35 +01:00
parent 85516c1744
commit ffb3d79954
34 changed files with 243 additions and 317 deletions

View File

@@ -0,0 +1,20 @@
import path from "node:path";
import { spawn } from "node:child_process";
import { app } from "electron";
export const startAria2 = () => {
const binaryPath = app.isPackaged
? path.join(process.resourcesPath, "aria2", "aria2c")
: path.join(__dirname, "..", "..", "aria2", "aria2c");
return spawn(
binaryPath,
[
"--enable-rpc",
"--rpc-listen-all",
"--file-allocation=none",
"--allow-overwrite=true",
],
{ stdio: "inherit" }
);
};