rugged 1.3.1 → 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +34 -2
- data/ext/rugged/extconf.rb +6 -3
- data/ext/rugged/rugged.c +16 -0
- data/ext/rugged/rugged.h +4 -0
- data/ext/rugged/rugged_blame.c +2 -0
- data/ext/rugged/rugged_blob.c +3 -0
- data/ext/rugged/rugged_commit.c +1 -0
- data/ext/rugged/rugged_config.c +9 -2
- data/ext/rugged/rugged_diff.c +1 -0
- data/ext/rugged/rugged_index.c +2 -0
- data/ext/rugged/rugged_patch.c +1 -0
- data/ext/rugged/rugged_rebase.c +1 -0
- data/ext/rugged/rugged_reference.c +1 -0
- data/ext/rugged/rugged_remote.c +28 -10
- data/ext/rugged/rugged_repo.c +7 -9
- data/ext/rugged/rugged_revwalk.c +5 -1
- data/ext/rugged/rugged_settings.c +5 -0
- data/ext/rugged/rugged_submodule.c +1 -0
- data/ext/rugged/rugged_tag.c +1 -0
- data/ext/rugged/rugged_tree.c +4 -0
- data/lib/rugged/index.rb +1 -1
- data/lib/rugged/tree.rb +5 -1
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/CMakeLists.txt +132 -288
- data/vendor/libgit2/COPYING +106 -19
- data/vendor/libgit2/cmake/AddCFlagIfSupported.cmake +21 -21
- data/vendor/libgit2/cmake/AddClarTest.cmake +7 -0
- data/vendor/libgit2/cmake/DefaultCFlags.cmake +154 -0
- data/vendor/libgit2/cmake/EnableWarnings.cmake +13 -13
- data/vendor/libgit2/cmake/ExperimentalFeatures.cmake +23 -0
- data/vendor/libgit2/cmake/FindCoreFoundation.cmake +13 -13
- data/vendor/libgit2/cmake/FindGSSAPI.cmake +171 -287
- data/vendor/libgit2/cmake/FindGSSFramework.cmake +13 -13
- data/vendor/libgit2/cmake/{FindHTTP_Parser.cmake → FindHTTPParser.cmake} +17 -17
- data/vendor/libgit2/cmake/FindIconv.cmake +27 -27
- data/vendor/libgit2/cmake/FindLibSSH2.cmake +5 -5
- data/vendor/libgit2/cmake/FindPCRE.cmake +12 -13
- data/vendor/libgit2/cmake/FindPCRE2.cmake +12 -12
- data/vendor/libgit2/cmake/FindPkgLibraries.cmake +19 -19
- data/vendor/libgit2/cmake/FindSecurity.cmake +14 -14
- data/vendor/libgit2/cmake/FindStatNsec.cmake +12 -18
- data/vendor/libgit2/cmake/Findfutimens.cmake +8 -8
- data/vendor/libgit2/cmake/FindmbedTLS.cmake +63 -70
- data/vendor/libgit2/cmake/IdeSplitSources.cmake +18 -18
- data/vendor/libgit2/cmake/PkgBuildConfig.cmake +60 -60
- data/vendor/libgit2/cmake/SanitizeBool.cmake +20 -20
- data/vendor/libgit2/cmake/SelectGSSAPI.cmake +37 -37
- data/vendor/libgit2/cmake/SelectHTTPParser.cmake +19 -0
- data/vendor/libgit2/cmake/SelectHTTPSBackend.cmake +100 -100
- data/vendor/libgit2/cmake/SelectHashes.cmake +91 -53
- data/vendor/libgit2/cmake/SelectRegex.cmake +51 -0
- data/vendor/libgit2/cmake/SelectSSH.cmake +41 -0
- data/vendor/libgit2/cmake/SelectWinHTTP.cmake +17 -0
- data/vendor/libgit2/cmake/SelectZlib.cmake +34 -0
- data/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +6 -6
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +33 -31
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +3 -1
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +4 -4
- data/vendor/libgit2/deps/ntlmclient/ntlm.h +4 -4
- data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +2 -2
- data/vendor/libgit2/deps/pcre/CMakeLists.txt +88 -88
- data/vendor/libgit2/deps/winhttp/CMakeLists.txt +14 -16
- data/vendor/libgit2/deps/zlib/adler32.c +7 -0
- data/vendor/libgit2/deps/zlib/crc32.c +975 -288
- data/vendor/libgit2/deps/zlib/crc32.h +9441 -436
- data/vendor/libgit2/deps/zlib/deflate.c +83 -31
- data/vendor/libgit2/deps/zlib/deflate.h +12 -15
- data/vendor/libgit2/deps/zlib/gzguts.h +3 -2
- data/vendor/libgit2/deps/zlib/infback.c +2 -1
- data/vendor/libgit2/deps/zlib/inffast.c +14 -14
- data/vendor/libgit2/deps/zlib/inflate.c +39 -8
- data/vendor/libgit2/deps/zlib/inflate.h +3 -2
- data/vendor/libgit2/deps/zlib/inftrees.c +3 -3
- data/vendor/libgit2/deps/zlib/trees.c +27 -48
- data/vendor/libgit2/deps/zlib/zlib.h +126 -100
- data/vendor/libgit2/deps/zlib/zutil.c +2 -2
- data/vendor/libgit2/deps/zlib/zutil.h +12 -9
- data/vendor/libgit2/include/git2/apply.h +16 -2
- data/vendor/libgit2/include/git2/attr.h +11 -2
- data/vendor/libgit2/include/git2/blame.h +4 -1
- data/vendor/libgit2/include/git2/blob.h +14 -1
- data/vendor/libgit2/include/git2/branch.h +4 -2
- data/vendor/libgit2/include/git2/buffer.h +18 -78
- data/vendor/libgit2/include/git2/cert.h +2 -2
- data/vendor/libgit2/include/git2/checkout.h +5 -2
- data/vendor/libgit2/include/git2/clone.h +3 -3
- data/vendor/libgit2/include/git2/commit.h +2 -0
- data/vendor/libgit2/include/git2/common.h +38 -7
- data/vendor/libgit2/include/git2/config.h +25 -9
- data/vendor/libgit2/include/git2/credential.h +2 -1
- data/vendor/libgit2/include/git2/credential_helpers.h +1 -0
- data/vendor/libgit2/include/git2/deprecated.h +9 -1
- data/vendor/libgit2/include/git2/describe.h +7 -2
- data/vendor/libgit2/include/git2/diff.h +18 -10
- data/vendor/libgit2/include/git2/email.h +1 -1
- data/vendor/libgit2/include/git2/errors.h +18 -3
- data/vendor/libgit2/include/git2/experimental.h +20 -0
- data/vendor/libgit2/include/git2/filter.h +7 -2
- data/vendor/libgit2/include/git2/graph.h +1 -0
- data/vendor/libgit2/include/git2/ignore.h +1 -1
- data/vendor/libgit2/include/git2/index.h +11 -5
- data/vendor/libgit2/include/git2/indexer.h +48 -0
- data/vendor/libgit2/include/git2/merge.h +24 -4
- data/vendor/libgit2/include/git2/message.h +2 -0
- data/vendor/libgit2/include/git2/object.h +49 -0
- data/vendor/libgit2/include/git2/odb.h +94 -13
- data/vendor/libgit2/include/git2/odb_backend.h +107 -19
- data/vendor/libgit2/include/git2/oid.h +115 -15
- data/vendor/libgit2/include/git2/pack.h +24 -8
- data/vendor/libgit2/include/git2/patch.h +8 -0
- data/vendor/libgit2/include/git2/pathspec.h +1 -1
- data/vendor/libgit2/include/git2/proxy.h +1 -1
- data/vendor/libgit2/include/git2/rebase.h +9 -1
- data/vendor/libgit2/include/git2/refdb.h +3 -0
- data/vendor/libgit2/include/git2/reflog.h +1 -1
- data/vendor/libgit2/include/git2/refs.h +2 -2
- data/vendor/libgit2/include/git2/remote.h +184 -37
- data/vendor/libgit2/include/git2/repository.h +34 -10
- data/vendor/libgit2/include/git2/reset.h +2 -2
- data/vendor/libgit2/include/git2/revparse.h +1 -1
- data/vendor/libgit2/include/git2/revwalk.h +4 -1
- data/vendor/libgit2/include/git2/signature.h +1 -1
- data/vendor/libgit2/include/git2/stash.h +61 -7
- data/vendor/libgit2/include/git2/status.h +14 -5
- data/vendor/libgit2/include/git2/strarray.h +0 -13
- data/vendor/libgit2/include/git2/submodule.h +7 -2
- data/vendor/libgit2/include/git2/sys/commit_graph.h +1 -1
- data/vendor/libgit2/include/git2/sys/odb_backend.h +3 -6
- data/vendor/libgit2/include/git2/sys/remote.h +46 -0
- data/vendor/libgit2/include/git2/sys/stream.h +1 -1
- data/vendor/libgit2/include/git2/sys/transport.h +46 -39
- data/vendor/libgit2/include/git2/tag.h +1 -0
- data/vendor/libgit2/include/git2/tree.h +4 -3
- data/vendor/libgit2/include/git2/types.h +7 -7
- data/vendor/libgit2/include/git2/version.h +27 -6
- data/vendor/libgit2/include/git2/worktree.h +12 -2
- data/vendor/libgit2/include/git2.h +1 -0
- data/vendor/libgit2/src/CMakeLists.txt +177 -419
- data/vendor/libgit2/src/README.md +12 -0
- data/vendor/libgit2/src/cli/CMakeLists.txt +57 -0
- data/vendor/libgit2/src/cli/README.md +26 -0
- data/vendor/libgit2/src/cli/cli.h +20 -0
- data/vendor/libgit2/src/cli/cmd.c +21 -0
- data/vendor/libgit2/src/cli/cmd.h +33 -0
- data/vendor/libgit2/src/cli/cmd_cat_file.c +204 -0
- data/vendor/libgit2/src/cli/cmd_clone.c +176 -0
- data/vendor/libgit2/src/cli/cmd_hash_object.c +154 -0
- data/vendor/libgit2/src/cli/cmd_help.c +86 -0
- data/vendor/libgit2/src/cli/error.h +51 -0
- data/vendor/libgit2/src/cli/main.c +106 -0
- data/vendor/libgit2/src/cli/opt.c +669 -0
- data/vendor/libgit2/src/cli/opt.h +349 -0
- data/vendor/libgit2/src/cli/opt_usage.c +194 -0
- data/vendor/libgit2/src/cli/opt_usage.h +35 -0
- data/vendor/libgit2/src/cli/progress.c +345 -0
- data/vendor/libgit2/src/cli/progress.h +117 -0
- data/vendor/libgit2/src/cli/sighandler.h +20 -0
- data/vendor/libgit2/src/cli/unix/sighandler.c +36 -0
- data/vendor/libgit2/src/cli/win32/precompiled.h +3 -0
- data/vendor/libgit2/src/cli/win32/sighandler.c +37 -0
- data/vendor/libgit2/src/libgit2/CMakeLists.txt +141 -0
- data/vendor/libgit2/src/{annotated_commit.c → libgit2/annotated_commit.c} +1 -1
- data/vendor/libgit2/src/{annotated_commit.h → libgit2/annotated_commit.h} +2 -2
- data/vendor/libgit2/src/{apply.c → libgit2/apply.c} +18 -18
- data/vendor/libgit2/src/{apply.h → libgit2/apply.h} +2 -2
- data/vendor/libgit2/src/{attr.c → libgit2/attr.c} +18 -18
- data/vendor/libgit2/src/{attr_file.c → libgit2/attr_file.c} +18 -18
- data/vendor/libgit2/src/{attr_file.h → libgit2/attr_file.h} +4 -4
- data/vendor/libgit2/src/{attrcache.c → libgit2/attrcache.c} +18 -13
- data/vendor/libgit2/src/{blame.c → libgit2/blame.c} +2 -0
- data/vendor/libgit2/src/{blame_git.c → libgit2/blame_git.c} +1 -1
- data/vendor/libgit2/src/{blob.c → libgit2/blob.c} +38 -29
- data/vendor/libgit2/src/{blob.h → libgit2/blob.h} +3 -3
- data/vendor/libgit2/src/{branch.c → libgit2/branch.c} +164 -118
- data/vendor/libgit2/src/{branch.h → libgit2/branch.h} +15 -3
- data/vendor/libgit2/src/libgit2/buf.c +126 -0
- data/vendor/libgit2/src/libgit2/buf.h +50 -0
- data/vendor/libgit2/src/{checkout.c → libgit2/checkout.c} +74 -68
- data/vendor/libgit2/src/{cherrypick.c → libgit2/cherrypick.c} +13 -13
- data/vendor/libgit2/src/{clone.c → libgit2/clone.c} +96 -67
- data/vendor/libgit2/src/{commit.c → libgit2/commit.c} +178 -73
- data/vendor/libgit2/src/libgit2/commit.h +87 -0
- data/vendor/libgit2/src/{commit_graph.c → libgit2/commit_graph.c} +122 -89
- data/vendor/libgit2/src/{commit_graph.h → libgit2/commit_graph.h} +14 -4
- data/vendor/libgit2/src/{commit_list.c → libgit2/commit_list.c} +7 -4
- data/vendor/libgit2/src/libgit2/common.h +55 -0
- data/vendor/libgit2/src/{config.c → libgit2/config.c} +107 -71
- data/vendor/libgit2/src/{config.h → libgit2/config.h} +15 -2
- data/vendor/libgit2/src/{config_file.c → libgit2/config_file.c} +105 -93
- data/vendor/libgit2/src/{config_mem.c → libgit2/config_mem.c} +9 -9
- data/vendor/libgit2/src/{config_parse.c → libgit2/config_parse.c} +27 -23
- data/vendor/libgit2/src/{crlf.c → libgit2/crlf.c} +24 -21
- data/vendor/libgit2/src/{describe.c → libgit2/describe.c} +35 -27
- data/vendor/libgit2/src/{diff.c → libgit2/diff.c} +30 -9
- data/vendor/libgit2/src/{diff.h → libgit2/diff.h} +2 -4
- data/vendor/libgit2/src/{diff_driver.c → libgit2/diff_driver.c} +34 -36
- data/vendor/libgit2/src/{diff_driver.h → libgit2/diff_driver.h} +3 -3
- data/vendor/libgit2/src/{diff_file.c → libgit2/diff_file.c} +44 -26
- data/vendor/libgit2/src/{diff_generate.c → libgit2/diff_generate.c} +47 -18
- data/vendor/libgit2/src/{diff_generate.h → libgit2/diff_generate.h} +5 -3
- data/vendor/libgit2/src/{diff_print.c → libgit2/diff_print.c} +112 -100
- data/vendor/libgit2/src/{diff_stats.c → libgit2/diff_stats.c} +40 -29
- data/vendor/libgit2/src/libgit2/diff_stats.h +18 -0
- data/vendor/libgit2/src/{diff_tform.c → libgit2/diff_tform.c} +13 -8
- data/vendor/libgit2/src/{diff_xdiff.c → libgit2/diff_xdiff.c} +4 -8
- data/vendor/libgit2/src/{email.c → libgit2/email.c} +55 -39
- data/vendor/libgit2/src/{email.h → libgit2/email.h} +1 -1
- data/vendor/libgit2/src/{errors.c → libgit2/errors.c} +18 -18
- data/vendor/libgit2/src/{errors.h → libgit2/errors.h} +1 -2
- data/vendor/libgit2/src/libgit2/experimental.h.in +13 -0
- data/vendor/libgit2/src/{fetch.c → libgit2/fetch.c} +72 -27
- data/vendor/libgit2/src/{fetch.h → libgit2/fetch.h} +1 -1
- data/vendor/libgit2/src/{fetchhead.c → libgit2/fetchhead.c} +23 -23
- data/vendor/libgit2/src/{filter.c → libgit2/filter.c} +127 -53
- data/vendor/libgit2/src/{filter.h → libgit2/filter.h} +26 -5
- data/vendor/libgit2/src/{ident.c → libgit2/ident.c} +20 -20
- data/vendor/libgit2/src/{ignore.c → libgit2/ignore.c} +35 -34
- data/vendor/libgit2/src/{ignore.h → libgit2/ignore.h} +2 -2
- data/vendor/libgit2/src/{index.c → libgit2/index.c} +91 -90
- data/vendor/libgit2/src/{index.h → libgit2/index.h} +6 -3
- data/vendor/libgit2/src/{indexer.c → libgit2/indexer.c} +173 -92
- data/vendor/libgit2/src/{iterator.c → libgit2/iterator.c} +71 -61
- data/vendor/libgit2/src/{iterator.h → libgit2/iterator.h} +5 -5
- data/vendor/libgit2/src/{libgit2.c → libgit2/libgit2.c} +54 -11
- data/vendor/libgit2/src/{mailmap.c → libgit2/mailmap.c} +38 -36
- data/vendor/libgit2/src/{merge.c → libgit2/merge.c} +30 -30
- data/vendor/libgit2/src/{merge.h → libgit2/merge.h} +1 -14
- data/vendor/libgit2/src/{merge_driver.c → libgit2/merge_driver.c} +2 -2
- data/vendor/libgit2/src/{merge_file.c → libgit2/merge_file.c} +13 -3
- data/vendor/libgit2/src/{message.c → libgit2/message.c} +21 -10
- data/vendor/libgit2/src/{midx.c → libgit2/midx.c} +112 -92
- data/vendor/libgit2/src/{midx.h → libgit2/midx.h} +5 -4
- data/vendor/libgit2/src/{mwindow.c → libgit2/mwindow.c} +15 -12
- data/vendor/libgit2/src/{mwindow.h → libgit2/mwindow.h} +5 -2
- data/vendor/libgit2/src/{netops.c → libgit2/netops.c} +1 -2
- data/vendor/libgit2/src/{netops.h → libgit2/netops.h} +1 -1
- data/vendor/libgit2/src/{notes.c → libgit2/notes.c} +25 -34
- data/vendor/libgit2/src/{object.c → libgit2/object.c} +135 -30
- data/vendor/libgit2/src/{object.h → libgit2/object.h} +12 -3
- data/vendor/libgit2/src/{odb.c → libgit2/odb.c} +228 -81
- data/vendor/libgit2/src/{odb.h → libgit2/odb.h} +44 -5
- data/vendor/libgit2/src/{odb_loose.c → libgit2/odb_loose.c} +192 -134
- data/vendor/libgit2/src/{odb_mempack.c → libgit2/odb_mempack.c} +18 -5
- data/vendor/libgit2/src/{odb_pack.c → libgit2/odb_pack.c} +137 -85
- data/vendor/libgit2/src/{oid.c → libgit2/oid.c} +136 -90
- data/vendor/libgit2/src/libgit2/oid.h +273 -0
- data/vendor/libgit2/src/{oidmap.c → libgit2/oidmap.c} +1 -1
- data/vendor/libgit2/src/{pack-objects.c → libgit2/pack-objects.c} +56 -30
- data/vendor/libgit2/src/{pack-objects.h → libgit2/pack-objects.h} +11 -6
- data/vendor/libgit2/src/{pack.c → libgit2/pack.c} +114 -84
- data/vendor/libgit2/src/{pack.h → libgit2/pack.h} +31 -16
- data/vendor/libgit2/src/{parse.c → libgit2/parse.c} +4 -3
- data/vendor/libgit2/src/{patch.c → libgit2/patch.c} +3 -3
- data/vendor/libgit2/src/{patch.h → libgit2/patch.h} +1 -0
- data/vendor/libgit2/src/{patch_generate.c → libgit2/patch_generate.c} +27 -11
- data/vendor/libgit2/src/{patch_generate.h → libgit2/patch_generate.h} +5 -5
- data/vendor/libgit2/src/{patch_parse.c → libgit2/patch_parse.c} +29 -29
- data/vendor/libgit2/src/libgit2/path.c +375 -0
- data/vendor/libgit2/src/libgit2/path.h +68 -0
- data/vendor/libgit2/src/{pathspec.c → libgit2/pathspec.c} +6 -6
- data/vendor/libgit2/src/{pathspec.h → libgit2/pathspec.h} +2 -2
- data/vendor/libgit2/src/{proxy.c → libgit2/proxy.c} +4 -1
- data/vendor/libgit2/src/{proxy.h → libgit2/proxy.h} +1 -1
- data/vendor/libgit2/src/{push.c → libgit2/push.c} +43 -38
- data/vendor/libgit2/src/{push.h → libgit2/push.h} +4 -16
- data/vendor/libgit2/src/{reader.c → libgit2/reader.c} +9 -9
- data/vendor/libgit2/src/{reader.h → libgit2/reader.h} +2 -2
- data/vendor/libgit2/src/{rebase.c → libgit2/rebase.c} +119 -107
- data/vendor/libgit2/src/{refdb_fs.c → libgit2/refdb_fs.c} +506 -197
- data/vendor/libgit2/src/{reflog.c → libgit2/reflog.c} +7 -5
- data/vendor/libgit2/src/{reflog.h → libgit2/reflog.h} +1 -2
- data/vendor/libgit2/src/{refs.c → libgit2/refs.c} +34 -32
- data/vendor/libgit2/src/{refs.h → libgit2/refs.h} +2 -2
- data/vendor/libgit2/src/{refspec.c → libgit2/refspec.c} +32 -37
- data/vendor/libgit2/src/{refspec.h → libgit2/refspec.h} +5 -2
- data/vendor/libgit2/src/{remote.c → libgit2/remote.c} +718 -420
- data/vendor/libgit2/src/libgit2/remote.h +100 -0
- data/vendor/libgit2/src/{repository.c → libgit2/repository.c} +690 -366
- data/vendor/libgit2/src/{repository.h → libgit2/repository.h} +21 -9
- data/vendor/libgit2/src/{reset.c → libgit2/reset.c} +8 -5
- data/vendor/libgit2/src/{revert.c → libgit2/revert.c} +14 -14
- data/vendor/libgit2/src/{revparse.c → libgit2/revparse.c} +71 -42
- data/vendor/libgit2/src/{revwalk.c → libgit2/revwalk.c} +12 -8
- data/vendor/libgit2/src/{signature.c → libgit2/signature.c} +12 -6
- data/vendor/libgit2/src/{signature.h → libgit2/signature.h} +1 -1
- data/vendor/libgit2/src/{stash.c → libgit2/stash.c} +235 -61
- data/vendor/libgit2/src/{status.c → libgit2/status.c} +4 -1
- data/vendor/libgit2/src/{strarray.c → libgit2/strarray.c} +1 -0
- data/vendor/libgit2/src/libgit2/strarray.h +25 -0
- data/vendor/libgit2/src/{streams → libgit2/streams}/mbedtls.c +8 -6
- data/vendor/libgit2/src/{streams → libgit2/streams}/openssl.c +1 -1
- data/vendor/libgit2/src/{streams → libgit2/streams}/openssl_dynamic.c +7 -3
- data/vendor/libgit2/src/{streams → libgit2/streams}/openssl_dynamic.h +3 -3
- data/vendor/libgit2/src/{streams → libgit2/streams}/socket.c +4 -1
- data/vendor/libgit2/src/{submodule.c → libgit2/submodule.c} +177 -161
- data/vendor/libgit2/src/{submodule.h → libgit2/submodule.h} +1 -1
- data/vendor/libgit2/src/libgit2/sysdir.c +650 -0
- data/vendor/libgit2/src/{sysdir.h → libgit2/sysdir.h} +53 -18
- data/vendor/libgit2/src/{tag.c → libgit2/tag.c} +73 -42
- data/vendor/libgit2/src/{tag.h → libgit2/tag.h} +2 -2
- data/vendor/libgit2/src/{threadstate.c → libgit2/threadstate.c} +3 -3
- data/vendor/libgit2/src/{threadstate.h → libgit2/threadstate.h} +2 -2
- data/vendor/libgit2/src/{trace.c → libgit2/trace.c} +1 -14
- data/vendor/libgit2/src/{trace.h → libgit2/trace.h} +5 -22
- data/vendor/libgit2/src/{trailer.c → libgit2/trailer.c} +1 -1
- data/vendor/libgit2/src/{transaction.c → libgit2/transaction.c} +1 -1
- data/vendor/libgit2/src/{transport.c → libgit2/transport.c} +10 -10
- data/vendor/libgit2/src/{transports → libgit2/transports}/auth.c +7 -9
- data/vendor/libgit2/src/{transports → libgit2/transports}/auth.h +2 -3
- data/vendor/libgit2/src/{transports → libgit2/transports}/auth_negotiate.c +12 -13
- data/vendor/libgit2/src/{transports → libgit2/transports}/auth_ntlm.c +10 -10
- data/vendor/libgit2/src/{transports → libgit2/transports}/auth_ntlm.h +0 -1
- data/vendor/libgit2/src/{transports → libgit2/transports}/git.c +9 -11
- data/vendor/libgit2/src/{transports → libgit2/transports}/http.c +41 -20
- data/vendor/libgit2/src/{transports → libgit2/transports}/http.h +2 -3
- data/vendor/libgit2/src/{transports → libgit2/transports}/httpclient.c +75 -66
- data/vendor/libgit2/src/{transports → libgit2/transports}/httpclient.h +10 -0
- data/vendor/libgit2/src/{transports → libgit2/transports}/local.c +138 -116
- data/vendor/libgit2/src/{transports → libgit2/transports}/smart.c +92 -133
- data/vendor/libgit2/src/{transports → libgit2/transports}/smart.h +35 -32
- data/vendor/libgit2/src/{transports → libgit2/transports}/smart_pkt.c +177 -65
- data/vendor/libgit2/src/{transports → libgit2/transports}/smart_protocol.c +97 -49
- data/vendor/libgit2/src/{transports → libgit2/transports}/ssh.c +365 -198
- data/vendor/libgit2/src/{transports → libgit2/transports}/winhttp.c +58 -59
- data/vendor/libgit2/src/{tree-cache.c → libgit2/tree-cache.c} +8 -8
- data/vendor/libgit2/src/{tree-cache.h → libgit2/tree-cache.h} +2 -2
- data/vendor/libgit2/src/{tree.c → libgit2/tree.c} +93 -83
- data/vendor/libgit2/src/{tree.h → libgit2/tree.h} +4 -4
- data/vendor/libgit2/src/{worktree.c → libgit2/worktree.c} +121 -94
- data/vendor/libgit2/src/{worktree.h → libgit2/worktree.h} +1 -1
- data/vendor/libgit2/src/libgit2/xdiff/git-xdiff.h +53 -0
- data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xdiff.h +15 -15
- data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xdiffi.c +134 -108
- data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xemit.c +23 -7
- data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xhistogram.c +87 -78
- data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xinclude.h +1 -12
- data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xmerge.c +104 -117
- data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xpatience.c +6 -17
- data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xprepare.c +15 -20
- data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xutils.c +18 -7
- data/vendor/libgit2/src/util/CMakeLists.txt +80 -0
- data/vendor/libgit2/src/{allocators → util/allocators}/failalloc.h +1 -1
- data/vendor/libgit2/src/{allocators → util/allocators}/stdalloc.h +1 -1
- data/vendor/libgit2/src/{allocators → util/allocators}/win32_leakcheck.h +1 -1
- data/vendor/libgit2/src/{array.h → util/array.h} +1 -1
- data/vendor/libgit2/src/{assert_safe.h → util/assert_safe.h} +16 -0
- data/vendor/libgit2/src/{cc-compat.h → util/cc-compat.h} +1 -1
- data/vendor/libgit2/src/{date.c → util/date.c} +14 -20
- data/vendor/libgit2/src/util/date.h +33 -0
- data/vendor/libgit2/src/{filebuf.c → util/filebuf.c} +29 -29
- data/vendor/libgit2/src/{filebuf.h → util/filebuf.h} +2 -2
- data/vendor/libgit2/src/{path.c → util/fs_path.c} +580 -615
- data/vendor/libgit2/src/{path.h → util/fs_path.h} +234 -181
- data/vendor/libgit2/src/{futils.c → util/futils.c} +135 -90
- data/vendor/libgit2/src/{futils.h → util/futils.h} +28 -15
- data/vendor/libgit2/src/{features.h.in → util/git2_features.h.in} +15 -1
- data/vendor/libgit2/src/{common.h → util/git2_util.h} +20 -59
- data/vendor/libgit2/src/util/hash/builtin.c +53 -0
- data/vendor/libgit2/src/{hash/sha1/openssl.h → util/hash/builtin.h} +6 -6
- data/vendor/libgit2/src/{hash/sha1 → util/hash}/collisiondetect.c +3 -3
- data/vendor/libgit2/src/{hash/sha1 → util/hash}/collisiondetect.h +3 -3
- data/vendor/libgit2/src/util/hash/common_crypto.c +112 -0
- data/vendor/libgit2/src/{hash/sha1 → util/hash}/common_crypto.h +11 -3
- data/vendor/libgit2/src/util/hash/mbedtls.c +92 -0
- data/vendor/libgit2/src/{hash/sha1 → util/hash}/mbedtls.h +14 -4
- data/vendor/libgit2/src/util/hash/openssl.c +195 -0
- data/vendor/libgit2/src/util/hash/openssl.h +45 -0
- data/vendor/libgit2/src/util/hash/rfc6234/sha.h +243 -0
- data/vendor/libgit2/src/util/hash/rfc6234/sha224-256.c +601 -0
- data/vendor/libgit2/src/util/hash/sha.h +70 -0
- data/vendor/libgit2/src/{hash/sha1 → util/hash}/sha1dc/sha1.c +1 -1
- data/vendor/libgit2/src/util/hash/win32.c +549 -0
- data/vendor/libgit2/src/util/hash/win32.h +60 -0
- data/vendor/libgit2/src/util/hash.c +158 -0
- data/vendor/libgit2/src/util/hash.h +61 -0
- data/vendor/libgit2/src/{khash.h → util/khash.h} +1 -1
- data/vendor/libgit2/src/{map.h → util/map.h} +1 -1
- data/vendor/libgit2/src/util/net.c +1003 -0
- data/vendor/libgit2/src/{net.h → util/net.h} +18 -4
- data/vendor/libgit2/src/{pool.h → util/pool.h} +1 -1
- data/vendor/libgit2/src/{posix.c → util/posix.c} +3 -3
- data/vendor/libgit2/src/{posix.h → util/posix.h} +4 -1
- data/vendor/libgit2/src/{pqueue.h → util/pqueue.h} +2 -2
- data/vendor/libgit2/src/util/rand.c +234 -0
- data/vendor/libgit2/src/util/rand.h +37 -0
- data/vendor/libgit2/src/{regexp.c → util/regexp.c} +4 -4
- data/vendor/libgit2/src/{regexp.h → util/regexp.h} +1 -1
- data/vendor/libgit2/src/{runtime.c → util/runtime.c} +1 -1
- data/vendor/libgit2/src/{runtime.h → util/runtime.h} +1 -1
- data/vendor/libgit2/src/{sortedcache.c → util/sortedcache.c} +1 -1
- data/vendor/libgit2/src/{sortedcache.h → util/sortedcache.h} +2 -2
- data/vendor/libgit2/src/{buffer.c → util/str.c} +157 -151
- data/vendor/libgit2/src/util/str.h +357 -0
- data/vendor/libgit2/src/{strmap.h → util/strmap.h} +1 -1
- data/vendor/libgit2/src/{thread.c → util/thread.c} +1 -1
- data/vendor/libgit2/src/{thread.h → util/thread.h} +23 -22
- data/vendor/libgit2/src/{tsort.c → util/tsort.c} +1 -1
- data/vendor/libgit2/src/{unix → util/unix}/map.c +1 -3
- data/vendor/libgit2/src/{unix → util/unix}/posix.h +1 -4
- data/vendor/libgit2/src/{unix → util/unix}/realpath.c +1 -3
- data/vendor/libgit2/src/{utf8.c → util/utf8.c} +1 -1
- data/vendor/libgit2/src/{utf8.h → util/utf8.h} +1 -1
- data/vendor/libgit2/src/{util.c → util/util.c} +15 -15
- data/vendor/libgit2/src/{util.h → util/util.h} +4 -29
- data/vendor/libgit2/src/{varint.h → util/varint.h} +1 -1
- data/vendor/libgit2/src/{vector.h → util/vector.h} +2 -2
- data/vendor/libgit2/src/{wildmatch.h → util/wildmatch.h} +1 -1
- data/vendor/libgit2/src/{win32 → util/win32}/dir.h +1 -1
- data/vendor/libgit2/src/{win32 → util/win32}/error.h +1 -1
- data/vendor/libgit2/src/{win32 → util/win32}/map.c +1 -1
- data/vendor/libgit2/src/{win32 → util/win32}/path_w32.c +140 -9
- data/vendor/libgit2/src/{win32 → util/win32}/path_w32.h +3 -1
- data/vendor/libgit2/src/{win32 → util/win32}/posix.h +1 -2
- data/vendor/libgit2/src/{win32 → util/win32}/posix_w32.c +12 -28
- data/vendor/libgit2/src/util/win32/precompiled.c +1 -0
- data/vendor/libgit2/src/{win32 → util/win32}/precompiled.h +1 -1
- data/vendor/libgit2/src/{win32 → util/win32}/thread.h +1 -1
- data/vendor/libgit2/src/{win32 → util/win32}/utf-conv.h +1 -1
- data/vendor/libgit2/src/{win32 → util/win32}/w32_buffer.c +2 -3
- data/vendor/libgit2/src/{win32 → util/win32}/w32_buffer.h +3 -4
- data/vendor/libgit2/src/{win32 → util/win32}/w32_leakcheck.c +1 -1
- data/vendor/libgit2/src/{win32 → util/win32}/w32_leakcheck.h +1 -1
- data/vendor/libgit2/src/{win32 → util/win32}/w32_util.h +1 -1
- data/vendor/libgit2/src/{zstream.c → util/zstream.c} +5 -5
- data/vendor/libgit2/src/{zstream.h → util/zstream.h} +5 -5
- metadata +402 -356
- data/vendor/libgit2/src/buffer.h +0 -374
- data/vendor/libgit2/src/commit.h +0 -46
- data/vendor/libgit2/src/hash/sha1/common_crypto.c +0 -57
- data/vendor/libgit2/src/hash/sha1/generic.c +0 -300
- data/vendor/libgit2/src/hash/sha1/generic.h +0 -19
- data/vendor/libgit2/src/hash/sha1/mbedtls.c +0 -46
- data/vendor/libgit2/src/hash/sha1/openssl.c +0 -59
- data/vendor/libgit2/src/hash/sha1/win32.c +0 -333
- data/vendor/libgit2/src/hash/sha1/win32.h +0 -128
- data/vendor/libgit2/src/hash/sha1.h +0 -38
- data/vendor/libgit2/src/hash.c +0 -110
- data/vendor/libgit2/src/hash.h +0 -46
- data/vendor/libgit2/src/message.h +0 -17
- data/vendor/libgit2/src/net.c +0 -540
- data/vendor/libgit2/src/oid.h +0 -51
- data/vendor/libgit2/src/remote.h +0 -55
- data/vendor/libgit2/src/sysdir.c +0 -347
- data/vendor/libgit2/src/win32/findfile.c +0 -230
- data/vendor/libgit2/src/win32/findfile.h +0 -19
- /data/vendor/libgit2/src/{win32 → cli/win32}/precompiled.c +0 -0
- /data/vendor/libgit2/src/{attr.h → libgit2/attr.h} +0 -0
- /data/vendor/libgit2/src/{attrcache.h → libgit2/attrcache.h} +0 -0
- /data/vendor/libgit2/src/{blame.h → libgit2/blame.h} +0 -0
- /data/vendor/libgit2/src/{blame_git.h → libgit2/blame_git.h} +0 -0
- /data/vendor/libgit2/src/{cache.c → libgit2/cache.c} +0 -0
- /data/vendor/libgit2/src/{cache.h → libgit2/cache.h} +0 -0
- /data/vendor/libgit2/src/{checkout.h → libgit2/checkout.h} +0 -0
- /data/vendor/libgit2/src/{clone.h → libgit2/clone.h} +0 -0
- /data/vendor/libgit2/src/{commit_list.h → libgit2/commit_list.h} +0 -0
- /data/vendor/libgit2/src/{config_backend.h → libgit2/config_backend.h} +0 -0
- /data/vendor/libgit2/src/{config_cache.c → libgit2/config_cache.c} +0 -0
- /data/vendor/libgit2/src/{config_entries.c → libgit2/config_entries.c} +0 -0
- /data/vendor/libgit2/src/{config_entries.h → libgit2/config_entries.h} +0 -0
- /data/vendor/libgit2/src/{config_parse.h → libgit2/config_parse.h} +0 -0
- /data/vendor/libgit2/src/{config_snapshot.c → libgit2/config_snapshot.c} +0 -0
- /data/vendor/libgit2/src/{delta.c → libgit2/delta.c} +0 -0
- /data/vendor/libgit2/src/{delta.h → libgit2/delta.h} +0 -0
- /data/vendor/libgit2/src/{diff_file.h → libgit2/diff_file.h} +0 -0
- /data/vendor/libgit2/src/{diff_parse.c → libgit2/diff_parse.c} +0 -0
- /data/vendor/libgit2/src/{diff_parse.h → libgit2/diff_parse.h} +0 -0
- /data/vendor/libgit2/src/{diff_tform.h → libgit2/diff_tform.h} +0 -0
- /data/vendor/libgit2/src/{diff_xdiff.h → libgit2/diff_xdiff.h} +0 -0
- /data/vendor/libgit2/src/{fetchhead.h → libgit2/fetchhead.h} +0 -0
- /data/vendor/libgit2/src/{win32 → libgit2}/git2.rc +0 -0
- /data/vendor/libgit2/src/{graph.c → libgit2/graph.c} +0 -0
- /data/vendor/libgit2/src/{hashsig.c → libgit2/hashsig.c} +0 -0
- /data/vendor/libgit2/src/{idxmap.c → libgit2/idxmap.c} +0 -0
- /data/vendor/libgit2/src/{idxmap.h → libgit2/idxmap.h} +0 -0
- /data/vendor/libgit2/src/{indexer.h → libgit2/indexer.h} +0 -0
- /data/vendor/libgit2/src/{libgit2.h → libgit2/libgit2.h} +0 -0
- /data/vendor/libgit2/src/{mailmap.h → libgit2/mailmap.h} +0 -0
- /data/vendor/libgit2/src/{merge_driver.h → libgit2/merge_driver.h} +0 -0
- /data/vendor/libgit2/src/{notes.h → libgit2/notes.h} +0 -0
- /data/vendor/libgit2/src/{object_api.c → libgit2/object_api.c} +0 -0
- /data/vendor/libgit2/src/{offmap.c → libgit2/offmap.c} +0 -0
- /data/vendor/libgit2/src/{offmap.h → libgit2/offmap.h} +0 -0
- /data/vendor/libgit2/src/{oidarray.c → libgit2/oidarray.c} +0 -0
- /data/vendor/libgit2/src/{oidarray.h → libgit2/oidarray.h} +0 -0
- /data/vendor/libgit2/src/{oidmap.h → libgit2/oidmap.h} +0 -0
- /data/vendor/libgit2/src/{parse.h → libgit2/parse.h} +0 -0
- /data/vendor/libgit2/src/{patch_parse.h → libgit2/patch_parse.h} +0 -0
- /data/vendor/libgit2/src/{refdb.c → libgit2/refdb.c} +0 -0
- /data/vendor/libgit2/src/{refdb.h → libgit2/refdb.h} +0 -0
- /data/vendor/libgit2/src/{repo_template.h → libgit2/repo_template.h} +0 -0
- /data/vendor/libgit2/src/{revwalk.h → libgit2/revwalk.h} +0 -0
- /data/vendor/libgit2/src/{settings.h → libgit2/settings.h} +0 -0
- /data/vendor/libgit2/src/{status.h → libgit2/status.h} +0 -0
- /data/vendor/libgit2/src/{stream.h → libgit2/stream.h} +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/mbedtls.h +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/openssl.h +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/openssl_legacy.c +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/openssl_legacy.h +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/registry.c +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/registry.h +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/socket.h +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/stransport.c +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/stransport.h +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/tls.c +0 -0
- /data/vendor/libgit2/src/{streams → libgit2/streams}/tls.h +0 -0
- /data/vendor/libgit2/src/{transaction.h → libgit2/transaction.h} +0 -0
- /data/vendor/libgit2/src/{transports → libgit2/transports}/auth_negotiate.h +0 -0
- /data/vendor/libgit2/src/{transports → libgit2/transports}/credential.c +0 -0
- /data/vendor/libgit2/src/{transports → libgit2/transports}/credential_helpers.c +0 -0
- /data/vendor/libgit2/src/{transports → libgit2/transports}/ssh.h +0 -0
- /data/vendor/libgit2/src/{userdiff.h → libgit2/userdiff.h} +0 -0
- /data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xdiffi.h +0 -0
- /data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xemit.h +0 -0
- /data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xmacros.h +0 -0
- /data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xprepare.h +0 -0
- /data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xtypes.h +0 -0
- /data/vendor/libgit2/src/{xdiff → libgit2/xdiff}/xutils.h +0 -0
- /data/vendor/libgit2/src/{alloc.c → util/alloc.c} +0 -0
- /data/vendor/libgit2/src/{alloc.h → util/alloc.h} +0 -0
- /data/vendor/libgit2/src/{allocators → util/allocators}/failalloc.c +0 -0
- /data/vendor/libgit2/src/{allocators → util/allocators}/stdalloc.c +0 -0
- /data/vendor/libgit2/src/{allocators → util/allocators}/win32_leakcheck.c +0 -0
- /data/vendor/libgit2/src/{bitvec.h → util/bitvec.h} +0 -0
- /data/vendor/libgit2/src/{hash/sha1 → util/hash}/sha1dc/sha1.h +0 -0
- /data/vendor/libgit2/src/{hash/sha1 → util/hash}/sha1dc/ubc_check.c +0 -0
- /data/vendor/libgit2/src/{hash/sha1 → util/hash}/sha1dc/ubc_check.h +0 -0
- /data/vendor/libgit2/src/{integer.h → util/integer.h} +0 -0
- /data/vendor/libgit2/src/{pool.c → util/pool.c} +0 -0
- /data/vendor/libgit2/src/{pqueue.c → util/pqueue.c} +0 -0
- /data/vendor/libgit2/src/{strmap.c → util/strmap.c} +0 -0
- /data/vendor/libgit2/src/{strnlen.h → util/strnlen.h} +0 -0
- /data/vendor/libgit2/src/{unix → util/unix}/pthread.h +0 -0
- /data/vendor/libgit2/src/{varint.c → util/varint.c} +0 -0
- /data/vendor/libgit2/src/{vector.c → util/vector.c} +0 -0
- /data/vendor/libgit2/src/{wildmatch.c → util/wildmatch.c} +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/dir.c +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/error.c +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/mingw-compat.h +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/msvc-compat.h +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/reparse.h +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/thread.c +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/utf-conv.c +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/version.h +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/w32_common.h +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/w32_util.c +0 -0
- /data/vendor/libgit2/src/{win32 → util/win32}/win32-compat.h +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
/* zlib.h -- interface of the 'zlib' general purpose compression library
|
2
|
-
version 1.2.
|
2
|
+
version 1.2.12, March 11th, 2022
|
3
3
|
|
4
|
-
Copyright (C) 1995-
|
4
|
+
Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
|
5
5
|
|
6
6
|
This software is provided 'as-is', without any express or implied
|
7
7
|
warranty. In no event will the authors be held liable for any damages
|
@@ -37,11 +37,11 @@
|
|
37
37
|
extern "C" {
|
38
38
|
#endif
|
39
39
|
|
40
|
-
#define ZLIB_VERSION "1.2.
|
41
|
-
#define ZLIB_VERNUM
|
40
|
+
#define ZLIB_VERSION "1.2.12"
|
41
|
+
#define ZLIB_VERNUM 0x12c0
|
42
42
|
#define ZLIB_VER_MAJOR 1
|
43
43
|
#define ZLIB_VER_MINOR 2
|
44
|
-
#define ZLIB_VER_REVISION
|
44
|
+
#define ZLIB_VER_REVISION 12
|
45
45
|
#define ZLIB_VER_SUBREVISION 0
|
46
46
|
|
47
47
|
/*
|
@@ -543,8 +543,7 @@ ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm,
|
|
543
543
|
int strategy));
|
544
544
|
|
545
545
|
This is another version of deflateInit with more compression options. The
|
546
|
-
fields
|
547
|
-
caller.
|
546
|
+
fields zalloc, zfree and opaque must be initialized before by the caller.
|
548
547
|
|
549
548
|
The method parameter is the compression method. It must be Z_DEFLATED in
|
550
549
|
this version of the library.
|
@@ -712,11 +711,12 @@ ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
|
|
712
711
|
used to switch between compression and straight copy of the input data, or
|
713
712
|
to switch to a different kind of input data requiring a different strategy.
|
714
713
|
If the compression approach (which is a function of the level) or the
|
715
|
-
strategy is changed, and if
|
716
|
-
|
717
|
-
level and strategy using deflate(strm, Z_BLOCK).
|
718
|
-
for the compression levels 0, 1..3, and 4..9
|
719
|
-
and strategy will take effect at the next call
|
714
|
+
strategy is changed, and if there have been any deflate() calls since the
|
715
|
+
state was initialized or reset, then the input available so far is
|
716
|
+
compressed with the old level and strategy using deflate(strm, Z_BLOCK).
|
717
|
+
There are three approaches for the compression levels 0, 1..3, and 4..9
|
718
|
+
respectively. The new level and strategy will take effect at the next call
|
719
|
+
of deflate().
|
720
720
|
|
721
721
|
If a deflate(strm, Z_BLOCK) is performed by deflateParams(), and it does
|
722
722
|
not have enough output space to complete, then the parameter change will not
|
@@ -865,9 +865,11 @@ ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm,
|
|
865
865
|
detection, or add 16 to decode only the gzip format (the zlib format will
|
866
866
|
return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
|
867
867
|
CRC-32 instead of an Adler-32. Unlike the gunzip utility and gzread() (see
|
868
|
-
below), inflate() will not automatically decode concatenated gzip
|
869
|
-
inflate() will return Z_STREAM_END at the end of the gzip
|
870
|
-
would need to be reset to continue decoding a subsequent gzip
|
868
|
+
below), inflate() will *not* automatically decode concatenated gzip members.
|
869
|
+
inflate() will return Z_STREAM_END at the end of the gzip member. The state
|
870
|
+
would need to be reset to continue decoding a subsequent gzip member. This
|
871
|
+
*must* be done if there is more data after a gzip member, in order for the
|
872
|
+
decompression to be compliant with the gzip standard (RFC 1952).
|
871
873
|
|
872
874
|
inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
|
873
875
|
memory, Z_VERSION_ERROR if the zlib library version is incompatible with the
|
@@ -1302,14 +1304,14 @@ typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */
|
|
1302
1304
|
/*
|
1303
1305
|
ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
|
1304
1306
|
|
1305
|
-
|
1306
|
-
in fopen ("rb" or "wb")
|
1307
|
-
|
1308
|
-
|
1309
|
-
for
|
1310
|
-
|
1311
|
-
|
1312
|
-
the gzip format.
|
1307
|
+
Open the gzip (.gz) file at path for reading and decompressing, or
|
1308
|
+
compressing and writing. The mode parameter is as in fopen ("rb" or "wb")
|
1309
|
+
but can also include a compression level ("wb9") or a strategy: 'f' for
|
1310
|
+
filtered data as in "wb6f", 'h' for Huffman-only compression as in "wb1h",
|
1311
|
+
'R' for run-length encoding as in "wb1R", or 'F' for fixed code compression
|
1312
|
+
as in "wb9F". (See the description of deflateInit2 for more information
|
1313
|
+
about the strategy parameter.) 'T' will request transparent writing or
|
1314
|
+
appending with no compression and not using the gzip format.
|
1313
1315
|
|
1314
1316
|
"a" can be used instead of "w" to request that the gzip stream that will
|
1315
1317
|
be written be appended to the file. "+" will result in an error, since
|
@@ -1339,9 +1341,9 @@ ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
|
|
1339
1341
|
|
1340
1342
|
ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
|
1341
1343
|
/*
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1344
|
+
Associate a gzFile with the file descriptor fd. File descriptors are
|
1345
|
+
obtained from calls like open, dup, creat, pipe or fileno (if the file has
|
1346
|
+
been previously opened with fopen). The mode parameter is as in gzopen.
|
1345
1347
|
|
1346
1348
|
The next call of gzclose on the returned gzFile will also close the file
|
1347
1349
|
descriptor fd, just like fclose(fdopen(fd, mode)) closes the file descriptor
|
@@ -1362,13 +1364,13 @@ ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
|
|
1362
1364
|
|
1363
1365
|
ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
|
1364
1366
|
/*
|
1365
|
-
Set the internal buffer size used by this library's functions
|
1366
|
-
default buffer size is 8192 bytes. This function must be called
|
1367
|
-
gzopen() or gzdopen(), and before any other calls that read or write
|
1368
|
-
file. The buffer memory allocation is always deferred to the first read
|
1369
|
-
write. Three times that size in buffer space is allocated. A larger
|
1370
|
-
size of, for example, 64K or 128K bytes will noticeably increase the
|
1371
|
-
of decompression (reading).
|
1367
|
+
Set the internal buffer size used by this library's functions for file to
|
1368
|
+
size. The default buffer size is 8192 bytes. This function must be called
|
1369
|
+
after gzopen() or gzdopen(), and before any other calls that read or write
|
1370
|
+
the file. The buffer memory allocation is always deferred to the first read
|
1371
|
+
or write. Three times that size in buffer space is allocated. A larger
|
1372
|
+
buffer size of, for example, 64K or 128K bytes will noticeably increase the
|
1373
|
+
speed of decompression (reading).
|
1372
1374
|
|
1373
1375
|
The new buffer size also affects the maximum length for gzprintf().
|
1374
1376
|
|
@@ -1378,9 +1380,9 @@ ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
|
|
1378
1380
|
|
1379
1381
|
ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
|
1380
1382
|
/*
|
1381
|
-
Dynamically update the compression level
|
1382
|
-
of deflateInit2 for the meaning of these parameters.
|
1383
|
-
data is flushed before the parameter
|
1383
|
+
Dynamically update the compression level and strategy for file. See the
|
1384
|
+
description of deflateInit2 for the meaning of these parameters. Previously
|
1385
|
+
provided data is flushed before applying the parameter changes.
|
1384
1386
|
|
1385
1387
|
gzsetparams returns Z_OK if success, Z_STREAM_ERROR if the file was not
|
1386
1388
|
opened for writing, Z_ERRNO if there is an error writing the flushed data,
|
@@ -1389,7 +1391,7 @@ ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
|
|
1389
1391
|
|
1390
1392
|
ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
|
1391
1393
|
/*
|
1392
|
-
|
1394
|
+
Read and decompress up to len uncompressed bytes from file into buf. If
|
1393
1395
|
the input file is not in gzip format, gzread copies the given number of
|
1394
1396
|
bytes into the buffer directly from the file.
|
1395
1397
|
|
@@ -1420,11 +1422,11 @@ ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
|
|
1420
1422
|
ZEXTERN z_size_t ZEXPORT gzfread OF((voidp buf, z_size_t size, z_size_t nitems,
|
1421
1423
|
gzFile file));
|
1422
1424
|
/*
|
1423
|
-
Read up to nitems items of size size from file
|
1424
|
-
as gzread() does. This duplicates the interface of
|
1425
|
-
size_t request and return types. If the library
|
1426
|
-
z_size_t is identical to size_t. If not, then z_size_t
|
1427
|
-
integer type that can contain a pointer.
|
1425
|
+
Read and decompress up to nitems items of size size from file into buf,
|
1426
|
+
otherwise operating as gzread() does. This duplicates the interface of
|
1427
|
+
stdio's fread(), with size_t request and return types. If the library
|
1428
|
+
defines size_t, then z_size_t is identical to size_t. If not, then z_size_t
|
1429
|
+
is an unsigned integer type that can contain a pointer.
|
1428
1430
|
|
1429
1431
|
gzfread() returns the number of full items read of size size, or zero if
|
1430
1432
|
the end of the file was reached and a full item could not be read, or if
|
@@ -1443,18 +1445,16 @@ ZEXTERN z_size_t ZEXPORT gzfread OF((voidp buf, z_size_t size, z_size_t nitems,
|
|
1443
1445
|
file, reseting and retrying on end-of-file, when size is not 1.
|
1444
1446
|
*/
|
1445
1447
|
|
1446
|
-
ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
|
1447
|
-
voidpc buf, unsigned len));
|
1448
|
+
ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len));
|
1448
1449
|
/*
|
1449
|
-
|
1450
|
-
|
1451
|
-
error.
|
1450
|
+
Compress and write the len uncompressed bytes at buf to file. gzwrite
|
1451
|
+
returns the number of uncompressed bytes written or 0 in case of error.
|
1452
1452
|
*/
|
1453
1453
|
|
1454
1454
|
ZEXTERN z_size_t ZEXPORT gzfwrite OF((voidpc buf, z_size_t size,
|
1455
1455
|
z_size_t nitems, gzFile file));
|
1456
1456
|
/*
|
1457
|
-
|
1457
|
+
Compress and write nitems items of size size from buf to file, duplicating
|
1458
1458
|
the interface of stdio's fwrite(), with size_t request and return types. If
|
1459
1459
|
the library defines size_t, then z_size_t is identical to size_t. If not,
|
1460
1460
|
then z_size_t is an unsigned integer type that can contain a pointer.
|
@@ -1467,22 +1467,22 @@ ZEXTERN z_size_t ZEXPORT gzfwrite OF((voidpc buf, z_size_t size,
|
|
1467
1467
|
|
1468
1468
|
ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
|
1469
1469
|
/*
|
1470
|
-
|
1471
|
-
control of the format
|
1470
|
+
Convert, format, compress, and write the arguments (...) to file under
|
1471
|
+
control of the string format, as in fprintf. gzprintf returns the number of
|
1472
1472
|
uncompressed bytes actually written, or a negative zlib error code in case
|
1473
1473
|
of error. The number of uncompressed bytes written is limited to 8191, or
|
1474
1474
|
one less than the buffer size given to gzbuffer(). The caller should assure
|
1475
1475
|
that this limit is not exceeded. If it is exceeded, then gzprintf() will
|
1476
1476
|
return an error (0) with nothing written. In this case, there may also be a
|
1477
1477
|
buffer overflow with unpredictable consequences, which is possible only if
|
1478
|
-
zlib was compiled with the insecure functions sprintf() or vsprintf()
|
1478
|
+
zlib was compiled with the insecure functions sprintf() or vsprintf(),
|
1479
1479
|
because the secure snprintf() or vsnprintf() functions were not available.
|
1480
1480
|
This can be determined using zlibCompileFlags().
|
1481
1481
|
*/
|
1482
1482
|
|
1483
1483
|
ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
|
1484
1484
|
/*
|
1485
|
-
|
1485
|
+
Compress and write the given null-terminated string s to file, excluding
|
1486
1486
|
the terminating null character.
|
1487
1487
|
|
1488
1488
|
gzputs returns the number of characters written, or -1 in case of error.
|
@@ -1490,11 +1490,12 @@ ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
|
|
1490
1490
|
|
1491
1491
|
ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
|
1492
1492
|
/*
|
1493
|
-
|
1494
|
-
newline character is read and transferred to buf, or an
|
1495
|
-
condition is encountered. If any characters are read or if len
|
1496
|
-
string is terminated with a null character. If no characters
|
1497
|
-
to an end-of-file or len
|
1493
|
+
Read and decompress bytes from file into buf, until len-1 characters are
|
1494
|
+
read, or until a newline character is read and transferred to buf, or an
|
1495
|
+
end-of-file condition is encountered. If any characters are read or if len
|
1496
|
+
is one, the string is terminated with a null character. If no characters
|
1497
|
+
are read due to an end-of-file or len is less than one, then the buffer is
|
1498
|
+
left untouched.
|
1498
1499
|
|
1499
1500
|
gzgets returns buf which is a null-terminated string, or it returns NULL
|
1500
1501
|
for end-of-file or in case of error. If there was an error, the contents at
|
@@ -1503,13 +1504,13 @@ ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
|
|
1503
1504
|
|
1504
1505
|
ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
|
1505
1506
|
/*
|
1506
|
-
|
1507
|
+
Compress and write c, converted to an unsigned char, into file. gzputc
|
1507
1508
|
returns the value that was written, or -1 in case of error.
|
1508
1509
|
*/
|
1509
1510
|
|
1510
1511
|
ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
|
1511
1512
|
/*
|
1512
|
-
|
1513
|
+
Read and decompress one byte from file. gzgetc returns this byte or -1
|
1513
1514
|
in case of end of file or error. This is implemented as a macro for speed.
|
1514
1515
|
As such, it does not do all of the checking the other functions do. I.e.
|
1515
1516
|
it does not check to see if file is NULL, nor whether the structure file
|
@@ -1518,8 +1519,8 @@ ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
|
|
1518
1519
|
|
1519
1520
|
ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
|
1520
1521
|
/*
|
1521
|
-
Push
|
1522
|
-
|
1522
|
+
Push c back onto the stream for file to be read as the first character on
|
1523
|
+
the next read. At least one character of push-back is always allowed.
|
1523
1524
|
gzungetc() returns the character pushed, or -1 on failure. gzungetc() will
|
1524
1525
|
fail if c is -1, and may fail if a character has been pushed but not read
|
1525
1526
|
yet. If gzungetc is used immediately after gzopen or gzdopen, at least the
|
@@ -1530,9 +1531,9 @@ ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
|
|
1530
1531
|
|
1531
1532
|
ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
|
1532
1533
|
/*
|
1533
|
-
|
1534
|
-
|
1535
|
-
|
1534
|
+
Flush all pending output to file. The parameter flush is as in the
|
1535
|
+
deflate() function. The return value is the zlib error number (see function
|
1536
|
+
gzerror below). gzflush is only permitted when writing.
|
1536
1537
|
|
1537
1538
|
If the flush parameter is Z_FINISH, the remaining data is written and the
|
1538
1539
|
gzip stream is completed in the output. If gzwrite() is called again, a new
|
@@ -1547,8 +1548,8 @@ ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
|
|
1547
1548
|
ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
|
1548
1549
|
z_off_t offset, int whence));
|
1549
1550
|
|
1550
|
-
|
1551
|
-
|
1551
|
+
Set the starting position to offset relative to whence for the next gzread
|
1552
|
+
or gzwrite on file. The offset represents a number of bytes in the
|
1552
1553
|
uncompressed data stream. The whence parameter is defined as in lseek(2);
|
1553
1554
|
the value SEEK_END is not supported.
|
1554
1555
|
|
@@ -1565,18 +1566,18 @@ ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
|
|
1565
1566
|
|
1566
1567
|
ZEXTERN int ZEXPORT gzrewind OF((gzFile file));
|
1567
1568
|
/*
|
1568
|
-
|
1569
|
+
Rewind file. This function is supported only for reading.
|
1569
1570
|
|
1570
|
-
gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET)
|
1571
|
+
gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET).
|
1571
1572
|
*/
|
1572
1573
|
|
1573
1574
|
/*
|
1574
1575
|
ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
|
1575
1576
|
|
1576
|
-
|
1577
|
-
|
1578
|
-
|
1579
|
-
|
1577
|
+
Return the starting position for the next gzread or gzwrite on file.
|
1578
|
+
This position represents a number of bytes in the uncompressed data stream,
|
1579
|
+
and is zero when starting, even if appending or reading a gzip stream from
|
1580
|
+
the middle of a file using gzdopen().
|
1580
1581
|
|
1581
1582
|
gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR)
|
1582
1583
|
*/
|
@@ -1584,22 +1585,22 @@ ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
|
|
1584
1585
|
/*
|
1585
1586
|
ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file));
|
1586
1587
|
|
1587
|
-
|
1588
|
-
includes the count of bytes that precede the gzip stream, for example
|
1589
|
-
appending or when using gzdopen() for reading. When reading, the
|
1590
|
-
does not include as yet unused buffered input. This information can
|
1591
|
-
for a progress indicator. On error, gzoffset() returns -1.
|
1588
|
+
Return the current compressed (actual) read or write offset of file. This
|
1589
|
+
offset includes the count of bytes that precede the gzip stream, for example
|
1590
|
+
when appending or when using gzdopen() for reading. When reading, the
|
1591
|
+
offset does not include as yet unused buffered input. This information can
|
1592
|
+
be used for a progress indicator. On error, gzoffset() returns -1.
|
1592
1593
|
*/
|
1593
1594
|
|
1594
1595
|
ZEXTERN int ZEXPORT gzeof OF((gzFile file));
|
1595
1596
|
/*
|
1596
|
-
|
1597
|
-
false (0) otherwise. Note that the end-of-file indicator is set
|
1598
|
-
read tried to go past the end of the input, but came up short.
|
1599
|
-
just like feof(), gzeof() may return false even if there is no
|
1600
|
-
read, in the event that the last read request was for the exact
|
1601
|
-
bytes remaining in the input file. This will happen if the input
|
1602
|
-
is an exact multiple of the buffer size.
|
1597
|
+
Return true (1) if the end-of-file indicator for file has been set while
|
1598
|
+
reading, false (0) otherwise. Note that the end-of-file indicator is set
|
1599
|
+
only if the read tried to go past the end of the input, but came up short.
|
1600
|
+
Therefore, just like feof(), gzeof() may return false even if there is no
|
1601
|
+
more data to read, in the event that the last read request was for the exact
|
1602
|
+
number of bytes remaining in the input file. This will happen if the input
|
1603
|
+
file size is an exact multiple of the buffer size.
|
1603
1604
|
|
1604
1605
|
If gzeof() returns true, then the read functions will return no more data,
|
1605
1606
|
unless the end-of-file indicator is reset by gzclearerr() and the input file
|
@@ -1608,7 +1609,7 @@ ZEXTERN int ZEXPORT gzeof OF((gzFile file));
|
|
1608
1609
|
|
1609
1610
|
ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
|
1610
1611
|
/*
|
1611
|
-
|
1612
|
+
Return true (1) if file is being copied directly while reading, or false
|
1612
1613
|
(0) if file is a gzip stream being decompressed.
|
1613
1614
|
|
1614
1615
|
If the input file is empty, gzdirect() will return true, since the input
|
@@ -1629,8 +1630,8 @@ ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
|
|
1629
1630
|
|
1630
1631
|
ZEXTERN int ZEXPORT gzclose OF((gzFile file));
|
1631
1632
|
/*
|
1632
|
-
|
1633
|
-
|
1633
|
+
Flush all pending output for file, if necessary, close file and
|
1634
|
+
deallocate the (de)compression state. Note that once file is closed, you
|
1634
1635
|
cannot call gzerror with file, since its structures have been deallocated.
|
1635
1636
|
gzclose must not be called more than once on the same file, just as free
|
1636
1637
|
must not be called more than once on the same allocation.
|
@@ -1654,10 +1655,10 @@ ZEXTERN int ZEXPORT gzclose_w OF((gzFile file));
|
|
1654
1655
|
|
1655
1656
|
ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
|
1656
1657
|
/*
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
-
|
1658
|
+
Return the error message for the last error which occurred on file.
|
1659
|
+
errnum is set to zlib error number. If an error occurred in the file system
|
1660
|
+
and not in the compression library, errnum is set to Z_ERRNO and the
|
1661
|
+
application may consult errno to get the exact error code.
|
1661
1662
|
|
1662
1663
|
The application must not modify the returned string. Future calls to
|
1663
1664
|
this function may invalidate the previously returned string. If file is
|
@@ -1670,7 +1671,7 @@ ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
|
|
1670
1671
|
|
1671
1672
|
ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));
|
1672
1673
|
/*
|
1673
|
-
|
1674
|
+
Clear the error and end-of-file flags for file. This is analogous to the
|
1674
1675
|
clearerr() function in stdio. This is useful for continuing to read a gzip
|
1675
1676
|
file that is being written concurrently.
|
1676
1677
|
*/
|
@@ -1688,8 +1689,9 @@ ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));
|
|
1688
1689
|
ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
|
1689
1690
|
/*
|
1690
1691
|
Update a running Adler-32 checksum with the bytes buf[0..len-1] and
|
1691
|
-
return the updated checksum.
|
1692
|
-
|
1692
|
+
return the updated checksum. An Adler-32 value is in the range of a 32-bit
|
1693
|
+
unsigned integer. If buf is Z_NULL, this function returns the required
|
1694
|
+
initial value for the checksum.
|
1693
1695
|
|
1694
1696
|
An Adler-32 checksum is almost as reliable as a CRC-32 but can be computed
|
1695
1697
|
much faster.
|
@@ -1722,12 +1724,13 @@ ZEXTERN uLong ZEXPORT adler32_combine OF((uLong adler1, uLong adler2,
|
|
1722
1724
|
negative, the result has no meaning or utility.
|
1723
1725
|
*/
|
1724
1726
|
|
1725
|
-
ZEXTERN uLong ZEXPORT crc32
|
1727
|
+
ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
|
1726
1728
|
/*
|
1727
1729
|
Update a running CRC-32 with the bytes buf[0..len-1] and return the
|
1728
|
-
updated CRC-32.
|
1729
|
-
|
1730
|
-
|
1730
|
+
updated CRC-32. A CRC-32 value is in the range of a 32-bit unsigned integer.
|
1731
|
+
If buf is Z_NULL, this function returns the required initial value for the
|
1732
|
+
crc. Pre- and post-conditioning (one's complement) is performed within this
|
1733
|
+
function so it shouldn't be done by the application.
|
1731
1734
|
|
1732
1735
|
Usage example:
|
1733
1736
|
|
@@ -1739,7 +1742,7 @@ ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
|
|
1739
1742
|
if (crc != original_crc) error();
|
1740
1743
|
*/
|
1741
1744
|
|
1742
|
-
ZEXTERN uLong ZEXPORT crc32_z OF((uLong
|
1745
|
+
ZEXTERN uLong ZEXPORT crc32_z OF((uLong crc, const Bytef *buf,
|
1743
1746
|
z_size_t len));
|
1744
1747
|
/*
|
1745
1748
|
Same as crc32(), but with a size_t length.
|
@@ -1755,6 +1758,20 @@ ZEXTERN uLong ZEXPORT crc32_combine OF((uLong crc1, uLong crc2, z_off_t len2));
|
|
1755
1758
|
len2.
|
1756
1759
|
*/
|
1757
1760
|
|
1761
|
+
/*
|
1762
|
+
ZEXTERN uLong ZEXPORT crc32_combine_gen OF((z_off_t len2));
|
1763
|
+
|
1764
|
+
Return the operator corresponding to length len2, to be used with
|
1765
|
+
crc32_combine_op().
|
1766
|
+
*/
|
1767
|
+
|
1768
|
+
ZEXTERN uLong ZEXPORT crc32_combine_op OF((uLong crc1, uLong crc2, uLong op));
|
1769
|
+
/*
|
1770
|
+
Give the same result as crc32_combine(), using op in place of len2. op is
|
1771
|
+
is generated from len2 by crc32_combine_gen(). This will be faster than
|
1772
|
+
crc32_combine() if the generated op is used more than once.
|
1773
|
+
*/
|
1774
|
+
|
1758
1775
|
|
1759
1776
|
/* various hacks, don't look :) */
|
1760
1777
|
|
@@ -1842,6 +1859,7 @@ ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file)); /* backward compatibility */
|
|
1842
1859
|
ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
|
1843
1860
|
ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
|
1844
1861
|
ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
|
1862
|
+
ZEXTERN uLong ZEXPORT crc32_combine_gen64 OF((z_off64_t));
|
1845
1863
|
#endif
|
1846
1864
|
|
1847
1865
|
#if !defined(ZLIB_INTERNAL) && defined(Z_WANT64)
|
@@ -1852,6 +1870,7 @@ ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file)); /* backward compatibility */
|
|
1852
1870
|
# define z_gzoffset z_gzoffset64
|
1853
1871
|
# define z_adler32_combine z_adler32_combine64
|
1854
1872
|
# define z_crc32_combine z_crc32_combine64
|
1873
|
+
# define z_crc32_combine_gen z_crc32_combine_gen64
|
1855
1874
|
# else
|
1856
1875
|
# define gzopen gzopen64
|
1857
1876
|
# define gzseek gzseek64
|
@@ -1859,6 +1878,7 @@ ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file)); /* backward compatibility */
|
|
1859
1878
|
# define gzoffset gzoffset64
|
1860
1879
|
# define adler32_combine adler32_combine64
|
1861
1880
|
# define crc32_combine crc32_combine64
|
1881
|
+
# define crc32_combine_gen crc32_combine_gen64
|
1862
1882
|
# endif
|
1863
1883
|
# ifndef Z_LARGE64
|
1864
1884
|
ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
|
@@ -1867,6 +1887,7 @@ ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file)); /* backward compatibility */
|
|
1867
1887
|
ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile));
|
1868
1888
|
ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
|
1869
1889
|
ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
|
1890
|
+
ZEXTERN uLong ZEXPORT crc32_combine_gen64 OF((z_off_t));
|
1870
1891
|
# endif
|
1871
1892
|
#else
|
1872
1893
|
ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *));
|
@@ -1874,13 +1895,18 @@ ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file)); /* backward compatibility */
|
|
1874
1895
|
ZEXTERN z_off_t ZEXPORT gztell OF((gzFile));
|
1875
1896
|
ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile));
|
1876
1897
|
ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t));
|
1898
|
+
ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
|
1877
1899
|
ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t));
|
1900
|
+
ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
|
1901
|
+
ZEXTERN uLong ZEXPORT crc32_combine_gen OF((z_off_t));
|
1902
|
+
ZEXTERN uLong ZEXPORT crc32_combine_gen64 OF((z_off64_t));
|
1878
1903
|
#endif
|
1879
1904
|
|
1880
1905
|
#else /* Z_SOLO */
|
1881
1906
|
|
1882
1907
|
ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t));
|
1883
1908
|
ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t));
|
1909
|
+
ZEXTERN uLong ZEXPORT crc32_combine_gen OF((z_off_t));
|
1884
1910
|
|
1885
1911
|
#endif /* !Z_SOLO */
|
1886
1912
|
|
@@ -1893,7 +1919,7 @@ ZEXTERN int ZEXPORT inflateValidate OF((z_streamp, int));
|
|
1893
1919
|
ZEXTERN unsigned long ZEXPORT inflateCodesUsed OF ((z_streamp));
|
1894
1920
|
ZEXTERN int ZEXPORT inflateResetKeep OF((z_streamp));
|
1895
1921
|
ZEXTERN int ZEXPORT deflateResetKeep OF((z_streamp));
|
1896
|
-
#if
|
1922
|
+
#if defined(_WIN32) && !defined(Z_SOLO)
|
1897
1923
|
ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
|
1898
1924
|
const char *mode));
|
1899
1925
|
#endif
|
@@ -136,8 +136,8 @@ const char * ZEXPORT zError(err)
|
|
136
136
|
return ERR_MSG(err);
|
137
137
|
}
|
138
138
|
|
139
|
-
#if defined(_WIN32_WCE)
|
140
|
-
/* The Microsoft C Run-Time Library for Windows CE doesn't have
|
139
|
+
#if defined(_WIN32_WCE) && _WIN32_WCE < 0x800
|
140
|
+
/* The older Microsoft C Run-Time Library for Windows CE doesn't have
|
141
141
|
* errno. We define it as a global variable to simplify porting.
|
142
142
|
* Its value is always 0 and should not be used.
|
143
143
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* zutil.h -- internal interface and configuration of the compression library
|
2
|
-
* Copyright (C) 1995-
|
2
|
+
* Copyright (C) 1995-2022 Jean-loup Gailly, Mark Adler
|
3
3
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
4
4
|
*/
|
5
5
|
|
@@ -29,10 +29,6 @@
|
|
29
29
|
# include <stdlib.h>
|
30
30
|
#endif
|
31
31
|
|
32
|
-
#ifdef Z_SOLO
|
33
|
-
typedef long ptrdiff_t; /* guess -- will be caught if guess is wrong */
|
34
|
-
#endif
|
35
|
-
|
36
32
|
#ifndef local
|
37
33
|
# define local static
|
38
34
|
#endif
|
@@ -46,6 +42,17 @@ typedef unsigned short ush;
|
|
46
42
|
typedef ush FAR ushf;
|
47
43
|
typedef unsigned long ulg;
|
48
44
|
|
45
|
+
#if !defined(Z_U8) && !defined(Z_SOLO) && defined(STDC)
|
46
|
+
# include <limits.h>
|
47
|
+
# if (ULONG_MAX == 0xffffffffffffffff)
|
48
|
+
# define Z_U8 unsigned long
|
49
|
+
# elif (ULLONG_MAX == 0xffffffffffffffff)
|
50
|
+
# define Z_U8 unsigned long long
|
51
|
+
# elif (UINT_MAX == 0xffffffffffffffff)
|
52
|
+
# define Z_U8 unsigned
|
53
|
+
# endif
|
54
|
+
#endif
|
55
|
+
|
49
56
|
extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
|
50
57
|
/* (size given to avoid silly warnings with Visual C++) */
|
51
58
|
|
@@ -170,10 +177,6 @@ extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
|
|
170
177
|
#if (defined(_MSC_VER) && (_MSC_VER > 600)) && !defined __INTERIX
|
171
178
|
# if defined(_WIN32_WCE)
|
172
179
|
# define fdopen(fd,mode) NULL /* No fdopen() */
|
173
|
-
# ifndef _PTRDIFF_T_DEFINED
|
174
|
-
typedef int ptrdiff_t;
|
175
|
-
# define _PTRDIFF_T_DEFINED
|
176
|
-
# endif
|
177
180
|
# else
|
178
181
|
# define fdopen(fd,type) _fdopen(fd,type)
|
179
182
|
# endif
|
@@ -32,6 +32,8 @@ GIT_BEGIN_DECL
|
|
32
32
|
*
|
33
33
|
* @param delta The delta to be applied
|
34
34
|
* @param payload User-specified payload
|
35
|
+
* @return 0 if the delta is applied, < 0 if the apply process will be aborted
|
36
|
+
* or > 0 if the delta will not be applied.
|
35
37
|
*/
|
36
38
|
typedef int GIT_CALLBACK(git_apply_delta_cb)(
|
37
39
|
const git_diff_delta *delta,
|
@@ -48,6 +50,8 @@ typedef int GIT_CALLBACK(git_apply_delta_cb)(
|
|
48
50
|
*
|
49
51
|
* @param hunk The hunk to be applied
|
50
52
|
* @param payload User-specified payload
|
53
|
+
* @return 0 if the hunk is applied, < 0 if the apply process will be aborted
|
54
|
+
* or > 0 if the hunk will not be applied.
|
51
55
|
*/
|
52
56
|
typedef int GIT_CALLBACK(git_apply_hunk_cb)(
|
53
57
|
const git_diff_hunk *hunk,
|
@@ -59,7 +63,7 @@ typedef enum {
|
|
59
63
|
* Don't actually make changes, just test that the patch applies.
|
60
64
|
* This is the equivalent of `git apply --check`.
|
61
65
|
*/
|
62
|
-
GIT_APPLY_CHECK = (1 << 0)
|
66
|
+
GIT_APPLY_CHECK = (1 << 0)
|
63
67
|
} git_apply_flags_t;
|
64
68
|
|
65
69
|
/**
|
@@ -89,6 +93,16 @@ typedef struct {
|
|
89
93
|
#define GIT_APPLY_OPTIONS_VERSION 1
|
90
94
|
#define GIT_APPLY_OPTIONS_INIT {GIT_APPLY_OPTIONS_VERSION}
|
91
95
|
|
96
|
+
/**
|
97
|
+
* Initialize git_apply_options structure
|
98
|
+
*
|
99
|
+
* Initialize a `git_apply_options` with default values. Equivalent to creating
|
100
|
+
* an instance with GIT_APPLY_OPTIONS_INIT.
|
101
|
+
*
|
102
|
+
* @param opts The `git_apply_options` struct to initialize.
|
103
|
+
* @param version The struct version; pass `GIT_APPLY_OPTIONS_VERSION`
|
104
|
+
* @return 0 on success or -1 on failure.
|
105
|
+
*/
|
92
106
|
GIT_EXTERN(int) git_apply_options_init(git_apply_options *opts, unsigned int version);
|
93
107
|
|
94
108
|
/**
|
@@ -127,7 +141,7 @@ typedef enum {
|
|
127
141
|
* Apply the patch to both the working directory and the index.
|
128
142
|
* This is the equivalent of `git apply --index`.
|
129
143
|
*/
|
130
|
-
GIT_APPLY_LOCATION_BOTH = 2
|
144
|
+
GIT_APPLY_LOCATION_BOTH = 2
|
131
145
|
} git_apply_location_t;
|
132
146
|
|
133
147
|
/**
|