aboutsummaryrefslogtreecommitdiff
path: root/lib/file.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-12-12 22:17:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-12-12 22:17:51 +0000
commit83a6b348037048c389fbe859d7e3ea3e290a7644 (patch)
tree2145d172a149a3cedd8221a12fc81bf1b3e057c4 /lib/file.h
parent43fefab2a13e3c37885575d9b7746c1897b39974 (diff)
split out more protocol-specific structs from urldata.h into their own
protocol-specific header files
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