ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/flags.h
Revision: 1.3
Committed: Tue Aug 28 17:08:06 2007 UTC (16 years, 9 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.2: +4 -4 lines
Log Message:
- changed name
- updated the example config to the new system
- added more documentation
- enhanced documentation generators
- added a link to the pdf to the website
- added an RSS feed generator
- transitioned hooks to c++ callbacks
- did various merges with upstream along the way
- added const where appropriate
- removed the old block allocator
- fixed most memory leaks
- transitioned some dictionaries to std::map
- transitioned some lists to std::vector
- made some free functions members where appropriate
- renamed string to dynstr and added a static string ststr
- use NOW instead of time (NULL) if possible
- completely reworked database backends, crypto handlers and protocol handlers
  to use an object factory
- removed the old module system. ermyth does not do any dynamic loading anymore
- fixed most of the build system
- reworked how protocol commands work

File Contents

# Content
1 /*
2 * Copyright © 2005-2007 William Pitcock, et al.
3 * Rights to this code are as documented in doc/pod/license.pod.
4 *
5 * Data structures for flags to bitmask processing routines.
6 *
7 * $Id: flags.h,v 1.2 2007-07-21 01:29:07 pippijn Exp $
8 */
9
10 #ifndef FLAGS_H
11 #define FLAGS_H
12
13 /* flags stuff */
14 struct flags_table
15 {
16 char flag;
17 int value;
18 };
19
20 E unsigned int ca_all;
21 E struct flags_table chanacs_flags[];
22
23 E void flags_make_bitmasks (char const * const string, struct flags_table table[], unsigned int *addflags, unsigned int *removeflags);
24 E unsigned int flags_to_bitmask (char const * const string, struct flags_table table[], unsigned int flags);
25 E char *bitmask_to_flags (unsigned int, struct flags_table[]);
26 E char *bitmask_to_flags2 (unsigned int, unsigned int, struct flags_table[]);
27 E unsigned int allow_flags (unsigned int flags);
28 E void update_chanacs_flags (void);
29
30 #endif