diff options
author | Nikos Mavrogiannopoulos <nmav@crystal.(none)> | 2007-10-08 12:08:33 +0300 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@crystal.(none)> | 2007-10-08 12:08:33 +0300 |
commit | 1f24725c9a0b09e7a42ee18f2bb4c0fbac581b8f (patch) | |
tree | 984dd279834d1576512e1e8139b514305064a1d9 /src/cli.c | |
parent | 38774ff46c11ed3b9aa5933279db2baf35ea3a53 (diff) | |
download | gnutls-1f24725c9a0b09e7a42ee18f2bb4c0fbac581b8f.tar.gz |
** Added capability to set a callback after the client hello is received
by the server in order to adjust parameters before the handshake.
** SRP was corrected to adhere (more) to the latest draft (published soon as RFC)
** Corrected bug which did not allow a server to run without supporting
certificates.
** Updated the DN parser which now prints wrongly decoded values as hex
strings.
Diffstat (limited to 'src/cli.c')
-rw-r--r-- | src/cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1004,7 +1004,7 @@ do_handshake (socket_st * socket) static int srp_username_callback (gnutls_session_t session, - unsigned int times, char **username, char **password) + char **username, char **password) { if (srp_username == NULL || srp_passwd == NULL) { |