+def usage():
+ print("Usage:")
+ print(f"\t{AppInfo.ScriptName} [-h|--help|-V|--version]")
+ print(f"\t{AppInfo.ScriptName} [*options*]")
+ print()
+ print("Options:")
+ print("\t-h, --help Show this usage help")
+ print("\t-V, --version Show program version")
+ print("\t--force-root Always run on a privileged port (<1024)")
+ print("\t--force-no-root Run on an unprivileged port even as root")
+ print()
+ print("The default port if running as root is 79, with 7079 as fallback if running as a regular user")
+ print()
+
+
+def main(argv, argc):