summaryrefslogtreecommitdiff
path: root/include/git2/transport.h
blob: ddae32d40c08b930ac3e3d35ffd1498972b6d615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * Copyright (C) 2009-2011 the libgit2 contributors
 *
 * 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_git_transport_h__
#define INCLUDE_git_transport_h__

#include "common.h"
#include "types.h"
#include "net.h"

/**
 * @file git2/transport.h
 * @brief Git protocol transport abstraction
 * @defgroup git_transport Git protocol transport abstraction
 * @ingroup Git
 * @{
 */
GIT_BEGIN_DECL

/**
 * Get the appropriate transport for an URL.
 * @param tranport the transport for the url
 * @param url the url of the repo
 */
GIT_EXTERN(int) git_transport_new(git_transport **transport, const char *url);

/** @} */
GIT_END_DECL
#endif