1 .\" $Id: libssh2_channel_setenv_ex.3,v 1.1 2007/06/13 21:30:15 jehousley Exp $
3 .TH libssh2_channel_setenv_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
5 libssh2_channel_setenv_ex - set an environment variable on the channel
10 libssh2_channel_setenv_ex(LIBSSH2_CHANNEL *channel, char *varname, unsigned int varname_len, const char *value, unsigned int value_len);
13 libssh2_channel_setenv(LIBSSH2_CHANNEL *channel, char *varname, const char *value);
16 \fIchannel\fP - Previously opened channel instance such as returned by
17 .BR libssh2_channel_open_session(3)
19 \fIvarname\fP - Name of environment variable to set on the remote
22 \fIvarname_len\fP - Length of passed varname parameter.
24 \fIvalue\fP - Value to set varname to.
26 \fIvalue_len\fP - Length of value parameter.
28 Set an environment variable in the remote channel's process space. Note that this does not make sense for all channel types and may be ignored by the server despite returning success.
31 Return 0 on success or negative on failure. It returns
32 LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
33 LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
36 \fILIBSSH2_ERROR_ALLOC\fP - An internal memory allocation call failed.
38 \fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.
40 \fILIBSSH2_ERROR_CHANNEL_REQUEST_DENIED\fP -
43 .BR libssh2_channel_open_session(3)