src/server/public/auth.h

changeset 59
ab25c0a231d0
child 62
c47e081b6c0f
equal deleted inserted replaced
58:66c22e54aa90 59:ab25c0a231d0
1 /*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3 *
4 * Copyright 2013 Olaf Wintermann. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 #ifndef WS_AUTH_H
30 #define WS_AUTH_H
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 typedef struct auth_db AuthDB;
37 typedef struct user User;
38
39 /*
40 * get a user from the authentication database
41 *
42 * param1: authentication database
43 * param2: user
44 */
45 typedef User*(*authdb_get_user_f)(AuthDB*, char*);
46
47 struct auth_db {
48 char *name;
49 /* User* get_user(AuthDB *db, char *username) */
50 authdb_get_user_f get_user;
51 };
52
53 /*
54 * verify the users password
55 *
56 * param1: user
57 * param2: password
58 */
59 typedef int(*user_verify_passwd_f)(User*, char*);
60
61 /*
62 * check if the user is a member of a given group
63 *
64 * param1: user
65 * param2: group
66 */
67 typedef int(*user_check_group_f)(User*, char*);
68
69 /*
70 * free the user object
71 */
72 typedef void(*user_free_f)(User*);
73
74 struct user {
75 char *name;
76 /* int verify_password(User *user, char *password) */
77 user_verify_passwd_f verify_password;
78 /* int check_group(User *user, char *group) */
79 user_check_group_f check_group;
80 /* void free(User*) */
81 user_free_f free;
82 };
83
84
85
86
87 #ifdef __cplusplus
88 }
89 #endif
90
91 #endif /* WS_AUTH_H */
92

mercurial