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:
csoler 2011-08-05 19:25:29 +00:00
parent b85b3862d6
commit 4108518982
2 changed files with 4 additions and 4 deletions

View File

@ -52,11 +52,7 @@
// | RsGenericTunnelsItem | X | States for all turtle FT except file requests |
// | | | |
// |Turtle items (Forwarded) | | |
// | RsTurtleFileReqItem | X | |
// | RsTurtleSearchRequest | X | |
// | RsTurtleFileDataItem | X | |
// | RsTurtleSearchResult | X | |
// | RsGenericTunnelsItem | X | States for all turtle FT except file requests |
// | | | |
// |Direct file transfer | | |
// | RsFileRequest | X | |

View File

@ -1656,12 +1656,14 @@ int pqissl::isactive()
bool pqissl::moretoread()
{
#ifdef PQISSL_DEBUG
{
std::ostringstream out;
out << "pqissl::moretoread()";
out << " polling socket (" << sockfd << ")";
rslog(RSL_DEBUG_ALL, pqisslzone, out.str());
}
#endif
fd_set ReadFDs, WriteFDs, ExceptFDs;
FD_ZERO(&ReadFDs);
@ -1725,8 +1727,10 @@ bool pqissl::moretoread()
bool pqissl::cansend()
{
#ifdef PQISSL_DEBUG
rslog(RSL_DEBUG_ALL, pqisslzone,
"pqissl::cansend() polling socket!");
#endif
// Interestingly - This code might be portable....