add pubkey_info field to authstate structure

This commit is contained in:
HansH111 2022-03-13 17:37:44 +00:00
parent 8d11116dcb
commit 19cfb22d30

1
auth.h
View File

@ -125,6 +125,7 @@ struct AuthState {
char *pw_passwd; char *pw_passwd;
#if DROPBEAR_SVR_PUBKEY_OPTIONS_BUILT #if DROPBEAR_SVR_PUBKEY_OPTIONS_BUILT
struct PubKeyOptions* pubkey_options; struct PubKeyOptions* pubkey_options;
char *pubkey_info;
#endif #endif
}; };