diff options
author | Werner Koch <wk@gnupg.org> | 2000-10-06 14:28:44 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2000-10-06 14:28:44 +0200 |
commit | 14974bc5d70604577b7088a39e7eb175cafd418a (patch) | |
tree | ae5aa26daa1342b77a7ceb0f0295950dff3b3557 /g10/packet.h | |
parent | See ChangeLog: Wed Oct 4 13:16:18 CEST 2000 Werner Koch (diff) | |
download | gnupg2-14974bc5d70604577b7088a39e7eb175cafd418a.tar.xz gnupg2-14974bc5d70604577b7088a39e7eb175cafd418a.zip |
See ChangeLog: Fri Oct 6 14:29:16 CEST 2000 Werner Koch
Diffstat (limited to 'g10/packet.h')
-rw-r--r-- | g10/packet.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/g10/packet.h b/g10/packet.h index 03fa2ca6e..33bcf792a 100644 --- a/g10/packet.h +++ b/g10/packet.h @@ -293,18 +293,19 @@ int set_packet_list_mode( int mode ); #if DEBUG_PARSE_PACKET int dbg_search_packet( IOBUF inp, PACKET *pkt, int pkttype, ulong *retpos, const char* file, int lineno ); -int dbg_parse_packet( IOBUF inp, PACKET *ret_pkt, const char* file, int lineno ); +int dbg_parse_packet( IOBUF inp, PACKET *ret_pkt, ulong *pos, + const char* file, int lineno ); int dbg_copy_all_packets( IOBUF inp, IOBUF out, const char* file, int lineno ); int dbg_copy_some_packets( IOBUF inp, IOBUF out, ulong stopoff, const char* file, int lineno ); int dbg_skip_some_packets( IOBUF inp, unsigned n, const char* file, int lineno ); #define search_packet( a,b,c,d ) dbg_search_packet( (a), (b), (c), (d), __FILE__, __LINE__ ) -#define parse_packet( a, b ) dbg_parse_packet( (a), (b), __FILE__, __LINE__ ) +#define parse_packet( a, b, c ) dbg_parse_packet( (a), (b), (c), __FILE__, __LINE__ ) #define copy_all_packets( a,b ) dbg_copy_all_packets((a),(b), __FILE__, __LINE__ ) #define copy_some_packets( a,b,c ) dbg_copy_some_packets((a),(b),(c), __FILE__, __LINE__ ) #define skip_some_packets( a,b ) dbg_skip_some_packets((a),(b), __FILE__, __LINE__ ) #else int search_packet( IOBUF inp, PACKET *pkt, int pkttype, ulong *retpos ); -int parse_packet( IOBUF inp, PACKET *ret_pkt); +int parse_packet( IOBUF inp, PACKET *ret_pkt, ulong *retpos); int copy_all_packets( IOBUF inp, IOBUF out ); int copy_some_packets( IOBUF inp, IOBUF out, ulong stopoff ); int skip_some_packets( IOBUF inp, unsigned n ); |