2017-03-01 19:37:54 +00:00
|
|
|
/* netplay-mitm-server - A man-in-the-middle server implementation for RetroArch netplay.
|
|
|
|
* Copyright (C) 2017 - Brad Parker
|
|
|
|
*
|
|
|
|
* netplay-mitm-server is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* netplay-mitm-server is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with netplay-mitm-server.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-02-27 23:41:56 +00:00
|
|
|
#include <QCoreApplication>
|
2017-03-01 19:42:43 +00:00
|
|
|
#include "mitm.h"
|
2017-02-27 23:41:56 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
QCoreApplication app(argc, argv);
|
2017-03-05 01:19:13 +00:00
|
|
|
app.setApplicationName("netplay-mitm-server");
|
|
|
|
app.setApplicationVersion("1.0");
|
2017-02-27 23:41:56 +00:00
|
|
|
|
2017-03-01 19:42:43 +00:00
|
|
|
MITM mitm;
|
|
|
|
mitm.start();
|
2017-02-27 23:41:56 +00:00
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|