CheckCircuit – Rev 1
?pathlinks?
using CommandLine.Text;
using CommandLine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
namespace CheckCircuit.CommandLine
{
[Verb("connect", HelpText = "Connect to a tor instance.")]
public class ConnectOptions
{
[Option('v', "verbose", Required = false, HelpText = "Set output to verbose messages.")]
public bool Verbose { get; set; }
[Option('p', "password", Required = true, HelpText = "The password to use after connecting to a tor control port.")]
public string Password { get; set; }
[Option('c', "connect", Required = true, HelpText = "The IP:PORT tuple to use to connect to a tor control port.")]
public string Connect { get; set; }
[Option('l', "listen", Required = true, HelpText = "The IP:PORT tuple to listen on for clients.")]
public string Listen { get; set; }
}
}