summaryrefslogtreecommitdiff
path: root/include/git2/proxy.h
Commit message (Collapse)AuthorAgeFilesLines
* credential: change git_cred to git_credentialethomson/credtypeEdward Thomson2020-01-261-2/+2
| | | | | | | | | | | | | | | | We avoid abbreviations where possible; rename git_cred to git_credential. In addition, we have standardized on a trailing `_t` for enum types, instead of using "type" in the name. So `git_credtype_t` has become `git_credential_t` and its members have become `GIT_CREDENTIAL` instead of `GIT_CREDTYPE`. Finally, the source and header files have been renamed to `credential` instead of `cred`. Keep previous name and values as deprecated, and include the new header files from the previous ones.
* cert: move cert enums & struct to its own headerEtienne Samson2019-09-131-1/+3
|
* cred: separate public interface from low-level detailsEtienne Samson2019-09-131-1/+1
|
* Rename opt init functions to `options_init`Edward Thomson2019-06-141-1/+1
| | | | | | | | | | | | | In libgit2 nomenclature, when we need to verb a direct object, we name a function `git_directobject_verb`. Thus, if we need to init an options structure named `git_foo_options`, then the name of the function that does that should be `git_foo_options_init`. The previous names of `git_foo_init_options` is close - it _sounds_ as if it's initializing the options of a `foo`, but in fact `git_foo_options` is its own noun that should be respected. Deprecate the old names; they'll now call directly to the new ones.
* docs: standardize comment block for git_*_init_options functionsEtienne Samson2018-05-071-3/+7
|
* remote/proxy: fix git_transport_certificate_check_db commentCarson Howard2018-03-271-2/+2
|
* proxy: fix typo in documentationPatrick Steinhardt2016-11-011-1/+1
|
* proxy: don't specify the protocol in the typeCarlos Martín Nieto2016-04-191-10/+5
| | | | | | We leave this up to the scheme in the url field. The type should only tell us about whether we want a proxy and whether we want to auto-detect it.
* proxy: add a payload field for the proxy optionsCarlos Martín Nieto2016-04-191-0/+6
| | | | | I don't quite recall what we do in the other places where we use this, but we should pass this payload to the callbacks.
* proxy: introduce a proxy options structCarlos Martín Nieto2016-04-191-0/+91
It is currently unused; it will go into the remote's options.