2014-02-19 16:30:01 -06:00
. \" The "BSD-New" License
. \"
2014-04-25 06:49:25 -05:00
. \" Copyright (c) 2013, NLnet Labs, Verisign, Inc.
2014-02-19 16:30:01 -06:00
. \" All rights reserved.
. \"
. \" Redistribution and use in source and binary forms, with or without
. \" modification, are permitted provided that the following conditions are met:
. \" * Redistributions of source code must retain the above copyright
. \" notice, this list of conditions and the following disclaimer.
. \" * Redistributions in binary form must reproduce the above copyright
. \" notice, this list of conditions and the following disclaimer in the
. \" documentation and/or other materials provided with the distribution.
2014-02-25 07:23:19 -06:00
. \" * Neither the names of the copyright holders nor the
2014-02-19 16:30:01 -06:00
. \" names of its contributors may be used to endorse or promote products
. \" derived from this software without specific prior written permission.
. \"
. \" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
. \" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
. \" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
. \" DISCLAIMED. IN NO EVENT SHALL Verisign, Inc. BE LIABLE FOR ANY
. \" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
. \" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
. \" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
. \" ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
. \" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
. \" SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
. \"
.TH getdns_list 3 "@date@" "getdns @version@" getdns
2015-01-14 08:33:20 -06:00
.ad l
2014-02-19 16:30:01 -06:00
.SH NAME
.B getdns_list,
.B getdns_list_create,
2014-04-25 06:49:25 -05:00
.B getdns_list_create_with_extended_memory_functions,
.B getdns_list_create_with_memory_functions,
2014-02-19 16:30:01 -06:00
.B getdns_list_destroy
2014-11-10 08:50:45 -06:00
-- getdns list create and destroy routines
2015-01-14 08:33:20 -06:00
.ad n
2014-02-19 16:30:01 -06:00
.SH LIBRARY
DNS Resolver library (libgetdns, -lgetdns)
.SH SYNOPSIS
#include <getdns.h>
2014-02-20 16:29:39 -06:00
getdns_list *
2014-02-19 16:30:01 -06:00
.br
.B getdns_list_create
()
2014-04-25 06:49:25 -05:00
getdns_list *
.br
.B getdns_list_create_with_extended_memory_functions
.RS 3
(void *userarg,
.br
void *(*malloc)(void *userarg, size_t sz),
.br
void *(*realloc)(void *userarg, void *buf, size_t sz),
.br
void (*free)(void *userarg, void *buf)
.RE 3
getdns_list *
.br
.B getdns_list_create_with_memory_functions
.RS 3
(void *userarg,
.br
void *(*malloc)(size_t sz),
.br
void *(*realloc)(void *buf, size_t sz),
.br
void (*free)(void *buf)
.RE 3
2014-02-19 16:30:01 -06:00
void
.br
.B getdns_list_destroy
2014-02-20 16:29:39 -06:00
(getdns_list *this_dict)
2014-02-19 16:30:01 -06:00
.SH DESCRIPTION
.LP
2014-02-19 17:18:52 -06:00
The getdns_list type is used to manage heterogeneous indexed lists name/value pairs in which the data types of the values include
2014-02-19 16:30:01 -06:00
.RS 3
.br
2014-02-20 16:29:39 -06:00
getdns_bindata
2014-02-19 16:30:01 -06:00
.br
2014-02-20 16:29:39 -06:00
getdns_dict
2014-02-19 16:30:01 -06:00
.br
2014-02-20 16:29:39 -06:00
getdns_list
2014-02-19 16:30:01 -06:00
.br
uint32_t
.RE
.LP
The destroy function performs a "deep" destroy, freeing storage for all of the members
of the list before destroying the list. There are a number of helper
functions that provide access to the list object, see their respective man pages.
2014-04-25 06:49:25 -05:00
.LP
.I userarg
pass this argument to the user specified memory management functions for operations on lists created using extended memory functions
2014-02-19 16:30:01 -06:00
.LP
.I this_list
the list to destroy
.SH "RETURN VALUES"
Upon successful completion the getdns_list_create function returns a valid (empty)
2014-04-25 06:49:25 -05:00
list structure that should be freed via a call to getdns_list_destroy. If a parameter in invalid or in the event of some error getdns_list_create returns NULL.
2014-02-19 16:30:01 -06:00
.SH EXAMPLES
TBD
.SH SEE ALSO
.BR libgetdns (3),
.BR getdns_dict (3),
.BR getdns_list_get (3),
.BR getdns_list_set (3)