AlpineFTP.mesa
Last Edited by:
Carl Hauser, April 29, 1986 4:55:00 pm PDT
Taft, July 10, 1983 2:20 pm
Bob Hagmann April 24, 1985 8:39:11 am PST
DIRECTORY
Pup USING [Socket],
PupWKS USING [ftp],
Rope USING [ROPE];
AlpineFTP: CEDAR DEFINITIONS =
BEGIN
ROPE: TYPE = Rope.ROPE;
CreateListener: PROC [volumeGroupName: ROPE, socket: Pup.Socket ← PupWKS.ftp];
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.