diff options
| author | George Hazan <george.hazan@gmail.com> | 2013-05-16 15:08:49 +0000 | 
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2013-05-16 15:08:49 +0000 | 
| commit | 2e4abd268c71f15bcf73c49a5005f128ffd8ee96 (patch) | |
| tree | 92624c24bafa4a02eb7e7fd2501a988e385ffab3 /plugins/SecureIM | |
| parent | 769714b0aa9606e0d94a9d88c7c3ee3064792e4a (diff) | |
shortened typedefs for string buffers:
  MCBuf -> mir_ptr<char>
  MTBuf -> mir_ptr<TCHAR>
  MWBuf -> mir_ptr<WCHAR>
git-svn-id: http://svn.miranda-ng.org/main/trunk@4680 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM')
| -rw-r--r-- | plugins/SecureIM/src/svcs_proto.cpp | 28 | 
1 files changed, 14 insertions, 14 deletions
| diff --git a/plugins/SecureIM/src/svcs_proto.cpp b/plugins/SecureIM/src/svcs_proto.cpp index 21a228b041..55ee58c017 100644 --- a/plugins/SecureIM/src/svcs_proto.cpp +++ b/plugins/SecureIM/src/svcs_proto.cpp @@ -104,7 +104,7 @@ INT_PTR __cdecl onRecvMsg(WPARAM wParam, LPARAM lParam)  	if (ssig == SiG_NONE && !ptr->msgSplitted) {
  		Sent_NetLog("onRecvMsg: non-secure message");
 -		mir_ptr<char> szPlainMsg((ppre->flags & PREF_UNICODE) ? m_awstrcat(Translate(sim402),szEncMsg) : m_aastrcat(Translate(sim402),szEncMsg));
 +		MCBuf szPlainMsg((ppre->flags & PREF_UNICODE) ? m_awstrcat(Translate(sim402),szEncMsg) : m_aastrcat(Translate(sim402),szEncMsg));
  		ppre->szMessage = szPlainMsg;
  		pccsd->wParam |= PREF_SIMNOMETA;
  		return CallService(MS_PROTO_CHAINRECV, wParam, lParam);
 @@ -189,7 +189,7 @@ INT_PTR __cdecl onRecvMsg(WPARAM wParam, LPARAM lParam)  			szNewMsg = m_ustrcat(Translate(sim403), szOldMsg);
  			szOldMsg = szNewMsg;
  		}
 -		mir_ptr<char> szMsgUtf( utf8_to_miranda(szOldMsg, ppre->flags));
 +		MCBuf szMsgUtf( utf8_to_miranda(szOldMsg, ppre->flags));
  		pccsd->wParam = ppre->flags;
  		ppre->szMessage = szMsgUtf;
 @@ -224,7 +224,7 @@ INT_PTR __cdecl onRecvMsg(WPARAM wParam, LPARAM lParam)  			if (!szOldMsg)
  				return 1; // don't display it ...
 -			mir_ptr<char> szNewMsg( utf8_to_miranda(szOldMsg, ppre->flags));
 +			MCBuf szNewMsg( utf8_to_miranda(szOldMsg, ppre->flags));
  			pccsd->wParam = ppre->flags;
  			ppre->szMessage = szNewMsg;
 @@ -252,7 +252,7 @@ INT_PTR __cdecl onRecvMsg(WPARAM wParam, LPARAM lParam)  			// reinit key exchange user has send an encrypted message and i have no key
  			cpp_reset_context(ptr->cntx);
 -			mir_ptr<char> reSend((LPSTR)mir_alloc(strlen(szEncMsg)+LEN_RSND));
 +			MCBuf reSend((LPSTR)mir_alloc(strlen(szEncMsg)+LEN_RSND));
  			strcpy(reSend,SIG_RSND); // copy resend sig
  			strcat(reSend,szEncMsg); // add mess
 @@ -261,7 +261,7 @@ INT_PTR __cdecl onRecvMsg(WPARAM wParam, LPARAM lParam)  			pccsd->szProtoService = PSS_MESSAGE;
  			CallService(MS_PROTO_CHAINSEND, wParam, lParam); // send back cipher message
 -			mir_ptr<char> keyToSend( InitKeyA(ptr, 0)); // calculate public and private key
 +			MCBuf keyToSend( InitKeyA(ptr, 0)); // calculate public and private key
  			pccsd->lParam = (LPARAM)(char*)keyToSend;
  			CallService(MS_PROTO_CHAINSEND, wParam, lParam); // send new key
 @@ -301,7 +301,7 @@ INT_PTR __cdecl onRecvMsg(WPARAM wParam, LPARAM lParam)  		if (cpp_keyx(ptr->cntx)) {
  			// decrypt sended back message and save message for future sending with a new secret key
 -			addMsg2Queue(ptr, pccsd->wParam, mir_ptr<char>(decodeMsg(ptr,(LPARAM)pccsd,szEncMsg)));
 +			addMsg2Queue(ptr, pccsd->wParam, MCBuf(decodeMsg(ptr,(LPARAM)pccsd,szEncMsg)));
  			showPopUpRM(ptr->hContact);
  			showPopUp(sim004,NULL,g_hPOP[POP_PU_DIS],0);
  		}
 @@ -373,7 +373,7 @@ INT_PTR __cdecl onRecvMsg(WPARAM wParam, LPARAM lParam)  			if (ptr->features & CPP_FEATURES_NEWPG) {
  				cpp_reset_context(ptr->cntx);
 -				mir_ptr<char> keyToSend( InitKeyA(ptr,CPP_FEATURES_NEWPG|KEY_A_SIG)); // calculate NEW public and private key
 +				MCBuf keyToSend( InitKeyA(ptr,CPP_FEATURES_NEWPG|KEY_A_SIG)); // calculate NEW public and private key
  				Sent_NetLog("onRecvMsg: Sending KEYA %s", keyToSend);
  				pccsd->wParam |= PREF_METANODB;
 @@ -388,7 +388,7 @@ INT_PTR __cdecl onRecvMsg(WPARAM wParam, LPARAM lParam)  			// auto send my public key to keyB user if not done before
  			if (!cpp_keya(ptr->cntx)) {
 -				mir_ptr<char> keyToSend( InitKeyA(ptr,0)); // calculate public and private key
 +				MCBuf keyToSend( InitKeyA(ptr,0)); // calculate public and private key
  				Sent_NetLog("onRecvMsg: Sending KEYA %s", keyToSend);
  				pccsd->wParam |= PREF_METANODB;
 @@ -418,7 +418,7 @@ INT_PTR __cdecl onRecvMsg(WPARAM wParam, LPARAM lParam)  				return 1;
  			}
  			else {
 -				mir_ptr<char> keyToSend( InitKeyA(ptr, CPP_FEATURES_NEWPG | KEY_B_SIG)); // calculate NEW public and private key
 +				MCBuf keyToSend( InitKeyA(ptr, CPP_FEATURES_NEWPG | KEY_B_SIG)); // calculate NEW public and private key
  				Sent_NetLog("onRecvMsg: Sending KEYB %s", keyToSend);
  				pccsd->wParam |= PREF_METANODB;
 @@ -511,7 +511,7 @@ INT_PTR __cdecl onSendMsg(WPARAM wParam, LPARAM lParam)  			if (!ptr->keyLoaded ) return returnError(pccsd->hContact,Translate(sim108));
  			LPSTR szNewMsg = NULL;
 -			mir_ptr<char> szUtfMsg( miranda_to_utf8((LPCSTR)pccsd->lParam,pccsd->wParam));
 +			MCBuf szUtfMsg( miranda_to_utf8((LPCSTR)pccsd->lParam,pccsd->wParam));
  			if (ptr->keyLoaded == 1) // PGP
  				szNewMsg = pgp_encode(ptr->cntx,szUtfMsg);
  			else if (ptr->keyLoaded == 2) // GPG
 @@ -559,7 +559,7 @@ INT_PTR __cdecl onSendMsg(WPARAM wParam, LPARAM lParam)  			}
  			// шлем шифрованное в оффлайн
 -			exp->rsa_send(ptr->cntx, mir_ptr<char>( miranda_to_utf8((LPCSTR)pccsd->lParam,pccsd->wParam)));
 +			exp->rsa_send(ptr->cntx, MCBuf( miranda_to_utf8((LPCSTR)pccsd->lParam,pccsd->wParam)));
  			showPopUpSM(ptr->hContact);
  			return returnNoError(pccsd->hContact);
  		}
 @@ -591,7 +591,7 @@ INT_PTR __cdecl onSendMsg(WPARAM wParam, LPARAM lParam)  		// соединение установлено
  		if (ptr->cntx && exp->rsa_get_state(ptr->cntx) == 7) {
 -			exp->rsa_send(ptr->cntx, mir_ptr<char>(miranda_to_utf8((LPCSTR)pccsd->lParam,pccsd->wParam)));
 +			exp->rsa_send(ptr->cntx, MCBuf(miranda_to_utf8((LPCSTR)pccsd->lParam,pccsd->wParam)));
  			ShowStatusIconNotify(ptr->hContact);
  			showPopUpSM(ptr->hContact);
  			return returnNoError(pccsd->hContact);
 @@ -738,7 +738,7 @@ INT_PTR __cdecl onSendMsg(WPARAM wParam, LPARAM lParam)  	if (cpp_keyx(ptr->cntx)) {
  		Sent_NetLog("onSendMsg: cryptokey exist");
 -		mir_ptr<char> szNewMsg( encodeMsg(ptr,(LPARAM)pccsd));
 +		MCBuf szNewMsg( encodeMsg(ptr,(LPARAM)pccsd));
  		Sent_NetLog("onSend: encrypted msg '%s'",szNewMsg);
  		pccsd->wParam |= PREF_METANODB;
 @@ -759,7 +759,7 @@ INT_PTR __cdecl onSendMsg(WPARAM wParam, LPARAM lParam)  		if (!ptr->waitForExchange) {
  			// init || always_try || always_if_possible
 -			mir_ptr<char> keyToSend( InitKeyA(ptr,0));	// calculate public and private key & fill KeyA
 +			MCBuf keyToSend( InitKeyA(ptr,0));	// calculate public and private key & fill KeyA
  			Sent_NetLog("Sending KEY3: %s", keyToSend);
  			pccsd->wParam &= ~PREF_UNICODE;
 | 
