1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-07 17:28:15 +00:00

Fix documentation of virStreamRecv

virStreamRecv is for reading.

Also add some missing punctuation to virStreamSend's documentation.
This commit is contained in:
Matthias Bolte 2011-06-15 18:38:26 +02:00
parent 1d57562942
commit be757a3f7b

View File

@ -12730,10 +12730,10 @@ virStreamRef(virStreamPtr stream)
* block the calling application for an arbitrary amount * block the calling application for an arbitrary amount
* of time. Once an application has finished sending data * of time. Once an application has finished sending data
* it should call virStreamFinish to wait for successful * it should call virStreamFinish to wait for successful
* confirmation from the driver, or detect any error * confirmation from the driver, or detect any error.
* *
* This method may not be used if a stream source has been * This method may not be used if a stream source has been
* registered * registered.
* *
* Errors are not guaranteed to be reported synchronously * Errors are not guaranteed to be reported synchronously
* with the call, but may instead be delayed until a * with the call, but may instead be delayed until a
@ -12825,10 +12825,10 @@ error:
/** /**
* virStreamRecv: * virStreamRecv:
* @stream: pointer to the stream object * @stream: pointer to the stream object
* @data: buffer to write to stream * @data: buffer to read into from stream
* @nbytes: size of @data buffer * @nbytes: size of @data buffer
* *
* Write a series of bytes to the stream. This method may * Reads a series of bytes from the stream. This method may
* block the calling application for an arbitrary amount * block the calling application for an arbitrary amount
* of time. * of time.
* *