summaryrefslogtreecommitdiffhomepage
path: root/android/src
diff options
context:
space:
mode:
Diffstat (limited to 'android/src')
-rw-r--r--android/src/main/kotlin/net/mullvad/mullvadvpn/ipc/Request.kt6
1 files changed, 6 insertions, 0 deletions
diff --git a/android/src/main/kotlin/net/mullvad/mullvadvpn/ipc/Request.kt b/android/src/main/kotlin/net/mullvad/mullvadvpn/ipc/Request.kt
index a5db82ce81..d85090ac05 100644
--- a/android/src/main/kotlin/net/mullvad/mullvadvpn/ipc/Request.kt
+++ b/android/src/main/kotlin/net/mullvad/mullvadvpn/ipc/Request.kt
@@ -12,6 +12,12 @@ sealed class Request : Message() {
@Parcelize
data class RegisterListener(val listener: Messenger) : Request()
+ @Parcelize
+ object WireGuardGenerateKey : Request()
+
+ @Parcelize
+ object WireGuardVerifyKey : Request()
+
companion object {
private const val MESSAGE_KEY = "request"