1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

For #774, refine code style

This commit is contained in:
winlin 2017-02-25 12:10:41 +08:00
parent 01d5e4da17
commit ac0e27b936

View file

@ -45,13 +45,16 @@ using namespace _srs_internal;
#include <openssl/dh.h>
#if OPENSSL_VERSION_NUMBER < 0x10100000L
static HMAC_CTX *HMAC_CTX_new(void)
{
HMAC_CTX *ctx = (HMAC_CTX *)malloc(sizeof(*ctx));
if (ctx != NULL)
if (ctx != NULL) {
HMAC_CTX_init(ctx);
}
return ctx;
}
static void HMAC_CTX_free(HMAC_CTX *ctx)
{
if (ctx != NULL) {
@ -62,11 +65,13 @@ static void HMAC_CTX_free(HMAC_CTX *ctx)
static void DH_get0_key(const DH *dh, const BIGNUM **pub_key, const BIGNUM **priv_key)
{
if (pub_key != NULL)
if (pub_key != NULL) {
*pub_key = dh->pub_key;
if (priv_key != NULL)
}
if (priv_key != NULL) {
*priv_key = dh->priv_key;
}
}
static int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g)
{
@ -102,6 +107,7 @@ static int DH_set_length(DH *dh, long length)
dh->length = length;
return 1;
}
#endif
namespace _srs_internal