mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-28 08:59:37 -05:00
gui changes
This commit is contained in:
parent
b0251e3806
commit
6ec191944d
@ -967,20 +967,24 @@ void ServerPage::loadHiddenNode()
|
|||||||
|
|
||||||
updateOutProxyIndicator();
|
updateOutProxyIndicator();
|
||||||
|
|
||||||
QString expected;
|
QString expected = "";
|
||||||
switch (mHiddenType) {
|
switch (mHiddenType) {
|
||||||
case RS_HIDDEN_TYPE_I2P:
|
case RS_HIDDEN_TYPE_I2P:
|
||||||
ui.l_serviceAddress->setText(tr("I2P Address"));
|
ui.l_serviceAddress->setText(tr("I2P Address"));
|
||||||
ui.l_incomingTestResult->setText(tr("I2P incoming ok"));
|
ui.l_incomingTestResult->setText(tr("I2P incoming ok"));
|
||||||
|
|
||||||
expected = "--TODO-- see http://127.0.0.1:7657/i2ptunnelmgr";
|
expected += "http://127.0.0.1:7657/i2ptunnelmgr - I2P Hidden Services\n";
|
||||||
|
expected += tr("Points at: ");
|
||||||
|
expected += QString::fromStdString(detail.localAddr);
|
||||||
|
expected += ":";
|
||||||
|
expected += QString::number(detail.localPort);
|
||||||
break;
|
break;
|
||||||
case RS_HIDDEN_TYPE_TOR:
|
case RS_HIDDEN_TYPE_TOR:
|
||||||
default:
|
default:
|
||||||
ui.l_serviceAddress->setText(tr("Onion Address"));
|
ui.l_serviceAddress->setText(tr("Onion Address"));
|
||||||
ui.l_incomingTestResult->setText(tr("Tor incoming ok"));
|
ui.l_incomingTestResult->setText(tr("Tor incoming ok"));
|
||||||
|
|
||||||
expected = "HiddenServiceDir </your/path/to/hidden/directory/service>\n";
|
expected += "HiddenServiceDir </your/path/to/hidden/directory/service>\n";
|
||||||
expected += "HiddenServicePort ";
|
expected += "HiddenServicePort ";
|
||||||
expected += QString::number(detail.hiddenNodePort);
|
expected += QString::number(detail.hiddenNodePort);
|
||||||
expected += " ";
|
expected += " ";
|
||||||
|
@ -1023,7 +1023,7 @@ are running a standard Node, so why not setup Tor and/or I2P? </string>
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_12">
|
<widget class="QLabel" name="label_12">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Expected torrc Port Configuration:</string>
|
<string>Expected Configuration:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -1079,14 +1079,15 @@ HiddenServicePort 9191 127.0.0.1:9191</string>
|
|||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="plainText">
|
<property name="plainText">
|
||||||
<string>To Receive Connections, you must first setup a Tor Hidden Service.
|
<string>To Receive Connections, you must first setup a Tor/I2P Hidden Service.
|
||||||
See Tor documentation for HOWTO details.
|
For Tor: See torrc and documentation for HOWTO details.
|
||||||
|
For I2P: See http://127.0.0.1:7657/i2ptunnelmgr and documentation for HOWTO details.
|
||||||
|
|
||||||
Once this is done, paste the Onion Address in the box above.
|
Once this is done, paste the Onion/I2P (Base32) Address in the box above.
|
||||||
This is your external address on the Tor network.
|
This is your external address on the Tor/I2P network.
|
||||||
Finally make sure that the Ports match the Tor configuration.
|
Finally make sure that the Ports match the configuration.
|
||||||
|
|
||||||
If you have issues connecting over Tor check the Tor logs too.</string>
|
If you have issues connecting over Tor check the Tor logs, too.</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
Loading…
Reference in New Issue
Block a user