aboutsummaryrefslogtreecommitdiff
path: root/lib/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/file.h')
-rw-r--r--lib/file.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/file.h b/lib/file.h
index f77972094..d146b2a55 100644
--- a/lib/file.h
+++ b/lib/file.h
@@ -8,7 +8,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -23,6 +23,18 @@
*
* $Id$
***************************************************************************/
+
+
+/****************************************************************************
+ * FILE unique setup
+ ***************************************************************************/
+struct FILEPROTO {
+ char *path; /* the path we operate on */
+ char *freepath; /* pointer to the allocated block we must free, this might
+ differ from the 'path' pointer */
+ int fd; /* open file descriptor to read from! */
+};
+
#ifndef CURL_DISABLE_FILE
extern const struct Curl_handler Curl_handler_file;
#endif