netatalk  4.4.0
Free and Open Source Apple Filing Protocol (AFP) Server
Loading...
Searching...
No Matches
afpd/uam_auth.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 1999 Adrian Sun ([email protected])
3 * All Rights Reserved. See COPYRIGHT.
4 */
5
10
11#ifndef AFPD_UAM_AUTH_H
12#define AFPD_UAM_AUTH_H 1
13
14#include <pwd.h>
15
16#include <atalk/globals.h>
17#include <atalk/uam.h>
18
19struct uam_mod {
23};
24
25struct uam_obj {
26 const char *uam_name;
27 char *uam_path;
29 union {
30 struct {
31 int (*login)(void *, struct passwd **,
32 char *, int, char *, size_t *);
33 int (*logincont)(void *, struct passwd **, char *,
34 int, char *, size_t *);
35 void (*logout)(void);
36 int (*login_ext)(void *, char *, struct passwd **,
37 char *, int, char *, size_t *);
39 int (*uam_changepw)(void *, char *, struct passwd *, char *,
40 int, char *, size_t *);
41 } u;
43};
44
45#define uam_attach(a, b) do { \
46 (a)->uam_prev->uam_next = (b); \
47 (b)->uam_prev = (a)->uam_prev; \
48 (b)->uam_next = (a); \
49 (a)->uam_prev = (b); \
50} while (0)
51
52#define uam_detach(a) do { \
53 (a)->uam_prev->uam_next = (a)->uam_next; \
54 (a)->uam_next->uam_prev = (a)->uam_prev; \
55} while (0)
56
57extern struct uam_mod *uam_load(AFPObj *, const char *, const char *);
58extern void uam_unload(struct uam_mod *);
59
60/* auth.c */
61int auth_load(AFPObj *, const char *, const char *);
62int auth_register(const int, struct uam_obj *);
63#define auth_unregister(a) uam_detach(a)
64struct uam_obj *auth_uamfind(const int, const char *, const int);
65void auth_unload(void);
66
67/* uam.c */
68int uam_random_string(AFPObj *, char *, int);
69
70#endif /* uam_auth.h */
static struct uam_obj uam_login
Definition afpd/auth.c:53
void uam_unload(struct uam_mod *)
unload the module.
Definition afpd/uam.c:101
int auth_register(const int, struct uam_obj *)
Definition afpd/auth.c:1156
void auth_unload(void)
Definition afpd/auth.c:1220
struct uam_mod * uam_load(AFPObj *, const char *, const char *)
Definition afpd/uam.c:44
int auth_load(AFPObj *, const char *, const char *)
Definition afpd/auth.c:1173
int uam_random_string(AFPObj *, char *, int)
Definition afpd/uam.c:349
struct uam_obj * auth_uamfind(const int, const char *, const int)
Definition afpd/auth.c:1137
Definition globals.h:154
Definition uam.h:60
Definition afpd/uam_auth.h:19
void * uam_module
Definition afpd/uam_auth.h:20
struct uam_mod * uam_next
Definition afpd/uam_auth.h:22
struct uam_mod * uam_prev
Definition afpd/uam_auth.h:22
struct uam_export * uam_fcn
Definition afpd/uam_auth.h:21
Definition afpd/uam_auth.h:25
int(* logincont)(void *, struct passwd **, char *, int, char *, size_t *)
Definition afpd/uam_auth.h:33
void(* logout)(void)
Definition afpd/uam_auth.h:35
union uam_obj::@267363230117161357145247102227344201111336235326 u
const char * uam_name
Definition afpd/uam_auth.h:26
int(* login)(void *, struct passwd **, char *, int, char *, size_t *)
Definition afpd/uam_auth.h:31
struct uam_obj * uam_prev
Definition afpd/uam_auth.h:42
int(* login_ext)(void *, char *, struct passwd **, char *, int, char *, size_t *)
Definition afpd/uam_auth.h:36
int(* uam_changepw)(void *, char *, struct passwd *, char *, int, char *, size_t *)
Definition afpd/uam_auth.h:39
int uam_count
Definition afpd/uam_auth.h:28
struct uam_obj * uam_next
Definition afpd/uam_auth.h:42
char * uam_path
Definition afpd/uam_auth.h:27