AlpineFTP.mesa
Last Edited by: Taft, July 10, 1983 2:20 pm
DIRECTORY
PupStream USING [PupSocketID]
PupTypes USING [ftpSoc],
Rope USING [ROPE];
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.
Exceptions: none.
DestroyListener: PROC;
Shuts down the listener 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.