mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
qt: i2cp server page is now shown, work towards #914
This commit is contained in:
parent
5c2f1f36e8
commit
a0d90717c3
3 changed files with 11 additions and 5 deletions
|
@ -1001,14 +1001,13 @@ void MainWindow::anchorClickedHandler(const QUrl & link) {
|
|||
url.parse_query(params);
|
||||
const std::string page = params["page"];
|
||||
const std::string cmd = params["cmd"];
|
||||
if(page == "sam_session") {
|
||||
const std::string samID = params["sam_id"];
|
||||
if (page == "sam_session") {
|
||||
pageWithBackButton->show();
|
||||
textBrowser->hide();
|
||||
std::stringstream s;
|
||||
i2p::http::ShowSAMSession (s, samID);
|
||||
i2p::http::ShowSAMSession (s, params["sam_id"]);
|
||||
childTextBrowser->setHtml(QString::fromStdString(s.str()));
|
||||
} else if(page == "local_destination") {
|
||||
} else if (page == "local_destination") {
|
||||
std::string b32 = params["b32"];
|
||||
currentLocalDestinationB32 = b32;
|
||||
pageWithBackButton->show();
|
||||
|
@ -1017,6 +1016,12 @@ void MainWindow::anchorClickedHandler(const QUrl & link) {
|
|||
std::string strstd = currentLocalDestinationB32;
|
||||
i2p::http::ShowLocalDestination(s,strstd,0);
|
||||
childTextBrowser->setHtml(QString::fromStdString(s.str()));
|
||||
} else if (page == "i2cp_local_destination") {
|
||||
pageWithBackButton->show();
|
||||
textBrowser->hide();
|
||||
std::stringstream s;
|
||||
i2p::http::ShowI2CPLocalDestination (s, params["i2cp_id"]);
|
||||
childTextBrowser->setHtml(QString::fromStdString(s.str()));
|
||||
} else if(cmd == "closestream") {
|
||||
std::string b32 = params["b32"];
|
||||
uint32_t streamID = std::stoul(params["streamID"], nullptr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue