Clean up #include mess by creating internal.h.
[gsasl.git] / lib / login.h
blobe8be0dee8700a38d2095115851d511d5e8f2a3e3
1 /* login.h header file for non-standard SASL mechanism LOGIN
2 * Copyright (C) 2002 Simon Josefsson
4 * This file is part of libgsasl.
6 * Libgsasl is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * Libgsasl is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with libgsasl; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef _LOGIN_H
23 #define _LOGIN_H
25 #define _GSASL_LOGIN_NAME "LOGIN"
27 extern int _gsasl_login_client_init (Gsasl_ctx * ctx);
28 extern void _gsasl_login_client_done (Gsasl_ctx * ctx);
29 extern int _gsasl_login_client_start (Gsasl_session_ctx * cctx,
30 void **mech_data);
31 extern int _gsasl_login_client_step (Gsasl_session_ctx * cctx,
32 void *mech_data,
33 const char *input,
34 size_t input_len,
35 char *output, size_t * output_len);
36 extern int _gsasl_login_client_finish (Gsasl_session_ctx * cctx,
37 void *mech_data);
39 extern int _gsasl_login_server_init (Gsasl_ctx * ctx);
40 extern void _gsasl_login_server_done (Gsasl_ctx * ctx);
41 extern int _gsasl_login_server_start (Gsasl_session_ctx * sctx,
42 void **mech_data);
43 extern int _gsasl_login_server_step (Gsasl_session_ctx * sctx,
44 void *mech_data,
45 const char *input,
46 size_t input_len,
47 char *output, size_t * output_len);
48 extern int _gsasl_login_server_finish (Gsasl_session_ctx * sctx,
49 void *mech_data);
51 #endif /* _LOGIN_H */