Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Osc over Udp/Tcp implementation.
Synopsis
- data OscProtocol
- type OscHostname = String
- type OscPort = Int
- type OscSocketAddress = (OscProtocol, OscHostname, OscPort)
- data OscSocket
- openOscSocket :: OscSocketAddress -> IO OscSocket
Documentation
data OscProtocol Source #
Protocol, either Udp or Tcp
Instances
Read OscProtocol Source # | |
Defined in Sound.Osc.Transport.Fd.Socket readsPrec :: Int -> ReadS OscProtocol # readList :: ReadS [OscProtocol] # readPrec :: ReadPrec OscProtocol # readListPrec :: ReadPrec [OscProtocol] # | |
Show OscProtocol Source # | |
Defined in Sound.Osc.Transport.Fd.Socket showsPrec :: Int -> OscProtocol -> ShowS # show :: OscProtocol -> String # showList :: [OscProtocol] -> ShowS # | |
Eq OscProtocol Source # | |
Defined in Sound.Osc.Transport.Fd.Socket (==) :: OscProtocol -> OscProtocol -> Bool # (/=) :: OscProtocol -> OscProtocol -> Bool # |
type OscHostname = String Source #
Hostname
type OscSocketAddress = (OscProtocol, OscHostname, OscPort) Source #
Socket address
openOscSocket :: OscSocketAddress -> IO OscSocket Source #
Open socket at address