Sha256: 613934598169deb109de73978a7ff96ca933bf652d036005ce78a731fab128e9

Contents?: true

Size: 766 Bytes

Versions: 4

Compression:

Stored size: 766 Bytes

Contents

/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */

#ifndef INCLUDE_sys_git_remote_h
#define INCLUDE_sys_git_remote_h

/**
 * @file git2/sys/remote.h
 * @brief Low-level remote functionality for custom transports
 * @defgroup git_remote Low-level remote functionality
 * @ingroup Git
 * @{
*/

GIT_BEGIN_DECL

typedef enum {
	/** Remote supports fetching an advertised object by ID. */
	GIT_REMOTE_CAPABILITY_TIP_OID = (1 << 0),

	/** Remote supports fetching an individual reachable object. */
	GIT_REMOTE_CAPABILITY_REACHABLE_OID = (1 << 1),
} git_remote_capability_t;

/** @} */
GIT_END_DECL
#endif

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rugged-1.4.5 vendor/libgit2/include/git2/sys/remote.h
rugged-1.4.4 vendor/libgit2/include/git2/sys/remote.h
rugged-1.4.3 vendor/libgit2/include/git2/sys/remote.h
rugged-1.4.2 vendor/libgit2/include/git2/sys/remote.h