Misc (re #2147): Fixed various build warnings (when building for Android).

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@6010 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Nanang Izzuddin 2019-05-28 04:11:37 +00:00
parent c217c850f7
commit 43e40d16a4
2 changed files with 10 additions and 1 deletions

View File

@ -716,6 +716,7 @@ static pj_bool_t on_connect_complete_asock(pj_activesock_t *asock,
return on_connect_complete(turn_sock, status);
}
#if PJ_HAS_SSL_SOCK
static pj_bool_t on_connect_complete_ssl_sock(pj_ssl_sock_t *ssl_sock,
pj_status_t status)
{
@ -727,6 +728,7 @@ static pj_bool_t on_connect_complete_ssl_sock(pj_ssl_sock_t *ssl_sock,
return on_connect_complete(turn_sock, status);
}
#endif
static pj_uint16_t GETVAL16H(const pj_uint8_t *buf, unsigned pos)
{
@ -856,6 +858,7 @@ static pj_bool_t on_data_read_asock(pj_activesock_t *asock,
return on_data_read(turn_sock, data, size, status, remainder);
}
#if PJ_HAS_SSL_SOCK
static pj_bool_t on_data_read_ssl_sock(pj_ssl_sock_t *ssl_sock,
void *data,
pj_size_t size,
@ -893,6 +896,7 @@ static pj_bool_t on_data_sent_ssl_sock(pj_ssl_sock_t *ssl_sock,
return PJ_TRUE;
}
#endif
/*
* Callback from TURN session to send outgoing packet.

View File

@ -54,7 +54,12 @@
#include <openssl/opensslv.h>
#define SHA1_DIGEST_SIZE 20
#define USING_LIBRESSL (defined(LIBRESSL_VERSION_NUMBER))
#if defined(LIBRESSL_VERSION_NUMBER)
# define USING_LIBRESSL 1
#else
# define USING_LIBRESSL 0
#endif
/* the debug module for authentiation */