minor language updates

This commit is contained in:
Daniel Stenberg 2008-07-03 10:58:53 +00:00
parent 9b31ca67ac
commit 903307113e
2 changed files with 14 additions and 14 deletions

View File

@ -1,4 +1,4 @@
.\" $Id: libssh2_session_abstract.3,v 1.1 2007/06/14 15:26:58 jehousley Exp $ .\" $Id: libssh2_session_abstract.3,v 1.2 2008/07/03 10:58:53 bagder Exp $
.\" .\"
.TH libssh2_session_abstract 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual" .TH libssh2_session_abstract 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME .SH NAME
@ -13,10 +13,10 @@ libssh2_session_abstract(LIBSSH2_SESSION *session);
\fIsession\fP - Session instance as returned by \fIsession\fP - Session instance as returned by
.BR libssh2_session_init_ex(3) .BR libssh2_session_init_ex(3)
Return a pointer to where the abstract pointer provided to Return a pointer to where the abstract pointer provided to
.BR libssh2_session_init_ex(3) \fBlibssh2_session_init_ex(3)\fP is stored. By providing a doubly
is stored. By providing a doubly de-referenced pointer, the internal de-referenced pointer, the internal storage of the session instance may be
storage of the session instance may be modified in place. modified in place.
.SH RETURN VALUE .SH RETURN VALUE
A pointer to session internal storage whos contents point to previously A pointer to session internal storage whos contents point to previously

View File

@ -1,4 +1,4 @@
.\" $Id: libssh2_session_set_blocking.3,v 1.1 2007/06/14 17:23:13 jehousley Exp $ .\" $Id: libssh2_session_set_blocking.3,v 1.2 2008/07/03 10:58:53 bagder Exp $
.\" .\"
.TH libssh2_session_set_blocking 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual" .TH libssh2_session_set_blocking 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME .SH NAME
@ -16,14 +16,14 @@ libssh2_session_set_blocking(LIBSSH2_SESSION *session, int blocking);
\fIblocking\fP - Set to a non-zero value to make the channel block, or zero to \fIblocking\fP - Set to a non-zero value to make the channel block, or zero to
make it non-blocking. make it non-blocking.
Set or clear blocking mode on the selected on the sessoin. This will Set or clear blocking mode on the selected on the session. This will
instantly affect any channels associtated with this session. If a read is instantly affect any channels associated with this session. If a read is
performed on a session with no data currently available, a blocking performed on a session with no data currently available, a blocking session
session will wait for data to arrive and return what it receives. will wait for data to arrive and return what it receives. A non-blocking
A non-blocking session will return immediately with an empty buffer. session will return immediately with an empty buffer. If a write is performed
If a write is performed on a session with on a session with no room for more data, a blocking session will wait for
no room for more data, a blocking session will wait for room. A non-blocking room. A non-blocking session will return immediately without writing
session will return immediately without writing anything. anything.
.SH RETURN VALUE .SH RETURN VALUE
None None