From caa3b7c4130fda123e82e1324784ae6a88cda43e Mon Sep 17 00:00:00 2001 From: Alexander Vdolainen Date: Sat, 20 Mar 2021 16:20:38 +0200 Subject: [PATCH] header for imap function; --- include/imapf.h | 28 ++++++++++++++++++++++++++++ src/imap.c | 3 +-- 2 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 include/imapf.h diff --git a/include/imapf.h b/include/imapf.h new file mode 100644 index 0000000..c0a676a --- /dev/null +++ b/include/imapf.h @@ -0,0 +1,28 @@ +/* + * ejabberd external authentication program + * + * (c) Alexander Vdolainen 2013, 2018, 2019, 2021 + * + * this is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * this is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see ."; + * + */ + +#ifndef __IMAPF_H__ +#define __IMAPF_H__ + +#define IMAPLINE_LENGTH 320 + +int imap_auth(struct tlsport *p, struct ejabber_msg *m); + +#endif /* __IMAPF_H__ */ diff --git a/src/imap.c b/src/imap.c index 0c89145..9c352c5 100644 --- a/src/imap.c +++ b/src/imap.c @@ -34,8 +34,7 @@ #include #include - -#define IMAPLINE_LENGTH 320 +#include int imap_auth(struct tlsport *p, struct ejabber_msg *m) {