changed names SocketBioInterface->RsFdBinInterface and TcpSocket->RsTcpSocket (more consistent). Moved them to pqi/

This commit is contained in:
csoler 2021-11-16 22:19:27 +01:00
parent a5b1f2d976
commit 0a5f3328df
8 changed files with 47 additions and 47 deletions

View file

@ -35,7 +35,7 @@
#include "util/rsdebug.h"
#include "pqi/pqithreadstreamer.h"
#include "friend_server/fsbio.h"
#include "pqi/pqifdbin.h"
#include "network.h"
#include "friend_server/fsitem.h"
@ -154,7 +154,7 @@ bool FsNetworkInterface::checkForNewConnections()
RsSerialiser *rss = new RsSerialiser ;
rss->addSerialType(new FsSerializer) ;
FsBioInterface *bio = new FsBioInterface(clintConnt);
RsFdBinInterface *bio = new RsFdBinInterface(clintConnt);
auto pqi = new pqithreadstreamer(this,rss, pid, bio,BIN_FLAGS_READABLE | BIN_FLAGS_WRITEABLE);

View file

@ -26,14 +26,14 @@
#include "retroshare/rspeers.h"
class pqithreadstreamer;
class FsBioInterface;
class RsFdBinInterface;
struct ConnectionData
{
sockaddr client_address;
int socket;
pqithreadstreamer *pqi_thread;
FsBioInterface *bio;
RsFdBinInterface *bio;
std::list<RsItem*> incoming_items;
};