2021-10-09 01:08:23 +02:00
|
|
|
/*
|
|
|
|
* RetroShare Service
|
|
|
|
* Copyright (C) 2021-2021 retroshare team <retroshare.project@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* SPDX-FileCopyrightText: Retroshare Team <contact@retroshare.cc>
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "util/stacktrace.h"
|
|
|
|
#include "util/argstream.h"
|
|
|
|
#include "util/rstime.h"
|
|
|
|
#include "util/rsdebug.h"
|
|
|
|
|
|
|
|
#include "friendserver.h"
|
|
|
|
|
2021-10-20 21:14:08 +02:00
|
|
|
// debug
|
2021-10-24 20:01:19 +02:00
|
|
|
#include "friend_server/fsitem.h"
|
|
|
|
#include "friend_server/fsclient.h"
|
2021-10-20 21:14:08 +02:00
|
|
|
|
2021-10-09 01:08:23 +02:00
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
RsInfo() << "\n" <<
|
|
|
|
"+================================================================+\n"
|
|
|
|
"| o---o o |\n"
|
|
|
|
"| \\ / - Retroshare Friend Server - / \\ |\n"
|
|
|
|
"| o o---o |\n"
|
|
|
|
"+================================================================+"
|
|
|
|
<< std::endl << std::endl;
|
|
|
|
|
|
|
|
//RsInit::InitRsConfig();
|
|
|
|
//RsControl::earlyInitNotificationSystem();
|
|
|
|
|
|
|
|
std::string base_directory;
|
|
|
|
|
|
|
|
argstream as(argc,argv);
|
|
|
|
|
|
|
|
as >> parameter( 'c',"base-dir", base_directory, "directory", "Set base directory.", false )
|
|
|
|
>> help( 'h', "help", "Display this Help" );
|
|
|
|
|
|
|
|
as.defaultErrorHandling(true, true);
|
|
|
|
|
|
|
|
// Now start the real thing.
|
|
|
|
|
|
|
|
FriendServer fs(base_directory);
|
|
|
|
fs.start();
|
|
|
|
|
|
|
|
while(fs.isRunning())
|
2021-10-20 21:14:08 +02:00
|
|
|
std::this_thread::sleep_for(std::chrono::seconds(2));
|
|
|
|
|
2021-10-09 01:08:23 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|