mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.7 KiB
41 lines
1.7 KiB
#include "TunnelConfig.h" |
|
|
|
void TunnelConfig::saveHeaderToStringStream(std::stringstream& out) { |
|
out << "[" << name << "]\n" |
|
<< "type=" << type.toStdString() << "\n"; |
|
} |
|
|
|
void TunnelConfig::saveI2CPParametersToStringStream(std::stringstream& out) { |
|
out << "inbound.length=" << i2cpParameters.getInbound_length().toStdString() << "\n" |
|
<< "outbound.length=" << i2cpParameters.getOutbound_length().toStdString() << "\n" |
|
<< "inbound.quantity=" << i2cpParameters.getInbound_quantity().toStdString() << "\n" |
|
<< "outbound.quantity=" << i2cpParameters.getOutbound_quantity().toStdString() << "\n" |
|
<< "crypto.tagsToSend=" << i2cpParameters.getCrypto_tagsToSend().toStdString() << "\n" |
|
<< "explicitPeers=" << i2cpParameters.getExplicitPeers().toStdString() << "\n\n"; |
|
} |
|
|
|
void ClientTunnelConfig::saveToStringStream(std::stringstream& out) { |
|
out << "address=" << address << "\n" |
|
<< "port=" << port << "\n" |
|
<< "destination=" << dest << "\n" |
|
<< "keys=" << keys << "\n" |
|
<< "destinationport=" << destinationPort << "\n" |
|
<< "signaturetype=" << sigType << "\n"; |
|
} |
|
|
|
|
|
void ServerTunnelConfig::saveToStringStream(std::stringstream& out) { |
|
out << "host=" << host << "\n" |
|
<< "port=" << port << "\n" |
|
<< "keys=" << keys << "\n" |
|
<< "signaturetype=" << sigType << "\n" |
|
<< "inport=" << inPort << "\n" |
|
<< "accesslist=" << accessList << "\n" |
|
<< "gzip=" << (gzip?"true":"false") << "\n" |
|
<< "enableuniquelocal=" << (isUniqueLocal?"true":"false") << "\n" |
|
<< "address=" << address << "\n" |
|
<< "hostoverride=" << hostOverride << "\n" |
|
<< "webircpassword=" << webircpass << "\n" |
|
<< "maxconns=" << maxConns << "\n"; |
|
} |
|
|
|
|