Author: ehuelsmann Date: Wed Feb 8 14:45:56 2006 New Revision: 62
Added: usocket/trunk/TODO Modified: usocket/trunk/doc/design.txt Log: Add TODO and update design doc.
Added: usocket/trunk/TODO ============================================================================== --- (empty file) +++ usocket/trunk/TODO Wed Feb 8 14:45:56 2006 @@ -0,0 +1,16 @@ + +- Check consistency of error translation for each of the backends + with the design document. + +- Move all function documentation from the backends to + (setf documentation) forms in usocket.lisp. + +- Extend ABCL socket support with the 4 java errors in java.net + so that they can map to our usocket errors instead of mapping + all errors to unknown-error. + +- Investigate which backends would support streams with other + elements than :element-type 'character, especially since + cl-irc chokes on characters which are non-UTF8 conforming... + Probably other clients do too (try that with a binary HTTP stream!) +
Modified: usocket/trunk/doc/design.txt ============================================================================== --- usocket/trunk/doc/design.txt (original) +++ usocket/trunk/doc/design.txt Wed Feb 8 14:45:56 2006 @@ -101,6 +101,7 @@
1) Map them to 'unknown-error 2) Give them their own errors and map to those + ... which implies that they are actually supported atm. 3) ...
Given that the library doesn't now, but may in the future,