summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlhchavez <lhchavez@lhchavez.com>2022-04-14 07:18:06 -0700
committerlhchavez <lhchavez@lhchavez.com>2022-04-14 07:20:56 -0700
commit88f24384525d56e8a17cd19efcace7f01a8f26ac (patch)
tree7e34c284659b2495fab3182f487ed54b8349e401
parent63970244fb2d49794e7b5d268a2defe4299fd3ad (diff)
downloadlibgit2-88f24384525d56e8a17cd19efcace7f01a8f26ac.tar.gz
remote: Delete a now-inexistent API declaration
6fc6eeb66c40310086c8f059cae41de69ad4c6da replaced the remote options with `git_remote_connect_options`. The function definitions were removed, but one function declaration remained, causing linker errors if one tried to use it. This change removes the declaration of `git_transport_smart_proxy_option` to better reflect reality.
-rw-r--r--include/git2/sys/transport.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/git2/sys/transport.h b/include/git2/sys/transport.h
index f0c2a3eab..ba73b41a0 100644
--- a/include/git2/sys/transport.h
+++ b/include/git2/sys/transport.h
@@ -260,16 +260,6 @@ GIT_EXTERN(int) git_transport_smart_certificate_check(git_transport *transport,
*/
GIT_EXTERN(int) git_transport_smart_credentials(git_credential **out, git_transport *transport, const char *user, int methods);
-/**
- * Get a copy of the proxy options
- *
- * The url is copied and must be freed by the caller.
- *
- * @param out options struct to fill
- * @param transport the transport to extract the data from.
- */
-GIT_EXTERN(int) git_transport_smart_proxy_options(git_proxy_options *out, git_transport *transport);
-
/*
*** End of base transport interface ***
*** Begin interface for subtransports for the smart transport ***