summaryrefslogtreecommitdiff
path: root/bufaux.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-03-22 01:47:52 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-03-22 01:47:52 +0000
commit88aa1b45273168af3722b41c45882c6f02445255 (patch)
treeb90933978727a896841c0ec026d1fb251b4f1678 /bufaux.h
parenta674e8df809e0b746cd6ae0490709aad3850bbb8 (diff)
- provos@cvs.openbsd.org 2002/03/18 17:25:29
[bufaux.c bufaux.h] buffer_skip_string and extra sanity checking; needed by ssh-privsep
Diffstat (limited to 'bufaux.h')
-rw-r--r--bufaux.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/bufaux.h b/bufaux.h
index 400013490..650282aca 100644
--- a/bufaux.h
+++ b/bufaux.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: bufaux.h,v 1.16 2002/03/04 17:27:39 stevesk Exp $ */ 1/* $OpenBSD: bufaux.h,v 1.17 2002/03/18 17:25:29 provos Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -38,4 +38,7 @@ void *buffer_get_string(Buffer *, u_int *);
38void buffer_put_string(Buffer *, const void *, u_int); 38void buffer_put_string(Buffer *, const void *, u_int);
39void buffer_put_cstring(Buffer *, const char *); 39void buffer_put_cstring(Buffer *, const char *);
40 40
41#define buffer_skip_string(b) \
42 do { u_int l = buffer_get_int(b); buffer_consume(b, l); } while(0)
43
41#endif /* BUFAUX_H */ 44#endif /* BUFAUX_H */