forked from libssh2/libssh2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ssh: Add support for userauth banner.
The new libssh2_userauth_banner API allows to get an optional userauth banner sent with SSH_MSG_USERAUTH_BANNER packet by the server. Closes libssh2#610
- Loading branch information
1 parent
13ad7b2
commit d5ed0e6
Showing
7 changed files
with
118 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.TH libssh2_userauth_banner 3 "1 Jun 2021" "libssh2 1.9.0" "libssh2 manual" | ||
.SH NAME | ||
libssh2_userauth_banner - get the server's userauth banner message | ||
.SH SYNOPSIS | ||
.nf | ||
#include <libssh2.h> | ||
|
||
int | ||
libssh2_userauth_banner(LIBSSH2_SESSION *session, char **banner); | ||
.SH DESCRIPTION | ||
\fIsession\fP - Session instance as returned by | ||
.BR libssh2_session_init_ex(3) | ||
|
||
\fIbanner\fP - Should point to a pointer that gets filled with banner message. | ||
|
||
After an authentication has been attempted, such as a | ||
\fBSSH_USERAUTH_NONE\fP request sent by | ||
.BR libssh2_userauth_list(3) , | ||
this function can be called to retrieve the userauth banner sent by | ||
the server. If no such banner is sent, or if an authentication has not | ||
yet been attempted, returns LIBSSH2_ERROR_MISSING_USERAUTH_BANNER. | ||
.SH RETURN VALUE | ||
On success returns 0 and an UTF-8 NUL-terminated string is stored in the | ||
\fIbanner\fP. This string is internally managed by libssh2 and will be | ||
deallocated upon session termination. | ||
On failure returns | ||
LIBSSH2_ERROR_MISSING_USERAUTH_BANNER. | ||
.SH SEE ALSO | ||
.BR libssh2_session_init_ex(3), | ||
.BR libssh2_userauth_list(3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters