fixed up some debug text (patch from H.Morgan)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6917 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-11-29 22:09:13 +00:00
parent a1ab524bdf
commit 6fe16d55e1
4 changed files with 17 additions and 18 deletions

View File

@ -1616,7 +1616,7 @@ void PGPHandler::locked_readPrivateTrustDatabase()
fclose(fdb) ; fclose(fdb) ;
std::cerr << "PGPHandler: Successfully read " << n_packets << " trust packets." << std::endl; std::cerr << "PGPHandler: Successfully read " << std::hex << n_packets << std::dec << " trust packets." << std::endl;
} }
bool PGPHandler::locked_writePrivateTrustDatabase() bool PGPHandler::locked_writePrivateTrustDatabase()

View File

@ -530,13 +530,11 @@ int RsInit::InitRetroShare(int argcIgnored, char **argvIgnored, bool strictCheck
if (0 == sigaction(SIGPIPE, &sigact, NULL)) if (0 == sigaction(SIGPIPE, &sigact, NULL))
{ {
std::cerr << "RetroShare:: Successfully Installed"; std::cerr << "RetroShare:: Successfully installed the SIGPIPE Block" << std::endl;
std::cerr << "the SIGPIPE Block" << std::endl;
} }
else else
{ {
std::cerr << "RetroShare:: Failed to Install"; std::cerr << "RetroShare:: Failed to install the SIGPIPE Block" << std::endl;
std::cerr << "the SIGPIPE Block" << std::endl;
} }
#endif #endif
/******************************** WINDOWS/UNIX SPECIFIC PART ******************/ /******************************** WINDOWS/UNIX SPECIFIC PART ******************/

View File

@ -578,7 +578,7 @@ bool p3ChatService::locked_checkAndRebuildPartialMessage_deprecated(RsChatMsgIte
if(it != _pendingPartialMessages.end()) if(it != _pendingPartialMessages.end())
{ {
#ifdef CHAT_DEBUG #ifdef CHAT_DEBUG
std::cerr << "Pending message found. Happending it." << std::endl; std::cerr << "Pending message found. Appending it." << std::endl;
#endif #endif
// Yes, there is. Append the item to ci. // Yes, there is. Append the item to ci.
@ -623,7 +623,7 @@ bool p3ChatService::locked_checkAndRebuildPartialMessage(RsChatLobbyMsgItem *ci)
if(it != _pendingPartialLobbyMessages.end()) if(it != _pendingPartialLobbyMessages.end())
{ {
#ifdef CHAT_DEBUG #ifdef CHAT_DEBUG
std::cerr << " Pending message found. Happending it." << std::endl; std::cerr << " Pending message found. Aappending it." << std::endl;
#endif #endif
// Yes, there is. Add the item to the list of stored sub-items // Yes, there is. Add the item to the list of stored sub-items

View File

@ -45,6 +45,7 @@
#include <iomanip> #include <iomanip>
#include <map> #include <map>
//#define MSG_DEBUG 1
//#define DEBUG_DISTANT_MSG //#define DEBUG_DISTANT_MSG
//#define DISABLE_DISTANT_MESSAGES //#define DISABLE_DISTANT_MESSAGES
@ -181,9 +182,9 @@ bool p3MsgService::checkAndRebuildPartialMessage(RsMsgItem *ci)
if(it != _pendingPartialMessages.end()) if(it != _pendingPartialMessages.end())
{ {
//#ifdef CHAT_DEBUG #ifdef MSG_DEBUG
std::cerr << "Pending message found. Happending it." << std::endl; std::cerr << "Pending message found. Appending it." << std::endl;
//#endif #endif
// Yes, there is. Append the item to ci. // Yes, there is. Append the item to ci.
ci->message = it->second->message + ci->message ; ci->message = it->second->message + ci->message ;
@ -197,9 +198,9 @@ bool p3MsgService::checkAndRebuildPartialMessage(RsMsgItem *ci)
if(ci_is_partial) if(ci_is_partial)
{ {
//#ifdef CHAT_DEBUG #ifdef MSG_DEBUG
std::cerr << "Message is partial, storing for later." << std::endl; std::cerr << "Message is partial, storing for later." << std::endl;
//#endif #endif
// The item is a partial message. Push it, and wait for the rest. // The item is a partial message. Push it, and wait for the rest.
// //
_pendingPartialMessages[ci->PeerId()] = ci ; _pendingPartialMessages[ci->PeerId()] = ci ;
@ -207,9 +208,9 @@ bool p3MsgService::checkAndRebuildPartialMessage(RsMsgItem *ci)
} }
else else
{ {
//#ifdef CHAT_DEBUG #ifdef MSG_DEBUG
std::cerr << "Message is complete, using it now." << std::endl; std::cerr << "Message is complete, using it now." << std::endl;
//#endif #endif
return true ; return true ;
} }
} }
@ -585,7 +586,7 @@ bool p3MsgService::loadList(std::list<RsItem*>& load)
for(std::list<RsTlvKeyValue>::const_iterator kit = vitem->tlvkvs.pairs.begin(); kit != vitem->tlvkvs.pairs.end(); ++kit) for(std::list<RsTlvKeyValue>::const_iterator kit = vitem->tlvkvs.pairs.begin(); kit != vitem->tlvkvs.pairs.end(); ++kit)
if(kit->key == "DISTANT_MESSAGES_ENABLED") if(kit->key == "DISTANT_MESSAGES_ENABLED")
{ {
#ifdef CHAT_DEBUG #ifdef MSG_DEBUG
std::cerr << "Loaded config default nick name for distant chat: " << kit->value << std::endl ; std::cerr << "Loaded config default nick name for distant chat: " << kit->value << std::endl ;
#endif #endif
enableDistantMessaging(kit->value == "YES") ; enableDistantMessaging(kit->value == "YES") ;
@ -1762,7 +1763,7 @@ bool p3MsgService::encryptMessage(const std::string& pgp_id,RsMsgItem *item)
std::cerr << "Encrypting message with public key " << pgp_id << " in place." << std::endl; std::cerr << "Encrypting message with public key " << pgp_id << " in place." << std::endl;
#endif #endif
// 0 - happend own id to the data. // 0 - append own id to the data.
// //
uint32_t rssize = _serialiser->size(item) ; uint32_t rssize = _serialiser->size(item) ;
unsigned char *data = (unsigned char *)malloc(1+rssize+KEY_ID_SIZE) ; unsigned char *data = (unsigned char *)malloc(1+rssize+KEY_ID_SIZE) ;
@ -1818,7 +1819,7 @@ bool p3MsgService::encryptMessage(const std::string& pgp_id,RsMsgItem *item)
#ifdef DEBUG_DISTANT_MSG #ifdef DEBUG_DISTANT_MSG
std::cerr << " total decrypted size = " << KEY_ID_SIZE + 1 + rssize + signature_length << std::endl; std::cerr << " total decrypted size = " << KEY_ID_SIZE + 1 + rssize + signature_length << std::endl;
#endif #endif
// 3 - happend the signature to the serialized data. // 3 - append the signature to the serialized data.
if(signature_length > 0) if(signature_length > 0)
{ {