mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-02 11:16:34 -04:00
add i2psam3
This commit is contained in:
parent
42bc295d1a
commit
10189ba4d0
21 changed files with 1543 additions and 85 deletions
|
@ -539,12 +539,12 @@ void GenCertDialog::genPerson()
|
|||
std::string hl = ui.hiddenaddr_input->text().toStdString();
|
||||
uint16_t port = ui.hiddenport_spinBox->value();
|
||||
|
||||
bool useBob = ui.cbUseBob->isChecked();
|
||||
bool useI2p = ui.cbUseBob->isChecked();
|
||||
|
||||
if (useBob && hl.empty())
|
||||
if (useI2p && hl.empty())
|
||||
hl = "127.0.0.1";
|
||||
|
||||
RsInit::SetHiddenLocation(hl, port, useBob); /* parses it */
|
||||
RsInit::SetHiddenLocation(hl, port, useI2p); /* parses it */
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>712</width>
|
||||
<height>502</height>
|
||||
<width>726</width>
|
||||
<height>579</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="ServerPageVLayout">
|
||||
|
@ -908,9 +908,9 @@ If you have issues connecting over Tor check the Tor logs too.</string>
|
|||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="hiddenServiceTabI2PBOB">
|
||||
<widget class="QWidget" name="hiddenServiceTabI2P">
|
||||
<attribute name="title">
|
||||
<string>Automatic I2P/BOB</string>
|
||||
<string>Automatic I2P</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="hiddenServiceTabI2PBOBVLayout">
|
||||
<item>
|
||||
|
@ -918,7 +918,7 @@ If you have issues connecting over Tor check the Tor logs too.</string>
|
|||
<item>
|
||||
<widget class="QCheckBox" name="cb_enableBob">
|
||||
<property name="text">
|
||||
<string>Enable I2P BOB - changing this requires a restart to fully take effect</string>
|
||||
<string>Enable I2P SAMv3 - changing this requires a restart to fully take effect</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -950,7 +950,7 @@ If you have issues connecting over Tor check the Tor logs too.</string>
|
|||
<item>
|
||||
<widget class="QGroupBox" name="gbBob">
|
||||
<property name="title">
|
||||
<string>I2P Basic Open Bridge</string>
|
||||
<string>I2P Simple Anonymous Messaging</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="gbBobVLayout">
|
||||
<item>
|
||||
|
@ -990,6 +990,12 @@ If you have issues connecting over Tor check the Tor logs too.</string>
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="hiddenpage_proxyPort_i2p_2">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Not required for SAMv3</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>10</number>
|
||||
</property>
|
||||
|
@ -1016,7 +1022,7 @@ If you have issues connecting over Tor check the Tor logs too.</string>
|
|||
<string><html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>BOB accessible</string>
|
||||
<string>SAM accessible</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -1304,6 +1310,13 @@ If you have issues connecting over Tor check the Tor logs too.</string>
|
|||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="samKeyInfo">
|
||||
<property name="text">
|
||||
<string notr="true"><key info></string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
|
@ -1359,7 +1372,7 @@ If you have issues connecting over Tor check the Tor logs too.</string>
|
|||
<item>
|
||||
<widget class="QLabel" name="lBobStatus">
|
||||
<property name="text">
|
||||
<string>BOB status</string>
|
||||
<string>SAM status</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue