diff options
Diffstat (limited to 'include/git2/common.h')
| -rw-r--r-- | include/git2/common.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/git2/common.h b/include/git2/common.h index 438198295..947e40845 100644 --- a/include/git2/common.h +++ b/include/git2/common.h @@ -203,7 +203,8 @@ typedef enum { GIT_OPT_ENABLE_UNSAVED_INDEX_SAFETY, GIT_OPT_GET_PACK_MAX_OBJECTS, GIT_OPT_SET_PACK_MAX_OBJECTS, - GIT_OPT_DISABLE_PACK_KEEP_FILE_CHECKS + GIT_OPT_DISABLE_PACK_KEEP_FILE_CHECKS, + GIT_OPT_ENABLE_HTTP_EXPECT_CONTINUE } git_libgit2_opt_t; /** @@ -397,6 +398,11 @@ typedef enum { * > This will cause .keep file existence checks to be skipped when * > accessing packfiles, which can help performance with remote filesystems. * + * opts(GIT_OPT_ENABLE_HTTP_EXPECT_CONTINUE, int enabled) + * > When connecting to a server using NTLM or Negotiate + * > authentication, use expect/continue when POSTing data. + * > This option is not available on Windows. + * * @param option Option key * @param ... value to set the option * @return 0 on success, <0 on failure |
