summaryrefslogtreecommitdiff
path: root/bufaux.h
diff options
context:
space:
mode:
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 */