Browse Source

wip

pull/1979/head
wangduanduan 5 months ago
parent
commit
34d0d93522
2 changed files with 2 additions and 1 deletions
  1. +1
    -1
      daemon/dtls.c
  2. +1
    -0
      include/dtls.h

+ 1
- 1
daemon/dtls.c View File

@ -600,7 +600,7 @@ static int try_connect(struct dtls_connection *d) {
if (d->connected) {
ilogs(crypto, LOG_INFO, "DTLS data received after handshake, code: %i", code);
} else {
ilogs(crypto, LOG_DEBUG, "DTLS handshake not completed yet, current state: %s",
ilogs(crypto, LOG_DEBUG, "DTLS handshake not completed yet, current state: %s",
SSL_state_string_long(d->ssl));
}
break;


+ 1
- 0
include/dtls.h View File

@ -67,6 +67,7 @@ void dtls_shutdown(struct packet_stream *ps);
INLINE void __dtls_hash(const struct dtls_hash_func *hash_func, X509 *cert, unsigned char *out,
unsigned int bufsize)
{


Loading…
Cancel
Save