channel_get_exit_status()

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@228 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
Aris Adamantiadis
2009-02-03 18:07:26 +00:00
parent 903e22cd11
commit ac3d66ac69
4 changed files with 18 additions and 1 deletions

View File

@@ -253,6 +253,7 @@ int channel_is_closed(CHANNEL *channel);
int channel_select(CHANNEL **readchans, CHANNEL **writechans, CHANNEL **exceptchans, struct
timeval * timeout);
SSH_SESSION *channel_get_session(CHANNEL *channel);
int channel_get_exit_status(CHANNEL *channel);
/* in options.c */
/**

View File

@@ -284,6 +284,7 @@ struct channel_struct {
void *userarg;
int version;
int blocking;
int exit_status;
};
struct agent_struct {