projects
/
mmh
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Document the -port switch to inc. Also, fix the -port switch to inc so
[mmh]
/
h
/
mhcachesbr.h
1
2
/*
3
* mhcachesbr.h -- definitions for manipulating MIME content cache
4
*/
5
6
/*
7
* various cache policies
8
*/
9
static struct swit caches[] = {
10
#define CACHE_NEVER 0
11
{ "never", 0 },
12
#define CACHE_PRIVATE 1
13
{ "private", 0 },
14
#define CACHE_PUBLIC 2
15
{ "public", 0 },
16
#define CACHE_ASK 3
17
{ "ask", 0 },
18
{ NULL, 0 }
19
};