]> andersk Git - openssh.git/blame - buffer.h
- (tim) [configure.ac] updwtmpx() on OpenServer seems to add duplicate entry.
[openssh.git] / buffer.h
CommitLineData
93c3b6de 1/* $OpenBSD: buffer.h,v 1.11 2002/03/04 17:27:39 stevesk Exp $ */
2
8efc0c15 3/*
5260325f 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
5260325f 7 * Code for manipulating FIFO buffers.
35484284 8 *
bcbf86ec 9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
5260325f 14 */
8efc0c15 15
8efc0c15 16#ifndef BUFFER_H
17#define BUFFER_H
18
5260325f 19typedef struct {
6c0fa2b1 20 u_char *buf; /* Buffer for data. */
255cabd9 21 u_int alloc; /* Number of bytes allocated for data. */
22 u_int offset; /* Offset of first byte containing data. */
23 u_int end; /* Offset of last byte containing data. */
5260325f 24} Buffer;
8efc0c15 25
255cabd9 26void buffer_init(Buffer *);
27void buffer_clear(Buffer *);
28void buffer_free(Buffer *);
8efc0c15 29
255cabd9 30u_int buffer_len(Buffer *);
6c0fa2b1 31void *buffer_ptr(Buffer *);
8efc0c15 32
6c0fa2b1 33void buffer_append(Buffer *, const void *, u_int);
34void *buffer_append_space(Buffer *, u_int);
8efc0c15 35
6c0fa2b1 36void buffer_get(Buffer *, void *, u_int);
8efc0c15 37
255cabd9 38void buffer_consume(Buffer *, u_int);
39void buffer_consume_end(Buffer *, u_int);
8efc0c15 40
255cabd9 41void buffer_dump(Buffer *);
8efc0c15 42
5260325f 43#endif /* BUFFER_H */
This page took 0.18135 seconds and 5 git commands to generate.