aboutsummaryrefslogtreecommitdiff
path: root/hiper/STATUS
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-04-18 23:24:23 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-04-18 23:24:23 +0000
commit59212553b5a2d8c86ababb487531f86e921e867c (patch)
treee883c4dadb1c84d965f277ef1f9d2c7968184b28 /hiper/STATUS
parente532b196ccc671a14b9ab9bc18860b2656e5ea42 (diff)
mention the recent thoughts/progress I had
Diffstat (limited to 'hiper/STATUS')
-rw-r--r--hiper/STATUS20
1 files changed, 20 insertions, 0 deletions
diff --git a/hiper/STATUS b/hiper/STATUS
index be1ff7fb9..67b1d2afa 100644
--- a/hiper/STATUS
+++ b/hiper/STATUS
@@ -238,3 +238,23 @@ Roadmap Ahead
I plan and hope to return to full-time hiper work later on this spring or
possibly summer to continue where I pause now. Of course some spare time
might also be spent until then to get us moving forward.
+
+---------------------------------------------------------------------------
+
+April 11, 2006
+
+ While sitting staring on my screen trying to write up a *nice* sample script
+ using libevent, it strikes me that since libevent is pretty much based around
+ its structs that you setup for each event/file descriptor, my application
+ wants to figure out the correct struct that is associted with the file
+ descriptor that libcurl provides in the socket callback.
+
+ This feels like an operation most applications will need when using the
+ multi_socket API, so it feels like I should better try to figure out a decent
+ way to offer this basic functionality already in libcurl - and the fact that
+ we already have the file descriptors in a hash we can probably just as well
+ extend it somewhat and store some custom pointers as well.
+
+ We need to offer the app a way to set a private pointer to be associated with
+ the particular file descriptor, and then be able to provide that pointer on
+ subsequent callback calls.