]> git.sesse.net Git - betaftpd/blob - dcache.h
Moved most of the dcache stuff into its own file. Updated Makefile.in accordingly.
[betaftpd] / dcache.h
1 /*  dcache.h: BetaFTPD directory cache prototypes
2     Copyright (C) 2000 Steinar H. Gunderson
3
4     This program is is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License, version 2 if the
6     License as published by the Free Software Foundation.
7
8     This program is distributed in the hope that it will be useful,
9     but WITHOUT ANY WARRANTY; without even the implied warranty of
10     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11     GNU General Public License for more details.
12
13     You should have received a copy of the GNU General Public License
14     along with this program; if not, write to the Free Software
15     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 */
17
18 /* doubly linked list of cached directory listings */
19 struct dcache {
20         struct dcache *prev_dcache;
21         struct dcache *next_dcache;
22
23         int use_count;
24         time_t last_used;
25         time_t generated;
26
27         char dir_name[256];
28         char pattern[256];
29         struct list_options lo;
30
31         char *dir_data;
32         int dir_size;
33 };
34
35 struct dcache *alloc_new_dcache();
36 void time_out_dcache();
37 void populate_dcache(struct ftran * const f, const char * const cwd,
38                      const char * const pattern, const struct list_options * const lo);