Browse Source

fixed i2pd qt gui a bit

pull/911/head
hypnosis-i2p 7 years ago
parent
commit
deb5e435e5
  1. 1
      qt/i2pd_qt/ClientTunnelPane.h
  2. 1
      qt/i2pd_qt/ServerTunnelPane.h
  3. 3
      qt/i2pd_qt/TunnelConfig.h
  4. 1
      qt/i2pd_qt/TunnelPane.h

1
qt/i2pd_qt/ClientTunnelPane.h

@ -91,6 +91,7 @@ protected: @@ -91,6 +91,7 @@ protected:
ctc->setdestinationPort(dportInt);
ctc->setsigType(readSigTypeComboboxUI(sigTypeComboBox));
return true;
}
};

1
qt/i2pd_qt/ServerTunnelPane.h

@ -155,6 +155,7 @@ protected: @@ -155,6 +155,7 @@ protected:
stc->setisUniqueLocal(isUniqueLocalCheckBox->isChecked());
stc->setsigType(readSigTypeComboboxUI(sigTypeComboBox));
return true;
}
};

3
qt/i2pd_qt/TunnelConfig.h

@ -196,7 +196,8 @@ public: @@ -196,7 +196,8 @@ public:
gzip(gzip_),
sigType(sigType_),
maxConns(maxConns_),
address(address_) {}
address(address_),
isUniqueLocal(isUniqueLocal_) {}
std::string& gethost(){return host;}
int getport(){return port;}
std::string& getkeys(){return keys;}

1
qt/i2pd_qt/TunnelPane.h

@ -88,6 +88,7 @@ protected: @@ -88,6 +88,7 @@ protected:
i2cpParams.setOutbound_length(outbound_lengthLineEdit->text());
i2cpParams.setOutbound_quantity(outbound_quantityLineEdit->text());
i2cpParams.setCrypto_tagsToSend(crypto_tagsToSendLineEdit->text());
return true;
}
void setupTunnelPane(

Loading…
Cancel
Save