]> andersk Git - gssapi-openssh.git/blame - openssh/buffer.h
Release new patch today.
[gssapi-openssh.git] / openssh / buffer.h
CommitLineData
30460aeb 1/* $OpenBSD: buffer.h,v 1.16 2006/08/03 03:34:41 deraadt Exp $ */
473db5ab 2
3c0ef626 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 * Code for manipulating FIFO buffers.
8 *
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".
14 */
15
3c0ef626 16#ifndef BUFFER_H
17#define BUFFER_H
f713db99 18#define BUFFER_MAX_LEN_HPN 0x4000000 /* 64MB */
3c0ef626 19
20typedef struct {
473db5ab 21 u_char *buf; /* Buffer for data. */
3c0ef626 22 u_int alloc; /* Number of bytes allocated for data. */
23 u_int offset; /* Offset of first byte containing data. */
24 u_int end; /* Offset of last byte containing data. */
25} Buffer;
26
27void buffer_init(Buffer *);
28void buffer_clear(Buffer *);
29void buffer_free(Buffer *);
30
31u_int buffer_len(Buffer *);
473db5ab 32void *buffer_ptr(Buffer *);
3c0ef626 33
473db5ab 34void buffer_append(Buffer *, const void *, u_int);
35void *buffer_append_space(Buffer *, u_int);
3c0ef626 36
30460aeb 37int buffer_check_alloc(Buffer *, u_int);
38
473db5ab 39void buffer_get(Buffer *, void *, u_int);
3c0ef626 40
41void buffer_consume(Buffer *, u_int);
42void buffer_consume_end(Buffer *, u_int);
43
44void buffer_dump(Buffer *);
45
473db5ab 46int buffer_get_ret(Buffer *, void *, u_int);
47int buffer_consume_ret(Buffer *, u_int);
48int buffer_consume_end_ret(Buffer *, u_int);
49
30460aeb 50#include <openssl/bn.h>
51
52void buffer_put_bignum(Buffer *, const BIGNUM *);
53void buffer_put_bignum2(Buffer *, const BIGNUM *);
54void buffer_get_bignum(Buffer *, BIGNUM *);
55void buffer_get_bignum2(Buffer *, BIGNUM *);
56
57u_short buffer_get_short(Buffer *);
58void buffer_put_short(Buffer *, u_short);
59
60u_int buffer_get_int(Buffer *);
61void buffer_put_int(Buffer *, u_int);
62
63u_int64_t buffer_get_int64(Buffer *);
64void buffer_put_int64(Buffer *, u_int64_t);
65
66int buffer_get_char(Buffer *);
67void buffer_put_char(Buffer *, int);
68
69void *buffer_get_string(Buffer *, u_int *);
70void buffer_put_string(Buffer *, const void *, u_int);
71void buffer_put_cstring(Buffer *, const char *);
72
73#define buffer_skip_string(b) \
74 do { u_int l = buffer_get_int(b); buffer_consume(b, l); } while (0)
75
76int buffer_put_bignum_ret(Buffer *, const BIGNUM *);
77int buffer_get_bignum_ret(Buffer *, BIGNUM *);
78int buffer_put_bignum2_ret(Buffer *, const BIGNUM *);
79int buffer_get_bignum2_ret(Buffer *, BIGNUM *);
80int buffer_get_short_ret(u_short *, Buffer *);
81int buffer_get_int_ret(u_int *, Buffer *);
82int buffer_get_int64_ret(u_int64_t *, Buffer *);
83void *buffer_get_string_ret(Buffer *, u_int *);
84int buffer_get_char_ret(char *, Buffer *);
85
3c0ef626 86#endif /* BUFFER_H */
This page took 0.348472 seconds and 5 git commands to generate.