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.
 
 
 
 

27 lines
829 B

  1. .\"
  2. .\" Copyright (c) 2009 by Daniel Stenberg
  3. .\"
  4. .TH libssh2_knownhost_del 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
  5. .SH NAME
  6. libssh2_knownhost_del - delete a known host entry
  7. .SH SYNOPSIS
  8. #include <libssh2.h>
  9. int libssh2_knownhost_del(LIBSSH2_KNOWNHOSTS *hosts,
  10. struct libssh2_knownhost *entry);
  11. .SH DESCRIPTION
  12. Delete a known host entry from the collection of known hosts.
  13. \fIentry\fP is a pointer to a struct that you can extract with
  14. \fIlibssh2_knownhost_check(3)\fP or \fIlibssh2_knownhost_get(3)\fP.
  15. .SH RETURN VALUE
  16. Returns a regular libssh2 error code, where negative values are error codes
  17. and 0 indicates success.
  18. .SH AVAILABILITY
  19. Added in libssh2 1.2
  20. .SH SEE ALSO
  21. .BR libssh2_knownhost_init(3)
  22. .BR libssh2_knownhost_free(3)
  23. .BR libssh2_knownhost_add(3)
  24. .BR libssh2_knownhost_check(3)