mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
updated comments about priorities in pqiqos.h
git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5_QoS@4536 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
b85b3862d6
commit
4108518982
@ -52,11 +52,7 @@
|
|||||||
// | RsGenericTunnelsItem | X | States for all turtle FT except file requests |
|
// | RsGenericTunnelsItem | X | States for all turtle FT except file requests |
|
||||||
// | | | |
|
// | | | |
|
||||||
// |Turtle items (Forwarded) | | |
|
// |Turtle items (Forwarded) | | |
|
||||||
// | RsTurtleFileReqItem | X | |
|
|
||||||
// | RsTurtleSearchRequest | X | |
|
|
||||||
// | RsTurtleFileDataItem | X | |
|
// | RsTurtleFileDataItem | X | |
|
||||||
// | RsTurtleSearchResult | X | |
|
|
||||||
// | RsGenericTunnelsItem | X | States for all turtle FT except file requests |
|
|
||||||
// | | | |
|
// | | | |
|
||||||
// |Direct file transfer | | |
|
// |Direct file transfer | | |
|
||||||
// | RsFileRequest | X | |
|
// | RsFileRequest | X | |
|
||||||
|
@ -1656,12 +1656,14 @@ int pqissl::isactive()
|
|||||||
|
|
||||||
bool pqissl::moretoread()
|
bool pqissl::moretoread()
|
||||||
{
|
{
|
||||||
|
#ifdef PQISSL_DEBUG
|
||||||
{
|
{
|
||||||
std::ostringstream out;
|
std::ostringstream out;
|
||||||
out << "pqissl::moretoread()";
|
out << "pqissl::moretoread()";
|
||||||
out << " polling socket (" << sockfd << ")";
|
out << " polling socket (" << sockfd << ")";
|
||||||
rslog(RSL_DEBUG_ALL, pqisslzone, out.str());
|
rslog(RSL_DEBUG_ALL, pqisslzone, out.str());
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
fd_set ReadFDs, WriteFDs, ExceptFDs;
|
fd_set ReadFDs, WriteFDs, ExceptFDs;
|
||||||
FD_ZERO(&ReadFDs);
|
FD_ZERO(&ReadFDs);
|
||||||
@ -1725,8 +1727,10 @@ bool pqissl::moretoread()
|
|||||||
|
|
||||||
bool pqissl::cansend()
|
bool pqissl::cansend()
|
||||||
{
|
{
|
||||||
|
#ifdef PQISSL_DEBUG
|
||||||
rslog(RSL_DEBUG_ALL, pqisslzone,
|
rslog(RSL_DEBUG_ALL, pqisslzone,
|
||||||
"pqissl::cansend() polling socket!");
|
"pqissl::cansend() polling socket!");
|
||||||
|
#endif
|
||||||
|
|
||||||
// Interestingly - This code might be portable....
|
// Interestingly - This code might be portable....
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user