From 28b09509904609f9b33f7cd956b4eff013ceeb68 Mon Sep 17 00:00:00 2001
From: str4d <str4d@mail.i2p>
Date: Sun, 25 Aug 2013 13:13:10 +0000
Subject: [PATCH] Added SimpleTextFieldPages for the main tunnel parameters
 needed

---
 .../android/i2ptunnel/activity/TunnelWizardModel.java  | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/src/net/i2p/android/i2ptunnel/activity/TunnelWizardModel.java b/src/net/i2p/android/i2ptunnel/activity/TunnelWizardModel.java
index bd78a833b..299999ddc 100644
--- a/src/net/i2p/android/i2ptunnel/activity/TunnelWizardModel.java
+++ b/src/net/i2p/android/i2ptunnel/activity/TunnelWizardModel.java
@@ -32,6 +32,16 @@ public class TunnelWizardModel extends AbstractWizardModel {
                 .setRequired(true),
             new SingleTextFieldPage(this, "Description")
                 .setDescription("A description of the tunnel. This is optional and purely informative."),
+            new SingleTextFieldPage(this, "Destination")
+                .setDescription("Type in the I2P destination of the service that this client tunnel should connect to. This could be the full base 64 destination key, or an I2P URL from your address book."),
+            new SingleTextFieldPage(this, "Reachable on")
+                .setDescription("This limits what computers or smartphones can access this tunnel."),
+            new SingleTextFieldPage(this, "Binding port")
+                .setDescription("This is the port that the client tunnel will be accessed from locally. This is also the client port for the HTTP bidir server tunnel."),
+            new SingleTextFieldPage(this, "Target host")
+                .setDescription("This is the IP that your service is running on, this is usually on the same machine so 127.0.0.1 is autofilled."),
+            new SingleTextFieldPage(this, "Target port")
+                .setDescription("This is the port that the service is accepting connections on."),
             new SingleFixedBooleanPage(this, "Auto start")
                 .setDescription("Should the tunnel automatically start when the router starts?")
                 .setRequired(true)
-- 
GitLab