Last Edited by:
Taft, July 10, 1983 2:20 pm
Bob Hagmann April 24, 1985 8:39:11 am PST
AlpineFTP:
CEDAR DEFINITIONS =
BEGIN
ROPE: TYPE = Rope.ROPE;
CreateListener:
PROC [volumeGroupName:
ROPE, socket: PupStream.PupSocketID ← PupTypes.ftpSoc];
Creates an FTP listener at the specified socket. The volumeGroupName designates the volume group to which FTP access will be provided. Call does nothing if the listener already exists.
Exceptions: none.
DestroyListener:
PROC;
Shuts down the listener for the volume group so that it will accept no further connection requests. DestroyListener has no effect on any Server instances that have already been spawned.
Exceptions: none.
END.