summaryrefslogtreecommitdiff
path: root/http.h
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2023-02-06 09:29:44 +0100
committerJohannes Schindelin <johannes.schindelin@gmx.de>2023-02-06 09:29:44 +0100
commit6a53a59bf9986f99c1a8dd0f36e2b9d6033e89f2 (patch)
tree5391438b7b4b9604f97599b6b32451c8128f8714 /http.h
parentc508c30968a54913b1c1f08fcfccd6593a74544a (diff)
parent91da4a29e168ab465beb713fca4d389193f8f16c (diff)
downloadgit-6a53a59bf9986f99c1a8dd0f36e2b9d6033e89f2.tar.xz
Sync with 2.34.7
* maint-2.34: Git 2.34.7 http: support CURLOPT_PROTOCOLS_STR http: prefer CURLOPT_SEEKFUNCTION to CURLOPT_IOCTLFUNCTION http-push: prefer CURLOPT_UPLOAD to CURLOPT_PUT Git 2.33.7 Git 2.32.6 Git 2.31.7 Git 2.30.8 apply: fix writing behind newly created symbolic links dir-iterator: prevent top-level symlinks without FOLLOW_SYMLINKS clone: delay picking a transport until after get_repo_path() t5619: demonstrate clone_local() with ambiguous transport
Diffstat (limited to 'http.h')
-rw-r--r--http.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/http.h b/http.h
index df1590e53a..77e0520582 100644
--- a/http.h
+++ b/http.h
@@ -40,7 +40,7 @@ struct buffer {
size_t fread_buffer(char *ptr, size_t eltsize, size_t nmemb, void *strbuf);
size_t fwrite_buffer(char *ptr, size_t eltsize, size_t nmemb, void *strbuf);
size_t fwrite_null(char *ptr, size_t eltsize, size_t nmemb, void *strbuf);
-curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp);
+int seek_buffer(void *clientp, curl_off_t offset, int origin);
/* Slot lifecycle functions */
struct active_request_slot *get_active_slot(void);