summaryrefslogtreecommitdiffstats
path: root/source3/client/clitar_proto.h
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2013-07-08 18:09:47 +0200
committerAndreas Schneider <asn@samba.org>2014-02-19 18:22:26 +0100
commit45a45c8edac20469e5b9e7b30a55e3a591b62f79 (patch)
treeae8a31183f5d267e9552690dfb768b3b8499b397 /source3/client/clitar_proto.h
parenteebd378b6cbc4b19c35b670cd5e493ef575c19cb (diff)
downloadsamba-45a45c8edac20469e5b9e7b30a55e3a591b62f79.tar.gz
samba-45a45c8edac20469e5b9e7b30a55e3a591b62f79.tar.xz
samba-45a45c8edac20469e5b9e7b30a55e3a591b62f79.zip
implement argument parsing, split client_proto.h
Signed-off-by: Aurélien Aptel <aurelien.aptel@gmail.com> Reviewed-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/client/clitar_proto.h')
-rw-r--r--source3/client/clitar_proto.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/source3/client/clitar_proto.h b/source3/client/clitar_proto.h
new file mode 100644
index 0000000000..e66c9f9ad8
--- /dev/null
+++ b/source3/client/clitar_proto.h
@@ -0,0 +1,32 @@
+/*
+ * Unix SMB/CIFS implementation.
+ * Tar backup command extension
+ * Copyright (C) Aurélien Aptel 2013
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef _CLITAR_PROTO_H_
+#define _CLITAR_PROTO_H_
+
+struct tar;
+
+int cmd_block(void);
+int cmd_tarmode(void);
+int cmd_setmode(void);
+int cmd_tar(void);
+int process_tar(void);
+int tar_parse_args(struct tar *tar, const char *flag, const char **val, int valsize);
+
+#endif /* _CLITAR_PROTO_H_ */