mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-05 21:04:14 -04:00
changed names SocketBioInterface->RsFdBinInterface and TcpSocket->RsTcpSocket (more consistent). Moved them to pqi/
This commit is contained in:
parent
a5b1f2d976
commit
0a5f3328df
8 changed files with 47 additions and 47 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue