Skip to content
This repository has been archived by the owner on Apr 2, 2020. It is now read-only.

Commit

Permalink
Add socket streams
Browse files Browse the repository at this point in the history
* Add socket streams.

* Remove assertion that fails on windows.

* Add copyright messages.

* Fix unittests

* Use `wouldHaveBlocked()` instead of looking at errno

* Remove unused imports
  • Loading branch information
tmccombs authored and jasonwhite committed Jun 18, 2016
1 parent ed62268 commit 3bbe439
Show file tree
Hide file tree
Showing 3 changed files with 402 additions and 0 deletions.
1 change: 1 addition & 0 deletions source/io/package.d
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module io;

public import io.stream,
io.file,
io.socket,
io.buffer,
io.text,
io.range;
8 changes: 8 additions & 0 deletions source/io/socket/package.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* Copyright: Copyright Jason White, 2014-2016
* License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Thayne McCombs
*/
module io.socket;

public import io.socket.stream;
Loading

0 comments on commit 3bbe439

Please sign in to comment.