Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
c5e07187
Commit
c5e07187
authored
Mar 24, 2015
by
Edward Thomson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2990 from leoyanggit/custom_param
Add a custom param to git_smart_subtransport_definition
parents
aa7a4a50
142e5379
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
30 additions
and
12 deletions
+30
-12
include/git2/sys/transport.h
+12
-4
src/transport.c
+3
-3
src/transports/git.c
+3
-1
src/transports/http.c
+3
-1
src/transports/smart.c
+1
-1
src/transports/ssh.c
+5
-1
src/transports/winhttp.c
+3
-1
No files found.
include/git2/sys/transport.h
View file @
c5e07187
...
...
@@ -289,7 +289,8 @@ struct git_smart_subtransport {
/* A function which creates a new subtransport for the smart transport */
typedef
int
(
*
git_smart_subtransport_cb
)(
git_smart_subtransport
**
out
,
git_transport
*
owner
);
git_transport
*
owner
,
void
*
param
);
/**
* Definition for a "subtransport"
...
...
@@ -306,6 +307,10 @@ typedef struct git_smart_subtransport_definition {
* http:// is stateless, but git:// is not.
*/
unsigned
rpc
;
/** Param of the callback
*/
void
*
param
;
}
git_smart_subtransport_definition
;
/* Smart transport subtransports that come with libgit2 */
...
...
@@ -321,7 +326,8 @@ typedef struct git_smart_subtransport_definition {
*/
GIT_EXTERN
(
int
)
git_smart_subtransport_http
(
git_smart_subtransport
**
out
,
git_transport
*
owner
);
git_transport
*
owner
,
void
*
param
);
/**
* Create an instance of the git subtransport.
...
...
@@ -332,7 +338,8 @@ GIT_EXTERN(int) git_smart_subtransport_http(
*/
GIT_EXTERN
(
int
)
git_smart_subtransport_git
(
git_smart_subtransport
**
out
,
git_transport
*
owner
);
git_transport
*
owner
,
void
*
param
);
/**
* Create an instance of the ssh subtransport.
...
...
@@ -343,7 +350,8 @@ GIT_EXTERN(int) git_smart_subtransport_git(
*/
GIT_EXTERN
(
int
)
git_smart_subtransport_ssh
(
git_smart_subtransport
**
out
,
git_transport
*
owner
);
git_transport
*
owner
,
void
*
param
);
/**
* Sets a custom transport factory for the remote. The caller can use this
...
...
src/transport.c
View file @
c5e07187
...
...
@@ -18,10 +18,10 @@ typedef struct transport_definition {
void
*
param
;
}
transport_definition
;
static
git_smart_subtransport_definition
http_subtransport_definition
=
{
git_smart_subtransport_http
,
1
};
static
git_smart_subtransport_definition
git_subtransport_definition
=
{
git_smart_subtransport_git
,
0
};
static
git_smart_subtransport_definition
http_subtransport_definition
=
{
git_smart_subtransport_http
,
1
,
NULL
};
static
git_smart_subtransport_definition
git_subtransport_definition
=
{
git_smart_subtransport_git
,
0
,
NULL
};
#ifdef GIT_SSH
static
git_smart_subtransport_definition
ssh_subtransport_definition
=
{
git_smart_subtransport_ssh
,
0
};
static
git_smart_subtransport_definition
ssh_subtransport_definition
=
{
git_smart_subtransport_ssh
,
0
,
NULL
};
#endif
static
transport_definition
local_transport_definition
=
{
"file://"
,
git_transport_local
,
NULL
};
...
...
src/transports/git.c
View file @
c5e07187
...
...
@@ -341,10 +341,12 @@ static void _git_free(git_smart_subtransport *subtransport)
git__free
(
t
);
}
int
git_smart_subtransport_git
(
git_smart_subtransport
**
out
,
git_transport
*
owner
)
int
git_smart_subtransport_git
(
git_smart_subtransport
**
out
,
git_transport
*
owner
,
void
*
param
)
{
git_subtransport
*
t
;
GIT_UNUSED
(
param
);
if
(
!
out
)
return
-
1
;
...
...
src/transports/http.c
View file @
c5e07187
...
...
@@ -1008,10 +1008,12 @@ static void http_free(git_smart_subtransport *subtransport)
git__free
(
t
);
}
int
git_smart_subtransport_http
(
git_smart_subtransport
**
out
,
git_transport
*
owner
)
int
git_smart_subtransport_http
(
git_smart_subtransport
**
out
,
git_transport
*
owner
,
void
*
param
)
{
http_subtransport
*
t
;
GIT_UNUSED
(
param
);
if
(
!
out
)
return
-
1
;
...
...
src/transports/smart.c
View file @
c5e07187
...
...
@@ -409,7 +409,7 @@ int git_transport_smart(git_transport **out, git_remote *owner, void *param)
return
-
1
;
}
if
(
definition
->
callback
(
&
t
->
wrapped
,
&
t
->
parent
)
<
0
)
{
if
(
definition
->
callback
(
&
t
->
wrapped
,
&
t
->
parent
,
definition
->
param
)
<
0
)
{
git__free
(
t
);
return
-
1
;
}
...
...
src/transports/ssh.c
View file @
c5e07187
...
...
@@ -754,13 +754,15 @@ static int list_auth_methods(int *out, LIBSSH2_SESSION *session, const char *use
#endif
int
git_smart_subtransport_ssh
(
git_smart_subtransport
**
out
,
git_transport
*
owner
)
git_smart_subtransport
**
out
,
git_transport
*
owner
,
void
*
param
)
{
#ifdef GIT_SSH
ssh_subtransport
*
t
;
assert
(
out
);
GIT_UNUSED
(
param
);
t
=
git__calloc
(
sizeof
(
ssh_subtransport
),
1
);
GITERR_CHECK_ALLOC
(
t
);
...
...
@@ -773,6 +775,7 @@ int git_smart_subtransport_ssh(
return
0
;
#else
GIT_UNUSED
(
owner
);
GIT_UNUSED
(
param
);
assert
(
out
);
*
out
=
NULL
;
...
...
@@ -793,6 +796,7 @@ int git_transport_ssh_with_paths(git_transport **out, git_remote *owner, void *p
git_smart_subtransport_definition
ssh_definition
=
{
git_smart_subtransport_ssh
,
0
,
/* no RPC */
NULL
,
};
if
(
paths
->
count
!=
2
)
{
...
...
src/transports/winhttp.c
View file @
c5e07187
...
...
@@ -1327,10 +1327,12 @@ static void winhttp_free(git_smart_subtransport *subtransport)
git__free
(
t
);
}
int
git_smart_subtransport_http
(
git_smart_subtransport
**
out
,
git_transport
*
owner
)
int
git_smart_subtransport_http
(
git_smart_subtransport
**
out
,
git_transport
*
owner
,
void
*
param
)
{
winhttp_subtransport
*
t
;
GIT_UNUSED
(
param
);
if
(
!
out
)
return
-
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment