1
1
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@651 7dcaeef0-15fb-0310-b436-a5af3365683c
Этот коммит содержится в:
Andreas Schneider 2009-04-29 11:49:44 +00:00
родитель 23a55a0a0a
Коммит f119a27bb6

Просмотреть файл

@ -163,16 +163,16 @@ int ssh_bind_listen(SSH_BIND *ssh_bind) {
return 0;
}
void ssh_bind_set_blocking(SSH_BIND *ssh_bind, int blocking){
ssh_bind->blocking=blocking?1:0;
void ssh_bind_set_blocking(SSH_BIND *ssh_bind, int blocking) {
ssh_bind->blocking = blocking ? 1 : 0;
}
int ssh_bind_get_fd(SSH_BIND *ssh_bind){
return ssh_bind->bindfd;
int ssh_bind_get_fd(SSH_BIND *ssh_bind) {
return ssh_bind->bindfd;
}
void ssh_bind_fd_toaccept(SSH_BIND *ssh_bind){
ssh_bind->toaccept=1;
void ssh_bind_fd_toaccept(SSH_BIND *ssh_bind) {
ssh_bind->toaccept = 1;
}
SSH_SESSION *ssh_bind_accept(SSH_BIND *ssh_bind){