m_starttls: port to AV2 caps stuff
This commit is contained in:
parent
fc939ca58f
commit
684725edf5
1 changed files with 8 additions and 16 deletions
|
@ -45,24 +45,16 @@ mapi_clist_av1 starttls_clist[] = { &starttls_msgtab, NULL };
|
||||||
|
|
||||||
unsigned int CLICAP_TLS = 0;
|
unsigned int CLICAP_TLS = 0;
|
||||||
|
|
||||||
static int
|
|
||||||
_modinit(void)
|
|
||||||
{
|
|
||||||
#ifdef HAVE_LIBCRYPTO
|
#ifdef HAVE_LIBCRYPTO
|
||||||
CLICAP_TLS = capability_put(cli_capindex, "tls", NULL);
|
mapi_cap_list_av2 starttls_cap_list[] = {
|
||||||
#endif
|
{ MAPI_CAP_CLIENT, "tls", NULL, &CLICAP_TLS },
|
||||||
return 0;
|
{ 0, NULL, NULL, NULL }
|
||||||
}
|
};
|
||||||
|
#else /* HAVE_LIBCRYPTO */
|
||||||
|
mapi_cap_list_av2 starttls_cap_list[] = { { 0, NULL, NULL, NULL } };
|
||||||
|
#endif /* HAVE_LIBCRYPTO */
|
||||||
|
|
||||||
static void
|
DECLARE_MODULE_AV2(starttls, _modinit, _moddeinit, starttls_clist, NULL, NULL, starttls_cap_list, NULL, starttls_desc);
|
||||||
_moddeinit(void)
|
|
||||||
{
|
|
||||||
#ifdef HAVE_LIBCRYPTO
|
|
||||||
capability_orphan(cli_capindex, "tls");
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
DECLARE_MODULE_AV2(starttls, _modinit, _moddeinit, starttls_clist, NULL, NULL, NULL, NULL, starttls_desc);
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
mr_starttls(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
mr_starttls(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
||||||
|
|
Loading…
Reference in a new issue