hv 1.3.3
parent
10b154e341
commit
233c48673f
|
@ -4,7 +4,7 @@
|
||||||
#include "hexport.h"
|
#include "hexport.h"
|
||||||
|
|
||||||
#define BASE64_ENCODE_OUT_SIZE(s) (((s) + 2) / 3 * 4)
|
#define BASE64_ENCODE_OUT_SIZE(s) (((s) + 2) / 3 * 4)
|
||||||
#define BASE64_DECODE_OUT_SIZE(s) (((s)) / 4 * 3)
|
#define BASE64_DECODE_OUT_SIZE(s) (((s) + 3) / 4 * 3)
|
||||||
|
|
||||||
BEGIN_EXTERN_C
|
BEGIN_EXTERN_C
|
||||||
|
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
#define HAVE_SETPROCTITLE 0
|
#define HAVE_SETPROCTITLE 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define WITH_OPENSSL 1
|
/* #undef WITH_OPENSSL */
|
||||||
/* #undef WITH_GNUTLS */
|
/* #undef WITH_GNUTLS */
|
||||||
/* #undef WITH_MBEDTLS */
|
/* #undef WITH_MBEDTLS */
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef HV_LOG_H_
|
#ifndef HV_LOG_H_
|
||||||
#define HV_LOG_H_
|
#define HV_LOG_H_
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue