]> git.sesse.net Git - betaftpd/blobdiff - dcache.h
New files.
[betaftpd] / dcache.h
index 1be01507ef832c701b14d28c9011046d4befd159..d45614bebcba9e8f010421c1c6c7770def33debc 100644 (file)
--- a/dcache.h
+++ b/dcache.h
     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
 
+#ifndef _DCACHE_H
+#define _DCACHE_H 1
+
+#if HAVE_TIME_H
+#include <time.h>
+#endif
+
+#if HAVE_SYS_TIME_H
+#include <sys/time.h>
+#endif
+
+#include <ftpd.h>
+
 /* doubly linked list of cached directory listings */
 struct dcache {
         struct dcache *prev_dcache;
@@ -36,3 +49,5 @@ struct dcache *alloc_new_dcache();
 void time_out_dcache();
 void populate_dcache(struct ftran * const f, const char * const cwd,
                     const char * const pattern, const struct list_options * const lo);
+
+#endif