-- Dialup.mesa (last edited by: Danielson on: January 20, 1981 3:50 PM) --
Dialup: DEFINITIONS =
BEGIN
AbortCall: PROCEDURE [dialerNumber: CARDINAL];
Dial: PROCEDURE [dialerNumber: CARDINAL, number: STRING, retries: RetryCount]
RETURNS [Outcome];
GetDialerCount: PROCEDURE RETURNS [numberOfDialers: CARDINAL];
RetryCount: TYPE = [0..7];
Outcome: TYPE = {
success, failure, aborted, formatError, transmissionError, dataLineOccupied,
dialerNotPresent, dialingTimeout, transferTimeout};
END.
LOG
Time: October 18, 1978 8:35 AM By: Schwartz Action: Created file
Time: March 9, 1979 11:03 AM By: Schwartz Action: Added AbortCall
Time: May 9, 1979 10:07 AM By: Schwartz Action: Added outcome of dialerNotpresent
Time: September 21, 1979 9:49 AM By: Schwartz Action: changes associated with definition of RS366Face.mesa.
Time: November 30, 1979 4:19 PM By: Danielson Action: added timeouts.
Time: January 21, 1980 2:51 PM By: Schwartz Action: added a type for RetryCount.
Time: January 20, 1981 3:49 PM By: Danielson Action: added a procedure GetDialerCount to return number of dialers.