X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=parsekey.h;fp=parsekey.h;h=ed7e3a0daf2c8200deff01f7b61346a3755babac;hb=ae384229c538b20b429ea640ec30071ae944c0e7;hp=682629c9fc8e0e8e3c70f326e47624d11d66bcd3;hpb=156fd1c31592b821c170b5567b2fc81060359232;p=onak.git diff --git a/parsekey.h b/parsekey.h index 682629c..ed7e3a0 100644 --- a/parsekey.h +++ b/parsekey.h @@ -5,7 +5,7 @@ * * Copyright 2002 Project Purple * - * $Id: parsekey.h,v 1.4 2003/06/04 20:57:12 noodles Exp $ + * $Id: parsekey.h,v 1.5 2003/09/30 20:40:11 noodles Exp $ */ #ifndef __PARSEKEY_H__ @@ -53,15 +53,20 @@ int debug_packet(struct openpgp_packet *packet); * @getchar_func: The function to get the next character from the stream. * @ctx: A pointer to the context structure for getchar_func. * @packets: The outputted list of packets. + * @maxnum: The maximum number of keys to read. 0 means unlimited. * * This function uses getchar_func to read characters from an OpenPGP * packet stream and reads the packets into a linked list of packets - * ready for parsing as a public key or whatever. + * ready for parsing as a public key or whatever. maxnum allows you to + * specify the maximum number of keys to read. Note that if this is used + * then only the public key component of the last key will be returned, + * none of the other packets of the key will be read. */ int read_openpgp_stream(int (*getchar_func)(void *ctx, size_t count, unsigned char *c), void *ctx, - struct openpgp_packet_list **packets); + struct openpgp_packet_list **packets, + int maxnum); /** * write_openpgp_stream - Reads a stream of OpenPGP packets.