Codebase list clojure / 3a3374f
preserve opts when creating socket reader, writer Signed-off-by: Stuart Halloway <stu@thinkrelevance.com> Stuart Halloway 13 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
258258 (extend Socket
259259 IOFactory
260260 (assoc default-streams-impl
261 :make-input-stream (fn [^Socket x opts] (.getInputStream x))
262 :make-output-stream (fn [^Socket x opts] (.getOutputStream x))))
261 :make-input-stream (fn [^Socket x opts] (make-input-stream (.getInputStream x) opts))
262 :make-output-stream (fn [^Socket x opts] (make-output-stream (.getOutputStream x) opts))))
263263
264264 (extend byte-array-type
265265 IOFactory