app links initial
This commit is contained in:
+10
-1
@@ -1,4 +1,4 @@
|
||||
// Autogenerated from Pigeon (v26.3.4), do not edit directly.
|
||||
// Autogenerated from Pigeon (v27.1.0), do not edit directly.
|
||||
// See also: https://pub.dev/packages/pigeon
|
||||
@file:Suppress("UNCHECKED_CAST", "ArrayInDataClass")
|
||||
|
||||
@@ -278,6 +278,9 @@ data class TorConfiguration (
|
||||
result = 31 * result + TorApiPigeonUtils.deepHash(this.strictNodes)
|
||||
return result
|
||||
}
|
||||
override fun toString(): String {
|
||||
return "TorConfiguration(transport=$transport, bridgeLines=$bridgeLines, entryNodeCountries=$entryNodeCountries, exitNodeCountries=$exitNodeCountries, strictNodes=$strictNodes)"
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -337,6 +340,9 @@ data class TorStatus (
|
||||
result = 31 * result + TorApiPigeonUtils.deepHash(this.exitNodeCountry)
|
||||
return result
|
||||
}
|
||||
override fun toString(): String {
|
||||
return "TorStatus(isRunning=$isRunning, socksPort=$socksPort, bootstrapProgress=$bootstrapProgress, currentCircuit=$currentCircuit, exitNodeCountry=$exitNodeCountry)"
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -386,6 +392,9 @@ data class TorLogMessage (
|
||||
result = 31 * result + TorApiPigeonUtils.deepHash(this.timestamp)
|
||||
return result
|
||||
}
|
||||
override fun toString(): String {
|
||||
return "TorLogMessage(severity=$severity, message=$message, timestamp=$timestamp)"
|
||||
}
|
||||
}
|
||||
private open class TorApiPigeonCodec : StandardMessageCodec() {
|
||||
override fun readValueOfType(type: Byte, buffer: ByteBuffer): Any? {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Autogenerated from Pigeon (v26.3.4), do not edit directly.
|
||||
// Autogenerated from Pigeon (v27.1.0), do not edit directly.
|
||||
// See also: https://pub.dev/packages/pigeon
|
||||
// ignore_for_file: unused_import, unused_shown_name
|
||||
// ignore_for_file: type=lint
|
||||
@@ -191,6 +191,11 @@ class TorConfiguration {
|
||||
@override
|
||||
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
||||
int get hashCode => _deepHash(<Object?>[runtimeType, ..._toList()]);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'TorConfiguration(transport: $transport, bridgeLines: $bridgeLines, entryNodeCountries: $entryNodeCountries, exitNodeCountries: $exitNodeCountries, strictNodes: $strictNodes)';
|
||||
}
|
||||
}
|
||||
|
||||
/// Current Tor status
|
||||
@@ -257,6 +262,11 @@ class TorStatus {
|
||||
@override
|
||||
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
||||
int get hashCode => _deepHash(<Object?>[runtimeType, ..._toList()]);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'TorStatus(isRunning: $isRunning, socksPort: $socksPort, bootstrapProgress: $bootstrapProgress, currentCircuit: $currentCircuit, exitNodeCountry: $exitNodeCountry)';
|
||||
}
|
||||
}
|
||||
|
||||
/// Log message from Tor
|
||||
@@ -311,6 +321,11 @@ class TorLogMessage {
|
||||
@override
|
||||
// ignore: avoid_equals_and_hash_code_on_mutable_classes
|
||||
int get hashCode => _deepHash(<Object?>[runtimeType, ..._toList()]);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'TorLogMessage(severity: $severity, message: $message, timestamp: $timestamp)';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -358,8 +373,8 @@ class _PigeonCodec extends StandardMessageCodec {
|
||||
|
||||
/// Host API (Flutter -> Native)
|
||||
class TorApi {
|
||||
/// Constructor for [TorApi]. The [binaryMessenger] named argument is
|
||||
/// available for dependency injection. If it is left null, the default
|
||||
/// Constructor for [TorApi]. The [binaryMessenger] named argument is
|
||||
/// available for dependency injection. If it is left null, the default
|
||||
/// BinaryMessenger will be used which routes to the host platform.
|
||||
TorApi({BinaryMessenger? binaryMessenger, String messageChannelSuffix = ''})
|
||||
: pigeonVar_binaryMessenger = binaryMessenger,
|
||||
@@ -508,8 +523,8 @@ abstract class TorLogApi {
|
||||
}
|
||||
|
||||
class IPtProxyController {
|
||||
/// Constructor for [IPtProxyController]. The [binaryMessenger] named argument is
|
||||
/// available for dependency injection. If it is left null, the default
|
||||
/// Constructor for [IPtProxyController]. The [binaryMessenger] named argument is
|
||||
/// available for dependency injection. If it is left null, the default
|
||||
/// BinaryMessenger will be used which routes to the host platform.
|
||||
IPtProxyController({BinaryMessenger? binaryMessenger, String messageChannelSuffix = ''})
|
||||
: pigeonVar_binaryMessenger = binaryMessenger,
|
||||
|
||||
Reference in New Issue
Block a user