mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
use plain buffer instead stream for SignedData
This commit is contained in:
@@ -36,7 +36,7 @@ namespace transport
|
|||||||
SignedData (): m_Size(0) {}
|
SignedData (): m_Size(0) {}
|
||||||
SignedData (const SignedData& other)
|
SignedData (const SignedData& other)
|
||||||
{
|
{
|
||||||
m_Size = other.Size;
|
m_Size = other.m_Size;
|
||||||
memcpy (m_Buf, other.m_Buf, m_Size);
|
memcpy (m_Buf, other.m_Buf, m_Size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user