1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33:00 +03:00

Add missing function definition

This commit is contained in:
Moataz Elmasry 2018-01-25 02:58:18 +01:00
parent 93d9ade990
commit 9d6c1ea0e9

View File

@ -22940,3 +22940,13 @@ bool GetSniNameFromSslPacket(UCHAR *packet_buf, UINT packet_size, char *sni, UIN
return ret;
}
void SetDhParam(DH_CTX *dh)
{
if (dh_param)
{
DhFree(dh_param);
}
dh_param = dh;
}