forked from RogerGee/php-git2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cred.h
178 lines (157 loc) · 4.77 KB
/
cred.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
* cred.h
*
* Copyright (C) Roger P. Gee
*/
#ifndef PHPGIT2_CRED_H
#define PHPGIT2_CRED_H
namespace php_git2
{
template<> php_git_cred::~git2_resource()
{
git_cred_free(handle);
}
} // namespace php-git2
static constexpr auto ZIF_GIT_CRED_DEFAULT_NEW = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_cred**>::func<git_cred_default_new>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_cred>
>,
1,
php_git2::sequence<>,
php_git2::sequence<0>
>;
static constexpr auto ZIF_GIT_CRED_FREE = zif_php_git2_function_free<
php_git2::local_pack<
php_git2::php_resource_cleanup<php_git2::php_git_cred>
>
>;
static constexpr auto ZIF_GIT_CRED_HAS_USERNAME = zif_php_git2_function_rethandler<
php_git2::func_wrapper<
int,
git_cred*>::func<git_cred_has_username>,
php_git2::local_pack<
php_git2::php_resource<php_git2::php_git_cred>
>,
php_git2::php_boolean_rethandler<int>
>;
/*
static constexpr auto ZIF_GIT_CRED_SSH_CUSTOM_NEW = zif_php_git2_function<
php_git2::func_wrapper<
>::func<git_cred_ssh_custom_new>,
php_git2::local_pack<
>,
-1,
php_git2::sequence<>,
php_git2::sequence<>
>;
static constexpr auto ZIF_GIT_CRED_SSH_INTERACTIVE_NEW = zif_php_git2_function<
php_git2::func_wrapper<
>::func<git_cred_ssh_interactive_new>,
php_git2::local_pack<
>,
-1,
php_git2::sequence<>,
php_git2::sequence<>
>;
*/
static constexpr auto ZIF_GIT_CRED_SSH_KEY_FROM_AGENT = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_cred**,
const char*>::func<git_cred_ssh_key_from_agent>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_cred>,
php_git2::php_string
>,
1,
php_git2::sequence<1>,
php_git2::sequence<0,1>
>;
static constexpr auto ZIF_GIT_CRED_SSH_KEY_MEMORY_NEW = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_cred**,
const char*,
const char*,
const char*,
const char*>::func<git_cred_ssh_key_memory_new>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_cred>,
php_git2::php_string,
php_git2::php_string,
php_git2::php_string,
php_git2::php_string
>,
1,
php_git2::sequence<1,2,3,4>,
php_git2::sequence<0,1,2,3,4>
>;
static constexpr auto ZIF_GIT_CRED_SSH_KEY_NEW = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_cred**,
const char*,
const char*,
const char*,
const char*>::func<git_cred_ssh_key_new>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_cred>,
php_git2::php_string,
php_git2::php_string,
php_git2::php_string,
php_git2::php_string
>,
1,
php_git2::sequence<1,2,3,4>,
php_git2::sequence<0,1,2,3,4>
>;
static constexpr auto ZIF_GIT_CRED_USERNAME_NEW = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_cred**,
const char*>::func<git_cred_username_new>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_cred>,
php_git2::php_string
>,
1,
php_git2::sequence<1>,
php_git2::sequence<0,1>
>;
static constexpr auto ZIF_GIT_CRED_USERPASS_PLAINTEXT_NEW = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_cred**,
const char*,
const char*>::func<git_cred_userpass_plaintext_new>,
php_git2::local_pack<
php_git2::php_resource_ref<php_git2::php_git_cred>,
php_git2::php_string,
php_git2::php_string
>,
1,
php_git2::sequence<1,2>,
php_git2::sequence<0,1,2>
>;
#define GIT_CRED_FE \
PHP_GIT2_FE(git_cred_default_new,ZIF_GIT_CRED_DEFAULT_NEW,NULL) \
PHP_GIT2_FE(git_cred_free,ZIF_GIT_CRED_FREE,NULL) \
PHP_GIT2_FE(git_cred_has_username,ZIF_GIT_CRED_HAS_USERNAME,NULL) \
PHP_GIT2_UNIMPLEMENTED(git_cred_ssh_custom_new,ZIF_GIT_CRED_SSH_CUSTOM_NEW,NULL) \
PHP_GIT2_UNIMPLEMENTED(git_cred_ssh_interactive_new,ZIF_GIT_CRED_SSH_INTERACTIVE_NEW,NULL) \
PHP_GIT2_FE(git_cred_ssh_key_from_agent,ZIF_GIT_CRED_SSH_KEY_FROM_AGENT,NULL) \
PHP_GIT2_FE(git_cred_ssh_key_memory_new,ZIF_GIT_CRED_SSH_KEY_MEMORY_NEW,NULL) \
PHP_GIT2_FE(git_cred_ssh_key_new,ZIF_GIT_CRED_SSH_KEY_NEW,NULL) \
PHP_GIT2_FE(git_cred_username_new,ZIF_GIT_CRED_USERNAME_NEW,NULL) \
PHP_GIT2_FE(git_cred_userpass_plaintext_new,ZIF_GIT_CRED_USERPASS_PLAINTEXT_NEW,NULL)
#endif
/*
* Local Variables:
* mode:c++
* indent-tabs-mode:nil
* tab-width:4
* End:
*/