This commit is contained in:
Tim Blume 2021-03-21 02:35:40 +01:00
parent 600d7146d3
commit 462f2811b9
9 changed files with 9 additions and 14 deletions

View file

@ -51,11 +51,13 @@ void mitmproxyPlugin::process()
qDebug() << "received " << msg_type.c_str();
} else if(msg_type == "response") {
qDebug() << "received " << msg_type.c_str();
//qDebug() << "message: " << QString(response.to_string().c_str());
emit message(j);
} else if(msg_type == "requestheaders") {
qDebug() << "received " << msg_type.c_str();
} else if(msg_type == "request") {
qDebug() << "received " << msg_type.c_str();
qDebug() << "message: " << QString(response.to_string().c_str());
} else if(msg_type == "ping") {
qDebug() << "received " << msg_type.c_str();
} else if(msg_type == "error") {