tcp-streams: One stop solution for tcp client and server with tls support.

[ bsd3, library, network ] [ Propose Tags ] [ Report a vulnerability ]

One stop solution for tcp client and server with tls support.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
openssl

Enable openssl support via HsOpenSSL

Enabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.2.0.0, 0.2.1.0, 0.2.2.0, 0.2.3.0, 0.3.0.0, 0.4.0.0, 0.5.0.0, 0.6.0.0, 1.0.0.0, 1.0.1.0, 1.0.1.1
Change log ChangeLog.md
Dependencies base (>=4.7 && <5.0), bytestring (>=0.10.2.0), data-default-class, HsOpenSSL (>=0.10.3 && <0.12), HsOpenSSL-x509-system (>=0.1 && <0.2), io-streams (>=1.2 && <2.0), network (>=2.3 && <3.0), pem, tls (>=1.3 && <2.0), x509 (>=1.5 && <2.0), x509-store (>=1.5 && <2.0), x509-system (>=1.5 && <2.0) [details]
License BSD-3-Clause
Author winterland1989
Maintainer winterland1989@gmail.com
Category Network
Source repo head: git clone git://github.com/winterland1989/tcp-streams.git
Uploaded by winterland at 2016-07-23T01:09:44Z
Distributions
Reverse Dependencies 5 direct, 8 indirect [details]
Downloads 10111 total (28 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2016-07-23 [all 1 reports]

Readme for tcp-streams-0.2.2.0

[back to package description]

tcp-streams

Hackage Build Status

One stop solution for tcp client and server with tls support!

  • use io-streams for auto read buffering and easy streamming process.

  • use tls or HsOpenSSL for tls connection.

Built-in mozilla CA list date: 2016/04/20.

Mac user may need manually passing openssl library path if linker can't find them:

cabal install --extra-include-dirs=/usr/local/opt/openssl/include --extra-lib-dirs=/usr/local/opt/openssl/lib tcp-streams 

You can disable openssl support with cabal install -f -openssl.

Also take a look at wire-stream, for serialize/deserialize data. Happy hacking!

Example

import qualified System.IO.Streams as Stream import qualified System.IO.Streams.TCP as TCP import qualified System.IO.Streams.TLS as TLS import qualified NetWork.Socket as Socket -- TCP Client ... (is, os, sock) <- TCP.connect "127.0.0.1" 8888 Stream.write os =<< .. -- sending Stream.read is >>= .. -- receiving Socket.close sock .. -- closing ... -- TCP Server ... sock <- TCP.bindAndListen 8888 1024 (is, os, csock, _) <- TCP.accept sock Stream.write os =<< .. -- sending Stream.read is >>= .. -- receiving ... -- TLS Client ... cp <- TLS.makeTLSClientParams (TLS.CustomCAStore "myCA.pem") (is, os, ctx) <- TCP.connect cp (Just "myCAName") "127.0.0.1" 8888 Stream.write os =<< .. -- sending Stream.read is >>= .. -- receiving TLS.closeTLS ctx .. -- closing ... -- TLS Server ... sp <- TLS.makeServerParams "server.crt" [] "server.key" sock <- TCP.bindAndListen 8889 1024 (is, os, ctx, sockAddr) <- TLS.accept sp sock Stream.write os =<< .. -- sending Stream.read is >>= .. -- receiving ... -- HTTPS Client ... cp <- TLS.makeClientParams TLS.MozillaCAStore (is, os, ctx) <- TLS.connect cp Nothing "www.google.com" 443 Stream.write (Just "GET / HTTP/1.1\r\n") os Stream.write (Just "Host: www.google.com\r\n") os Stream.write (Just "\r\n") os bs <- Stream.readExactly 1024 is ... 

License

Copyright (c) 2016, Winterland

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of winterland1989 nor the names of other contributors may be used to endorse or promote products derived from this software without specific prior written permission. 

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.