summaryrefslogtreecommitdiff
path: root/sftp-common.h
diff options
context:
space:
mode:
Diffstat (limited to 'sftp-common.h')
-rw-r--r--sftp-common.h19
1 files changed, 5 insertions, 14 deletions
diff --git a/sftp-common.h b/sftp-common.h
index 3e4f502b0..4c126bf10 100644
--- a/sftp-common.h
+++ b/sftp-common.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-common.h,v 1.2 2001/06/26 06:33:01 itojun Exp $ */ 1/* $OpenBSD: sftp-common.h,v 1.3 2001/06/26 17:27:24 markus Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -38,18 +38,9 @@ struct Attrib {
38 u_int32_t mtime; 38 u_int32_t mtime;
39}; 39};
40 40
41/* Clear contents of attributes structure */ 41void attrib_clear(Attrib *);
42void attrib_clear(Attrib *); 42void stat_to_attrib(struct stat *, Attrib *);
43Attrib *decode_attrib(Buffer *);
44void encode_attrib(Buffer *, Attrib *);
43 45
44/* Convert from struct stat to filexfer attribs */
45void stat_to_attrib(struct stat *, Attrib *);
46
47/* Decode attributes in buffer */
48Attrib *decode_attrib(Buffer *);
49
50/* Encode attributes to buffer */
51void encode_attrib(Buffer *, Attrib *);
52
53/* Convert from SSH2_FX_ status to text error message */
54const char *fx2txt(int); 46const char *fx2txt(int);
55