1
0
mirror of https://frontier.innolan.net/rainlance/c-ares.git synced 2025-12-09 12:30:07 +00:00

- Jakub Hrozek fixed more function prototypes in man pages to sync them

with the ones declared in ares.h
This commit is contained in:
Yang Tse
2009-11-23 00:57:50 +00:00
parent 17e6785e05
commit 497afa9acb
10 changed files with 48 additions and 21 deletions

View File

@ -22,7 +22,7 @@ ares_fds \- Get file descriptors to select on for name service
.B #include <ares.h>
.PP
.B struct timeval *ares_timeout(ares_channel \fIchannel\fP,
.B struct timeval *\fImaxtv\fP, struct timeval *\fItvbuf\fP)
.B struct timeval *\fImaxtv\fP, struct timeval *\fItv\fP)
.fi
.SH DESCRIPTION
The
@ -33,13 +33,13 @@ invoking \fIares_process(3)\fP to process timeouts. The parameter
specifies a existing maximum timeout, or
.B NULL
if the caller does not wish to apply a maximum timeout. The parameter
.I tvbuf
.I tv
must point to a writable buffer of type
.BR "struct timeval" .
It is valid for
.I maxtv
and
.I tvbuf
.I tv
to have the same value.
.PP
If no queries have timeouts pending sooner than the given maximum
@ -50,9 +50,9 @@ returns the value of
otherwise
.B ares_timeout
stores the appropriate timeout value into the buffer pointed to by
.I tvbuf
.I tv
and returns the value of
.IR tvbuf .
.IR tv .
.SH SEE ALSO
.BR ares_fds (3),
.BR ares_process (3)