blob: 26626234c5d2ac58d55d29e5081544a52e974946 [file] [log] [blame]
Thomas Klausner99de9b92008-06-04 10:36:44 +02001.\" zip_set_archive_flag.mdoc -- set zip archive flag
2.\" Copyright (C) 2008 Dieter Baron and Thomas Klausner
3.\"
4.\" This file is part of libzip, a library to manipulate ZIP archives.
5.\" The authors can be contacted at <libzip@nih.at>
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\" 1. Redistributions of source code must retain the above copyright
11.\" notice, this list of conditions and the following disclaimer.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\" notice, this list of conditions and the following disclaimer in
14.\" the documentation and/or other materials provided with the
15.\" distribution.
16.\" 3. The names of the authors may not be used to endorse or promote
17.\" products derived from this software without specific prior
18.\" written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
21.\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
24.\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
26.\" GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
28.\" IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
30.\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31.\"
32.Dd June 4, 2008
33.Dt ZIP_SET_ARCHIVE_FLAG 3
34.Os
35.Sh NAME
36.Nm zip_set_archive_flag
37.Nd set zip archive flag
38.Sh LIBRARY
39libzip (-lzip)
40.Sh SYNOPSIS
41.In zip.h
42.Ft int
43.Fn zip_set_archive_flag "struct zip *archive" "int flag" "int value"
44.Sh DESCRIPTION
45The
46.Fn zip_set_archive_flag
47function sets the flag
48.Ar flag
49for the archive
50.Ar archive
51to the value
52.Ar value .
53.Pp
54Supported flags are:
55.Bl -tag -width XZIPXAFLXTORRENTXXX
56.It Dv ZIP_AFL_TORRENT
57Create a torrent-zipped archive.
58This restricts the values that can be set from the application side.
59In particular, time stamps are not saved and the order of the files in
60the archive is alphabetical.
61No file comments or extended attributes are allowed and the archive
62comment can not be chosen.
63.El
64.Sh RETURN VALUES
Thomas Klausner174c0af2008-06-04 11:02:00 +020065Upon successful completion 0 is returned, and \-1 if an error
66occurred.
Thomas Klausner99de9b92008-06-04 10:36:44 +020067.Sh SEE ALSO
68.Xr libzip 3 ,
69.Xr zip_get_archive_flag 3
70.Sh AUTHORS
71.An -nosplit
72.An Dieter Baron Aq dillo@giga.or.at
73and
74.An Thomas Klausner Aq tk@giga.or.at