Commit 4d062d25 by Vicent Martí

Merge pull request #1057 from bts/patch-1

Update documentation in remote.h
parents 9d641283 b0b80658
...@@ -51,7 +51,7 @@ GIT_EXTERN(int) git_remote_new(git_remote **out, git_repository *repo, const cha ...@@ -51,7 +51,7 @@ GIT_EXTERN(int) git_remote_new(git_remote **out, git_repository *repo, const cha
* Get the information for a particular remote * Get the information for a particular remote
* *
* @param out pointer to the new remote object * @param out pointer to the new remote object
* @param cfg the repository's configuration * @param repo the associated repository
* @param name the remote's name * @param name the remote's name
* @return 0 or an error code * @return 0 or an error code
*/ */
...@@ -168,8 +168,9 @@ GIT_EXTERN(int) git_remote_connect(git_remote *remote, int direction); ...@@ -168,8 +168,9 @@ GIT_EXTERN(int) git_remote_connect(git_remote *remote, int direction);
* If you a return a non-zero value from the callback, this will stop * If you a return a non-zero value from the callback, this will stop
* looping over the refs. * looping over the refs.
* *
* @param refs where to store the refs
* @param remote the remote * @param remote the remote
* @param list_cb function to call with each ref discovered at the remote
* @param payload additional data to pass to the callback
* @return 0 on success, GIT_EUSER on non-zero callback, or error code * @return 0 on success, GIT_EUSER on non-zero callback, or error code
*/ */
GIT_EXTERN(int) git_remote_ls(git_remote *remote, git_headlist_cb list_cb, void *payload); GIT_EXTERN(int) git_remote_ls(git_remote *remote, git_headlist_cb list_cb, void *payload);
...@@ -201,6 +202,7 @@ GIT_EXTERN(int) git_remote_download( ...@@ -201,6 +202,7 @@ GIT_EXTERN(int) git_remote_download(
* Check whether the remote's underlying transport is connected to the * Check whether the remote's underlying transport is connected to the
* remote host. * remote host.
* *
* @param remote the remote
* @return 1 if it's connected, 0 otherwise. * @return 1 if it's connected, 0 otherwise.
*/ */
GIT_EXTERN(int) git_remote_connected(git_remote *remote); GIT_EXTERN(int) git_remote_connected(git_remote *remote);
...@@ -210,6 +212,8 @@ GIT_EXTERN(int) git_remote_connected(git_remote *remote); ...@@ -210,6 +212,8 @@ GIT_EXTERN(int) git_remote_connected(git_remote *remote);
* *
* At certain points in its operation, the network code checks whether * At certain points in its operation, the network code checks whether
* the operation has been cancelled and if so stops the operation. * the operation has been cancelled and if so stops the operation.
*
* @param remote the remote
*/ */
GIT_EXTERN(void) git_remote_stop(git_remote *remote); GIT_EXTERN(void) git_remote_stop(git_remote *remote);
...@@ -237,7 +241,7 @@ GIT_EXTERN(void) git_remote_free(git_remote *remote); ...@@ -237,7 +241,7 @@ GIT_EXTERN(void) git_remote_free(git_remote *remote);
* Update the tips to the new state * Update the tips to the new state
* *
* @param remote the remote to update * @param remote the remote to update
* @param cb callback to run on each ref update. 'a' is the old value, 'b' is then new value * @return 0 or an error code
*/ */
GIT_EXTERN(int) git_remote_update_tips(git_remote *remote); GIT_EXTERN(int) git_remote_update_tips(git_remote *remote);
...@@ -275,6 +279,7 @@ GIT_EXTERN(int) git_remote_list(git_strarray *remotes_list, git_repository *repo ...@@ -275,6 +279,7 @@ GIT_EXTERN(int) git_remote_list(git_strarray *remotes_list, git_repository *repo
* @param repo the repository in which to create the remote * @param repo the repository in which to create the remote
* @param name the remote's name * @param name the remote's name
* @param url the remote's url * @param url the remote's url
* @return 0 or an error code
*/ */
GIT_EXTERN(int) git_remote_add(git_remote **out, git_repository *repo, const char *name, const char *url); GIT_EXTERN(int) git_remote_add(git_remote **out, git_repository *repo, const char *name, const char *url);
...@@ -293,7 +298,8 @@ GIT_EXTERN(void) git_remote_check_cert(git_remote *remote, int check); ...@@ -293,7 +298,8 @@ GIT_EXTERN(void) git_remote_check_cert(git_remote *remote, int check);
* failure so that retry can be performed. * failure so that retry can be performed.
* *
* @param remote the remote to configure * @param remote the remote to configure
* @param The credentials acquisition callback to use (defaults to NULL) * @param cred_acquire_cb The credentials acquisition callback to use (defaults
* to NULL)
*/ */
GIT_EXTERN(void) git_remote_set_cred_acquire_cb( GIT_EXTERN(void) git_remote_set_cred_acquire_cb(
git_remote *remote, git_remote *remote,
...@@ -309,6 +315,7 @@ GIT_EXTERN(void) git_remote_set_cred_acquire_cb( ...@@ -309,6 +315,7 @@ GIT_EXTERN(void) git_remote_set_cred_acquire_cb(
* *
* @param remote the remote to configure * @param remote the remote to configure
* @param transport the transport object for the remote to use * @param transport the transport object for the remote to use
* @return 0 or an error code
*/ */
GIT_EXTERN(int) git_remote_set_transport( GIT_EXTERN(int) git_remote_set_transport(
git_remote *remote, git_remote *remote,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment