definition: |
getPortInfo :: String -> String -> IO (Int,Int) getPortInfo pname host = cpnsTryGetAnswer host (GetRegister pname) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
Gets the information about a symbolic port (first argument) at some host (second argument). If there is no registration, `(0,0)` is returned, otherwise a pair consisting of a socket and port number. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
getPortInfo |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> String -> Prelude.IO (Prelude.Int, Prelude.Int) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |