https://bz.apache.org/bugzilla/show_bug.cgi?id=66666

--- Comment #1 from Michael Osipov <micha...@apache.org> ---
As far as I can see, when setPasswordCallback() is gone

typedef struct {
    char            password[SSL_MAX_PASSWORD_LEN];
    const char     *prompt;
    tcn_callback_t cb;
} tcn_pass_cb_t;

can be reduced to
typedef struct {
    char            password[SSL_MAX_PASSWORD_LEN];
    const char     *prompt;
} tcn_pass_cb_t;

and the code associated with since no callback can be passed anymore from Java,
the tcnative builtin callback will be used.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to