1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 12:24:19 +00:00

don't check TRANSIENT destination

This commit is contained in:
orignal 2019-03-04 07:35:48 -05:00
parent 560ebcec8d
commit 9e9236badb

View File

@ -367,13 +367,16 @@ namespace client
return; return;
} }
//ensure it's a base64 string if (destination != SAM_VALUE_TRANSIENT)
i2p::data::PrivateKeys keys; {
if (!keys.FromBase64(destination)) //ensure it's a base64 string
{ i2p::data::PrivateKeys keys;
SendMessageReply(SAM_SESSION_STATUS_INVALID_KEY, strlen(SAM_SESSION_STATUS_INVALID_KEY), true); if (!keys.FromBase64(destination))
return; {
} SendMessageReply(SAM_SESSION_STATUS_INVALID_KEY, strlen(SAM_SESSION_STATUS_INVALID_KEY), true);
return;
}
}
// create destination // create destination
auto session = m_Owner.CreateSession (id, destination == SAM_VALUE_TRANSIENT ? "" : destination, &params); auto session = m_Owner.CreateSession (id, destination == SAM_VALUE_TRANSIENT ? "" : destination, &params);