mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-23 17:36:37 +02:00
fixed i2pd qt gui a bit
This commit is contained in:
parent
9f824f3aa9
commit
deb5e435e5
4 changed files with 5 additions and 1 deletions
|
@ -91,6 +91,7 @@ protected:
|
||||||
ctc->setdestinationPort(dportInt);
|
ctc->setdestinationPort(dportInt);
|
||||||
|
|
||||||
ctc->setsigType(readSigTypeComboboxUI(sigTypeComboBox));
|
ctc->setsigType(readSigTypeComboboxUI(sigTypeComboBox));
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -155,6 +155,7 @@ protected:
|
||||||
stc->setisUniqueLocal(isUniqueLocalCheckBox->isChecked());
|
stc->setisUniqueLocal(isUniqueLocalCheckBox->isChecked());
|
||||||
|
|
||||||
stc->setsigType(readSigTypeComboboxUI(sigTypeComboBox));
|
stc->setsigType(readSigTypeComboboxUI(sigTypeComboBox));
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -196,7 +196,8 @@ public:
|
||||||
gzip(gzip_),
|
gzip(gzip_),
|
||||||
sigType(sigType_),
|
sigType(sigType_),
|
||||||
maxConns(maxConns_),
|
maxConns(maxConns_),
|
||||||
address(address_) {}
|
address(address_),
|
||||||
|
isUniqueLocal(isUniqueLocal_) {}
|
||||||
std::string& gethost(){return host;}
|
std::string& gethost(){return host;}
|
||||||
int getport(){return port;}
|
int getport(){return port;}
|
||||||
std::string& getkeys(){return keys;}
|
std::string& getkeys(){return keys;}
|
||||||
|
|
|
@ -88,6 +88,7 @@ protected:
|
||||||
i2cpParams.setOutbound_length(outbound_lengthLineEdit->text());
|
i2cpParams.setOutbound_length(outbound_lengthLineEdit->text());
|
||||||
i2cpParams.setOutbound_quantity(outbound_quantityLineEdit->text());
|
i2cpParams.setOutbound_quantity(outbound_quantityLineEdit->text());
|
||||||
i2cpParams.setCrypto_tagsToSend(crypto_tagsToSendLineEdit->text());
|
i2cpParams.setCrypto_tagsToSend(crypto_tagsToSendLineEdit->text());
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setupTunnelPane(
|
void setupTunnelPane(
|
||||||
|
|
Loading…
Add table
Reference in a new issue