Files
tools/lib/def.dart
2026-04-07 11:38:37 +03:00

17 lines
340 B
Dart

const defaultNetwork = '192.168.11.0';
const defaultPrefix = '24';
const netRegexMask =
r'^((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)\.){3}'
r'(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)$';
const netCountRegexMask = '';
const orangeMacLeftPart = '02:81';
const macLeftPart = orangeMacLeftPart;
enum ScriptDestination {
self,
local,
remote
}