mirror of
https://github.com/libssh2/libssh2.git
synced 2025-04-28 11:45:02 +03:00
- add missing `.fi` tags. - fix misplaced `.nf` tags. - add `.nf`/`.fi` tags `SYNOPSIS` where missing. - fix missing/wrong function name from `SH NAME`. - fix wrong function name in `TH`. - keep return values in a separate line. - indent. - fold long lines. - deleted `libssh2_channel_direct_streamlocal()`, there is no such function. - add missing types. - add missing headers. Closes #949
27 lines
777 B
Groff
27 lines
777 B
Groff
.TH libssh2_publickey_add_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
|
.SH NAME
|
|
libssh2_publickey_add_ex - Add a public key entry
|
|
.SH SYNOPSIS
|
|
.nf
|
|
#include <libssh2.h>
|
|
|
|
int
|
|
libssh2_publickey_add_ex(LIBSSH2_PUBLICKEY *pkey,
|
|
const unsigned char *name, unsigned long name_len,
|
|
const unsigned char *blob, unsigned long blob_len,
|
|
char overwrite, unsigned long num_attrs,
|
|
const libssh2_publickey_attribute attrs[])
|
|
.fi
|
|
.SH DESCRIPTION
|
|
TBD
|
|
.SH RETURN VALUE
|
|
Returns 0 on success, negative on failure.
|
|
.SH ERRORS
|
|
LIBSSH2_ERROR_BAD_USE
|
|
LIBSSH2_ERROR_ALLOC,
|
|
LIBSSH2_ERROR_EAGAIN
|
|
LIBSSH2_ERROR_SOCKET_SEND,
|
|
LIBSSH2_ERROR_SOCKET_TIMEOUT,
|
|
LIBSSH2_ERROR_PUBLICKEY_PROTOCOL,
|
|
.SH SEE ALSO
|