mirror of https://github.com/getdnsapi/getdns.git
updates to man pages
This commit is contained in:
parent
601b821c43
commit
aed5047216
|
@ -42,6 +42,33 @@ DNS Resolver library (libgetdns, -lgetdns)
|
||||||
#include <getdns.h>
|
#include <getdns.h>
|
||||||
|
|
||||||
getdns_return_t
|
getdns_return_t
|
||||||
|
.br
|
||||||
|
.B getdns_dict_get_bindata
|
||||||
|
(struct getdns_dict *this_dict, struct getdns_bindata **answer)
|
||||||
|
getdns_return_t
|
||||||
|
|
||||||
|
getdns_return_t
|
||||||
|
.br
|
||||||
|
.B getdns_dict_get_data_type
|
||||||
|
(struct getdns_dict *this_dict, char *name, getdns_data_type *answer)
|
||||||
|
getdns_return_t
|
||||||
|
|
||||||
|
getdns_return_t
|
||||||
|
.br
|
||||||
|
.B getdns_dict_get_dict
|
||||||
|
(struct getdns_dict *this_dict, char *name, struct getdns_dict **answer)
|
||||||
|
|
||||||
|
getdns_return_t
|
||||||
|
.br
|
||||||
|
.B getdns_dict_get_int
|
||||||
|
(struct getdns_dict *this_dict, uint32_t *answer)
|
||||||
|
getdns_return_t
|
||||||
|
|
||||||
|
.br
|
||||||
|
.B getdns_dict_get_list
|
||||||
|
(struct getdns_dict *this_dict, struct getdns_list **answer)
|
||||||
|
getdns_return_t
|
||||||
|
|
||||||
.br
|
.br
|
||||||
.B getdns_dict_get_names
|
.B getdns_dict_get_names
|
||||||
(struct getdns_dict *this_dict, struct getdns_list **answer)
|
(struct getdns_dict *this_dict, struct getdns_list **answer)
|
||||||
|
@ -49,10 +76,7 @@ getdns_return_t
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
|
||||||
.LP
|
.LP
|
||||||
THIS IS A WORK IN PROGRESS - MUCH TO ADD
|
The getdns_dict type is used to manage name/value pairs in which the names are strings and the data types of the values are heterogenous and include
|
||||||
|
|
||||||
.LP
|
|
||||||
The getdns_dict type is used to manage name/value pairs in which the data types of the values are heterogenous and include
|
|
||||||
.RS 3
|
.RS 3
|
||||||
.br
|
.br
|
||||||
struct getdns_bindata
|
struct getdns_bindata
|
||||||
|
@ -87,6 +111,8 @@ TBD
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libgetdns (3),
|
.BR libgetdns (3),
|
||||||
|
.BR getdns_address (3),
|
||||||
|
.BR getdns_address_sync (3),
|
||||||
.BR getdns_general (3),
|
.BR getdns_general (3),
|
||||||
.BR getdns_general_sync (3),
|
.BR getdns_general_sync (3),
|
||||||
.BR getdns_hostname (3),
|
.BR getdns_hostname (3),
|
||||||
|
|
|
@ -176,6 +176,9 @@ Host address
|
||||||
.B AAAA
|
.B AAAA
|
||||||
IPv6 address
|
IPv6 address
|
||||||
.TP
|
.TP
|
||||||
|
.B CAA
|
||||||
|
Certificate Authority Authorization
|
||||||
|
.TP
|
||||||
.B CNAME
|
.B CNAME
|
||||||
Canonical name for an alias
|
Canonical name for an alias
|
||||||
.TP
|
.TP
|
||||||
|
@ -204,22 +207,19 @@ Mail exchange
|
||||||
Authoritative name server
|
Authoritative name server
|
||||||
.TP
|
.TP
|
||||||
.B NSEC
|
.B NSEC
|
||||||
NSEC
|
Next secure record
|
||||||
.TP
|
.TP
|
||||||
.B NSEC3
|
.B NSEC3
|
||||||
NSEC3
|
Next secure record (hashed)
|
||||||
.TP
|
.TP
|
||||||
.B NSEC3PARAM
|
.B NSEC3PARAM
|
||||||
NSEC3PARAM
|
NSEC3PARAM
|
||||||
.TP
|
.TP
|
||||||
.B OPT
|
|
||||||
OPT
|
|
||||||
.TP
|
|
||||||
.B PTR
|
.B PTR
|
||||||
Domain name pointer
|
Domain name pointer
|
||||||
.TP
|
.TP
|
||||||
.B RRSIG
|
.B RRSIG
|
||||||
RRSIG
|
Signature for a record set
|
||||||
.TP
|
.TP
|
||||||
.B SIG
|
.B SIG
|
||||||
Security signature
|
Security signature
|
||||||
|
|
Loading…
Reference in New Issue