ldns_key_list_push_key - Man Page

manipulate ldns_key_list

Synopsis

#include <stdint.h>
#include <stdbool.h>

#include <ldns/ldns.h>

bool ldns_key_list_push_key(ldns_key_list *key_list, ldns_key *key);

ldns_key* ldns_key_list_pop_key(ldns_key_list *key_list);

Description

ldns_key_list_push_key() pushes a key to a keylist
key_list: the key_list to push to
key: the key to push
Returns false on error, otherwise true

ldns_key_list_pop_key() pops the last rr from a keylist
key_list: the rr_list to pop from
Returns NULL if nothing to pop. Otherwise the popped RR

Author

The ldns team at NLnet Labs.

Reporting Bugs

Please report bugs to ldns-team@nlnetlabs.nl or in  our bugzilla at http://www.nlnetlabs.nl/bugs/index.html

See Also

ldns_key. And perldoc Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034  and RFC4035.

Remarks

This manpage was automatically generated from the ldns source code.

Referenced By

The man page ldns_key_list_pop_key(3) is an alias of ldns_key_list_push_key(3).

30 May 2006