diff options
author | zeripath <art27@cantab.net> | 2021-06-30 21:58:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-30 22:58:45 +0200 |
commit | 99799832835aae6a8641112cb71eb87baef32afa (patch) | |
tree | a9dd27526f1431f8c7e317a32cb9eae19c8dc993 /vendor/golang.org | |
parent | 4f26e0ac0ea32968e94403e16cb776e7a4e5e690 (diff) | |
download | gitea-99799832835aae6a8641112cb71eb87baef32afa.tar.gz gitea-99799832835aae6a8641112cb71eb87baef32afa.zip |
Update Go-Git to take advantage of LargeObjectThreshold (#16316)
Following the merging of https://github.com/go-git/go-git/pull/330 we
can now add a setting to avoid go-git reading and caching large objects.
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'vendor/golang.org')
-rw-r--r-- | vendor/golang.org/x/sys/unix/ztypes_linux.go | 2 | ||||
-rw-r--r-- | vendor/golang.org/x/sys/windows/types_windows.go | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux.go b/vendor/golang.org/x/sys/unix/ztypes_linux.go index 72887abe55..c9d7eb41e3 100644 --- a/vendor/golang.org/x/sys/unix/ztypes_linux.go +++ b/vendor/golang.org/x/sys/unix/ztypes_linux.go @@ -1773,6 +1773,8 @@ const ( NFPROTO_NUMPROTO = 0xd ) +const SO_ORIGINAL_DST = 0x50 + type Nfgenmsg struct { Nfgen_family uint8 Version uint8 diff --git a/vendor/golang.org/x/sys/windows/types_windows.go b/vendor/golang.org/x/sys/windows/types_windows.go index 1f733398ee..17f03312df 100644 --- a/vendor/golang.org/x/sys/windows/types_windows.go +++ b/vendor/golang.org/x/sys/windows/types_windows.go @@ -680,7 +680,7 @@ const ( WTD_CHOICE_CERT = 5 WTD_STATEACTION_IGNORE = 0x00000000 - WTD_STATEACTION_VERIFY = 0x00000010 + WTD_STATEACTION_VERIFY = 0x00000001 WTD_STATEACTION_CLOSE = 0x00000002 WTD_STATEACTION_AUTO_CACHE = 0x00000003 WTD_STATEACTION_AUTO_CACHE_FLUSH = 0x00000004 |