geom_gate userland utility improvements
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
770 B

  1. .TH libssh2_publickey_add_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
  2. .SH NAME
  3. libssh2_publickey_add_ex - Add a public key entry
  4. .SH SYNOPSIS
  5. #include <libssh2.h>
  6. int
  7. libssh2_publickey_add_ex(LIBSSH2_PUBLICKEY *pkey, const unsigned char *name,
  8. unsigned long name_len, const unsigned char *blob,
  9. unsigned long blob_len, char overwrite,
  10. unsigned long num_attrs,
  11. const libssh2_publickey_attribute attrs[])
  12. .SH DESCRIPTION
  13. TBD
  14. .SH RETURN VALUE
  15. Returns 0 on success, negative on failure.
  16. .SH ERRORS
  17. LIBSSH2_ERROR_BAD_USE
  18. LIBSSH2_ERROR_ALLOC,
  19. LIBSSH2_ERROR_EAGAIN
  20. LIBSSH2_ERROR_SOCKET_SEND,
  21. LIBSSH2_ERROR_SOCKET_TIMEOUT,
  22. LIBSSH2_ERROR_PUBLICKEY_PROTOCOL,
  23. .SH SEE ALSO