Init
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Tor.Controller
|
||||
{
|
||||
/// <summary>
|
||||
/// A class containing the command to save the configuration values in memory, to the <c>torrc</c> document.
|
||||
/// </summary>
|
||||
internal sealed class SaveConfCommand : Command<Response>
|
||||
{
|
||||
#region Tor.Controller.Command<>
|
||||
|
||||
/// <summary>
|
||||
/// Dispatches the command to the client control port and produces a <typeparamref name="T" /> response result.
|
||||
/// </summary>
|
||||
/// <param name="connection">The control connection where the command should be dispatched.</param>
|
||||
/// <returns>
|
||||
/// A <typeparamref name="T" /> object instance containing the response data.
|
||||
/// </returns>
|
||||
protected override Response Dispatch(Connection connection)
|
||||
{
|
||||
if (connection.Write("saveconf"))
|
||||
{
|
||||
ConnectionResponse response = connection.Read();
|
||||
return new Response(response.Success);
|
||||
}
|
||||
|
||||
return new Response(false);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user