freebsd-dev/crypto/openssh/buffer.h

51 lines
1.5 KiB
C
Raw Normal View History

2005-06-05 15:41:57 +00:00
/* $OpenBSD: buffer.h,v 1.13 2005/03/14 11:46:56 markus Exp $ */
2002-03-18 09:55:03 +00:00
2000-02-24 14:29:47 +00:00
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
* Code for manipulating FIFO buffers.
2000-05-15 04:37:24 +00:00
*
* As far as I am concerned, the code I have written for this software
* can be used freely for any purpose. Any derived versions of this
* software must be clearly marked as such, and if the derived work is
* incompatible with the protocol description in the RFC file, it must be
* called by a name other than "ssh" or "Secure Shell".
2000-02-24 14:29:47 +00:00
*/
#ifndef BUFFER_H
#define BUFFER_H
typedef struct {
2002-03-18 09:55:03 +00:00
u_char *buf; /* Buffer for data. */
u_int alloc; /* Number of bytes allocated for data. */
u_int offset; /* Offset of first byte containing data. */
u_int end; /* Offset of last byte containing data. */
2000-02-24 14:29:47 +00:00
} Buffer;
2005-06-05 15:41:57 +00:00
#define BUFFER_MAX_CHUNK 0x100000
#define BUFFER_MAX_LEN 0xa00000
2002-03-18 09:55:03 +00:00
void buffer_init(Buffer *);
void buffer_clear(Buffer *);
void buffer_free(Buffer *);
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
u_int buffer_len(Buffer *);
void *buffer_ptr(Buffer *);
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
void buffer_append(Buffer *, const void *, u_int);
void *buffer_append_space(Buffer *, u_int);
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
void buffer_get(Buffer *, void *, u_int);
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
void buffer_consume(Buffer *, u_int);
void buffer_consume_end(Buffer *, u_int);
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
void buffer_dump(Buffer *);
2000-02-24 14:29:47 +00:00
2005-06-05 15:40:50 +00:00
int buffer_get_ret(Buffer *, void *, u_int);
int buffer_consume_ret(Buffer *, u_int);
int buffer_consume_end_ret(Buffer *, u_int);
2000-02-24 14:29:47 +00:00
#endif /* BUFFER_H */