Register:
PROC [flavor:
ATOM, getServer: GetServerProc];
Register an(other) remote file ops implementation. Any existing registration for "flavor" disappears. "getServer" may be NIL, to clear a registration.
GetServerProc:
TYPE ~
PROC [server:
ROPE]
RETURNS [h: ServerHandle, downMsg:
ROPE];
Tries to find a server of the given name.
If successful, creates ServerHandle h and return [h, NIL].
If no server responds and no server is known to exist, returns [NIL, NIL].
If server is known to exist but is not responding, returns [NIL, message],
Does not raise Error!
The caller may Process.Abort a GetServerProc.