returns the rdf containing the native uint8_t repr.
.br
type: the ldns_rdf type to use
.br
value: the uint8_t to use
.br
Returns ldns_rdf* with the converted value
ldns_native2rdf_int16()
returns the rdf containing the native uint16_t representation.
.br
type: the ldns_rdf type to use
.br
value: the uint16_t to use
.br
Returns ldns_rdf* with the converted value
ldns_native2rdf_int32()
returns an rdf that contains the given int32 value.
Because multiple rdf types can contain an int32, the
type must be specified
.br
type: the ldns_rdf type to use
.br
value: the uint32_t to use
.br
Returns ldns_rdf* with the converted value
ldns_native2rdf_int16_data()
returns an int16_data rdf that contains the data in the
given array, preceded by an int16 specifying the length.
The memory is copied, and an LDNS_RDF_TYPE_INT16DATA is returned
.br
size: the size of the data
.br
*data: pointer to the actual data
.br
Returns ldns_rd* the rdf with the data
ldns_rdf2native_int8()
returns the native uint8_t representation from the rdf.
.br
rd: the ldns_rdf to operate on
.br
Returns uint8_t the value extracted
ldns_rdf2native_int16()
returns the native uint16_t representation from the rdf.
.br
rd: the ldns_rdf to operate on
.br
Returns uint16_t the value extracted
ldns_rdf2native_int32()
returns the native uint32_t representation from the rdf.
.br
rd: the ldns_rdf to operate on
.br
Returns uint32_t the value extracted
ldns_rdf2native_sockaddr_storage()
returns the native sockaddr representation from the rdf.
.br
rd: the ldns_rdf to operate on
.br
port: what port to use. 0 means; use default (53)
.br
size: what is the size of the sockaddr_storage
.br
Returns struct sockaddr* the address in the format so other
functions can use it (sendto)
ldns_rdf2native_time_t()
returns the native time_t representation from the rdf.
.br
rd: the ldns_rdf to operate on
.br
Returns time_t the value extracted (32 bits currently)
AUTHOR
The ldns team at NLnet Labs. Which consists out of
Jelte Jansen and Miek Gieben.