mirror of
				https://git.proxmox.com/git/libgit2
				synced 2025-11-03 23:45:05 +00:00 
			
		
		
		
	* Move the transport registration mechanisms into a new header under 'sys/' because this is advanced stuff. * Remove the 'priority' argument from the registration as it adds unnecessary complexity. (Since transports cannot decline to operate, only the highest priority transport is ever executed.) Users who require per-priority transports can implement that in their custom transport themselves. * Simplify registration further by taking a scheme (eg "http") instead of a prefix (eg "http://").
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "clar_libgit2.h"
 | 
						|
 | 
						|
#include "git2/clone.h"
 | 
						|
#include "git2/transport.h"
 | 
						|
#include "git2/sys/transport.h"
 | 
						|
#include "fileops.h"
 | 
						|
 | 
						|
static int custom_transport(
 | 
						|
	git_transport **out,
 | 
						|
	git_remote *owner,
 | 
						|
	void *payload)
 | 
						|
{
 | 
						|
	*((int*)payload) = 1;
 | 
						|
 | 
						|
	return git_transport_local(out, owner, payload);
 | 
						|
}
 | 
						|
 | 
						|
static int custom_transport_remote_create(
 | 
						|
	git_remote **out,
 | 
						|
	git_repository *repo,
 | 
						|
	const char *name,
 | 
						|
	const char *url,
 | 
						|
	void *payload)
 | 
						|
{
 | 
						|
	int error;
 | 
						|
 | 
						|
	if ((error = git_remote_create(out, repo, name, url)) < 0)
 | 
						|
		return error;
 | 
						|
 | 
						|
	if ((error = git_remote_set_transport(*out, custom_transport, payload)) < 0)
 | 
						|
		return error;
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
void test_clone_transport__custom_transport(void)
 | 
						|
{
 | 
						|
	git_repository *repo;
 | 
						|
	git_clone_options clone_opts = GIT_CLONE_OPTIONS_INIT;
 | 
						|
	int custom_transport_used = 0;
 | 
						|
 | 
						|
	clone_opts.remote_cb = custom_transport_remote_create;
 | 
						|
	clone_opts.remote_cb_payload = &custom_transport_used;
 | 
						|
 | 
						|
	cl_git_pass(git_clone(&repo, cl_fixture("testrepo.git"), "./custom_transport.git", &clone_opts));
 | 
						|
	git_repository_free(repo);
 | 
						|
 | 
						|
	cl_git_pass(git_futils_rmdir_r("./custom_transport.git", NULL, GIT_RMDIR_REMOVE_FILES));
 | 
						|
 | 
						|
	cl_assert(custom_transport_used == 1);
 | 
						|
}
 |