Dominick Meglio man page fixes

This commit is contained in:
Daniel Stenberg 2004-04-01 06:10:56 +00:00
parent 5804c995e1
commit b643d148b1
4 changed files with 9 additions and 15 deletions

View File

@ -21,11 +21,9 @@ ares_mkquery \- Compose a single-question DNS query buffer
.nf .nf
.B #include <ares.h> .B #include <ares.h>
.PP .PP
.B .B int ares_mkquery(const char *\fIname\fP, int \fIdnsclass\fP, int \fItype\fP,
int ares_mkquery(const char *\fIname\fP, int \fIdnsclass\fP, int \fItype\fP, .B unsigned short \fIid\fP, int \fIrd\fP, char **\fIbuf\fP,
.B .B int *\fIbuflen\fP)
unsigned short \fIid\fP, int \fIrd\fP, char **\fIbuf\fP,
int *\fIbuflen\fP)
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION
The The

View File

@ -21,9 +21,8 @@ ares_parse_a_reply \- Parse a reply to a DNS query of type A into a hostent
.nf .nf
.B #include <ares.h> .B #include <ares.h>
.PP .PP
.B .B int ares_parse_a_reply(const unsigned char *\fIabuf\fP, int \fIalen\fP,
int ares_parse_a_reply(const unsigned char *\fIabuf\fB, int \fIalen\fB, .B struct hostent **\fIhost\fP);
.B struct hostent **\fIhost\fB);
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION
The The

View File

@ -21,11 +21,9 @@ ares_parse_ptr_reply \- Parse a reply to a DNS query of type PTR into a hostent
.nf .nf
.B #include <ares.h> .B #include <ares.h>
.PP .PP
.B .B int ares_parse_ptr_reply(const unsigned char *\fIabuf\fP, int \fIalen\fP,
int ares_parse_ptr_reply(const unsigned char *\fIabuf\fB, int \fIalen\fB, .B const void *\fIaddr\fP, int \fIaddrlen\fP, int \fIfamily\fP,
.B .B struct hostent **\fIhost\fP);
const void *\fIaddr\fP, int \fIaddrlen\fP, int \fIfamily\fP,
.B struct hostent **\fIhost\fB);
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION
The The

View File

@ -24,8 +24,7 @@ ares_send \- Initiate a DNS query
.B typedef void (*ares_callback)(void *\fIarg\fP, int \fIstatus\fP, .B typedef void (*ares_callback)(void *\fIarg\fP, int \fIstatus\fP,
.B unsigned char *\fIabuf\fP, int \fIalen\fP) .B unsigned char *\fIabuf\fP, int \fIalen\fP)
.PP .PP
.B .B void ares_send(ares_channel \fIchannel\fP, const unsigned char *\fIqbuf\fP,
void ares_send(ares_channel \fIchannel\fP, const unsigned char *\fIqbuf\fP,
.B int \fIqlen\fP, ares_callback \fIcallback\fP, void *\fIarg\fP) .B int \fIqlen\fP, ares_callback \fIcallback\fP, void *\fIarg\fP)
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION