namespace axXez.TS3.Protocol
{
/// Transport protocol used for the ServerQuery connection.
public enum QueryTransportType
{
/// Plain TCP — sends credentials in cleartext. Only recommended for localhost connections.
TCP,
/// SSH — encrypts the connection. Required for TeamSpeak 6 and recommended whenever the bot runs on a different host.
SSH,
// WebQuery — not yet implemented
}
}