LarkFeepSunImport.mesa
Copyright © 1990 by Xerox Corporation. All rights reserved.
Swinehart, September 18, 1990 4:47:37 pm PDT
DIRECTORY
Rope USING [ ROPE ],
LarkFeepRpcControl USING [ InterfaceRecord ],
Thrush USING [SHHH ]
;
LarkFeepSunImport: CEDAR DEFINITIONS
~ BEGIN
Interface raises no Errors
InterfaceRecord: TYPE ~ LarkFeepRpcControl.InterfaceRecord;
ImportInterface: PROC [instance: Rope.ROPE]
RETURNS [interface: InterfaceRecord, shhh: Thrush.SHHH];
instance should be a SunRPC address, in the form "sun#[1.2.3.4]#5", where [1.2.3.4] is the Arpa address, and 5 is the port.
UnImportInterface: PROC [shhh: Thrush.SHHH]; -- Releases all resources associated with it.
END.