hosc-0.15: Haskell Open Sound Control

Safe HaskellNone
LanguageHaskell98

Sound.OSC.Transport.FD.TCP

Description

OSC over TCP implementation.

Synopsis

Documentation

data TCP #

The TCP transport handle data type.

Constructors

TCP 

Fields

Instances

Transport TCP # 

Methods

sendOSC :: OSC o => TCP -> o -> IO () #

recvPacket :: TCP -> IO Packet #

close :: TCP -> IO () #

openTCP :: String -> Int -> IO TCP #

Make a TCP connection.

tcpServer' :: Int -> (TCP -> IO ()) -> IO () #

A trivial TCP OSC server.