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.
 
 
 
 

23 lines
865 B

  1. .TH libssh2_channel_request_auth_agent 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
  2. .SH NAME
  3. libssh2_channel_request_auth_agent - request agent forwarding for a session
  4. .SH SYNOPSIS
  5. #include <libssh2.h>
  6. int
  7. libssh2_channel_request_auth_agent(LIBSSH2_CHANNEL *channel);
  8. .SH DESCRIPTION
  9. Request that agent forwarding be enabled for this SSH session. This sends the
  10. request over this specific channel, which causes the agent listener to be
  11. started on the remote side upon success. This agent listener will then run
  12. for the duration of the SSH session.
  13. \fIchannel\fP - Previously opened channel instance such as returned by
  14. .BR libssh2_channel_open_ex(3)
  15. .SH RETURN VALUE
  16. Return 0 on success or negative on failure. It returns
  17. LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
  18. LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.