aboutsummaryrefslogtreecommitdiff
path: root/docs/TODO
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-08-07 21:36:07 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-08-07 21:36:07 +0000
commit7b9ec9507fcac99db101b4447e1b683626d590ff (patch)
tree8a55f82fb1b6302ed072abe66f29df83c1c532db /docs/TODO
parent4045cd5ec0fe25c69aaaad69b82b798feb276ec9 (diff)
replacing FILE * with common file descriptors?
Diffstat (limited to 'docs/TODO')
-rw-r--r--docs/TODO7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/TODO b/docs/TODO
index 7fbea1ce2..ad148b566 100644
--- a/docs/TODO
+++ b/docs/TODO
@@ -12,6 +12,13 @@ TODO
To do in a future release (random order):
+ * Using FILE * in the libcurl API introduces a serious limitation since (at
+ least in the *nix falvours I know) you can fopen only the first 256
+ files. This means, that an application that first opens or fopens 256 files
+ has no chance to use libcurl. Using open and file descriptors instead of
+ FILE * would solve the problem. This implies a minor API
+ change/enhancement. ck1 <ck1@swissonline.ch>
+
* It would be nice to be able to use "-d" (or something similar) to attach
parameters of EITHER the GET or POST type... It would either require
another curl argument to specify "GET" (obviously the default should remain