ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/authcookie.h
Revision: 1.1
Committed: Thu Jul 19 08:24:50 2007 UTC (16 years, 10 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Log Message:
initial import. the most important changes since Atheme are:
- fixed many memory leaks
- fixed many bugs
- converted to C++ and use more STL containers
- added a (not very enhanced yet) perl module
- greatly improved XML-RPC speed
- added a JSON-RPC module with code from json-cpp
- added a valgrind memcheck module to operserv
- added a more object oriented base64 implementation
- added a specialised unit test framework
- improved stability
- use gettimeofday() if available
- reworked adding/removing commands
- MemoServ IGNORE DEL can now remove indices

File Contents

# Content
1 /*
2 * Copyright © 2005 Atheme Development Group
3 * Rights to this code are as documented in doc/LICENSE.
4 *
5 * Remote authentication ticket management.
6 *
7 * $Id: authcookie.h 7779 2007-03-03 13:55:42Z pippijn $
8 */
9
10 #ifndef AUTHCOOKIE_H
11 #define AUTHCOOKIE_H
12
13 struct authcookie_t
14 {
15 char *ticket;
16 myuser_t *myuser;
17 time_t expire;
18 node_t node;
19 };
20
21 E void authcookie_init (void);
22 E authcookie_t *authcookie_create (myuser_t *mu);
23 E authcookie_t *authcookie_find (char *ticket, myuser_t *myuser);
24 E void authcookie_destroy (authcookie_t *ac);
25 E void authcookie_destroy_all (myuser_t *mu);
26 E bool authcookie_validate (char *ticket, myuser_t *myuser);
27 E void authcookie_expire (void *arg);
28
29 #endif