extended bio_reader and bio_writer to handle u_int64_t

This commit is contained in:
Andreas Steffen
2011-11-28 14:39:52 +01:00
parent 8ddf76dd13
commit fbeb94544c
5 changed files with 84 additions and 0 deletions
+7
View File
@@ -58,6 +58,13 @@ struct bio_writer_t {
*/
void (*write_uint32)(bio_writer_t *this, u_int32_t value);
/**
* Append a 64-bit integer to the buffer.
*
* @param value value to append
*/
void (*write_uint64)(bio_writer_t *this, u_int64_t value);
/**
* Append a chunk of data without a length header.
*