Removed out-commented code and printfs.

FossilOrigin-Name: 281b3c927654dfe12306ebe6befda8d1e50c521f223e908597a270118ceb9967
This commit is contained in:
7u83@mail.ru 2014-08-02 08:15:07 +00:00
parent 149b9cc63d
commit 9d59839548
1 changed files with 2 additions and 13 deletions

View File

@ -45,18 +45,7 @@ static unsigned int psk_server_cb(SSL *ssl,const char *identity, unsigned char *
{
BIO * b = SSL_get_rbio(ssl);
struct conn * conn = b->ptr;
// printf("PSK_CB: %s\n",identity);
// printf("Conn psk : %s\n",conn->dtls_psk);
// printf("Max dtls psk len %i\n",max_psk_len);
// return dtls_openssl_psk_key2bn(conn->dtls_psk, psk, max_psk_len);
int l = conn->dtls_psk_len < max_psk_len ? conn->dtls_psk_len : max_psk_len;
// printf("PSK return l %d\n",l);
memcpy(psk,conn->dtls_psk,l);
return l;
}
@ -84,12 +73,12 @@ int dtls_openssl_accept(struct conn * conn)
e = SSL_get_error(d->ssl,rc);
switch (e){
case SSL_ERROR_SYSCALL:
printf("syscall EOF!\n");
// printf("syscall EOF!\n");
break;
}
printf ("UI! error?\n");
// printf ("UI! error?\n");
char errstr[256];