mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-05-24 08:05:36 +02:00
qt: newer options added; not tested
This commit is contained in:
parent
005581ef62
commit
17f5bcbd1c
8 changed files with 249 additions and 42 deletions
qt/i2pd_qt
|
@ -24,6 +24,18 @@ void TunnelConfig::saveI2CPParametersToStringStream(std::stringstream& out) {
|
|||
if (!i2cpParameters.getExplicitPeers().isEmpty()) //todo #947
|
||||
out << i2p::client::I2CP_PARAM_EXPLICIT_PEERS << "="
|
||||
<< i2cpParameters.getExplicitPeers().toStdString() << "\n";
|
||||
out << i2p::client::I2CP_PARAM_LEASESET_AUTH_TYPE << "="
|
||||
<< i2cpParameters.get_i2cp_leaseSetAuthType().toStdString() << "\n";
|
||||
out << i2p::client::I2CP_PARAM_LEASESET_ENCRYPTION_TYPE << "="
|
||||
<< i2cpParameters.get_i2cp_leaseSetEncType().toStdString() << "\n";
|
||||
out << i2p::client::I2CP_PARAM_LEASESET_PRIV_KEY << "="
|
||||
<< i2cpParameters.get_i2cp_leaseSetPrivKey().toStdString() << "\n";
|
||||
out << i2p::client::I2CP_PARAM_LEASESET_TYPE << "="
|
||||
<< i2cpParameters.get_i2cp_leaseSetType().toStdString() << "\n";
|
||||
out << i2p::client::I2CP_PARAM_STREAMING_ANSWER_PINGS << "="
|
||||
<< (i2cpParameters.get_i2p_streaming_answerPings() ? "true" : "false") << "\n";
|
||||
out << i2p::client::I2CP_PARAM_STREAMING_INITIAL_ACK_DELAY << "="
|
||||
<< i2cpParameters.get_i2p_streaming_initialAckDelay().toStdString() << "\n";
|
||||
out << "\n";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue