Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
6c62866e
...
6c62866e385d1937f5b22d13dd46c2786adce614
authored
2003-07-26 11:19:25 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_auth_fp, mu_auth_runlist): Changed prototypes.
1 parent
24ab6df1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
include/mailutils/mu_auth.h
include/mailutils/mu_auth.h
View file @
6c62866
...
...
@@ -20,11 +20,6 @@
#include <mailutils/types.h>
typedef
int
(
*
mu_auth_fp
)
__P
((
void
*
return_data
,
void
*
key
,
void
*
func_data
,
void
*
call_data
));
struct
mu_auth_data
{
/* These are from struct passwd */
char
*
name
;
/* user name */
...
...
@@ -39,6 +34,11 @@ struct mu_auth_data {
int
change_uid
;
};
typedef
int
(
*
mu_auth_fp
)
__P
((
struct
mu_auth_data
**
data
,
void
*
key
,
void
*
func_data
,
void
*
call_data
));
struct
mu_auth_module
{
char
*
name
;
struct
argp
*
argp
;
...
...
@@ -50,7 +50,8 @@ struct mu_auth_module {
void
*
auth_by_uid_data
;
};
extern
int
mu_auth_runlist
__P
((
list_t
flist
,
void
*
return_data
,
extern
int
mu_auth_runlist
__P
((
list_t
flist
,
struct
mu_auth_data
**
return_data
,
void
*
key
,
void
*
data
));
extern
struct
mu_auth_data
*
mu_get_auth_by_name
__P
((
const
char
*
username
));
...
...
@@ -61,7 +62,7 @@ mu_get_auth_by_uid __P((uid_t uid));
extern
int
mu_authenticate
__P
((
struct
mu_auth_data
*
auth_data
,
char
*
pass
));
extern
int
mu_auth_nosupport
__P
((
void
*
return_data
,
extern
int
mu_auth_nosupport
__P
((
struct
mu_auth_data
*
*
return_data
,
void
*
key
,
void
*
func_data
,
void
*
call_data
));
...
...
Please
register
or
sign in
to post a comment