Changeset 4917
- Timestamp:
- Jul 28, 2006, 12:16:39 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-sockets.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-sockets.lisp
r4900 r4917 322 322 (defmethod select-stream-class ((class tcp-stream) in-p out-p char-p) 323 323 (declare (ignore char-p)) ; TODO: is there any real reason to care about this? 324 ;; Yes, in general. There is. 324 325 (assert (and in-p out-p) () "Non-bidirectional tcp stream?") 325 326 'tcp-stream) … … 677 678 :direction :io 678 679 :element-type element-type 679 :sharing sharing))) 680 :sharing sharing 681 :character-p t))) 680 682 681 683 (defun make-file-socket-stream (fd &key format eol (class 'file-socket-stream) sharing &allow-other-keys) … … 690 692 :direction :io 691 693 :element-type element-type 692 :sharing sharing))) 694 :sharing sharing 695 :character-p t))) 693 696 694 697 (defun make-tcp-listener-socket (fd &rest keys &key backlog &allow-other-keys)
Note:
See TracChangeset
for help on using the changeset viewer.
