home *** CD-ROM | disk | FTP | other *** search
- $!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- $!
- $! DoD Protocols NA-00007-200 80-01173-100(-)
- $! E-Systems, Inc. August 07, 1985
- $!
- $! TCP_DEMO.COM Author : Kevin Weise
- $!
- $!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- $! TCP_DEMO.COM Author: Kevin J. Weise Date: 22-Jul-1985
- $! This command file resets the VMS environment for the standalone TCP
- $! component of the NOSCAda software.
- $!
- $! Parameters: None
- $!
- $!--- First, examine the mailboxes
- $ SHOW LOGICAL/System mb*
- $ SHOW LOGICAL/System to_tcp_channel
- $ GOTO Ask_Again
- $Loop:
- $ ASSIGN/User TT: Sys$Input
- $ RUN user1:[denney.e_systems.noscada.master]KILL
- $ SHOW LOGICAL/System mb*
- $ SHOW LOGICAL/System to_tcp_channel
- $!
- $!--- Make sure that the mailboxes have, in fact, been deleted.
- $! (Make sure that the response is ONLY an upper- or lowercase 'Y' or 'N')
- $Ask_Again:
- $ INQUIRE response " OK to run TCP (y/n) ?"
- $ IF response .EQS. "Y" .OR. response .EQS. "y" THEN GOTO Run_It
- $ IF response .EQS. "N" .OR. response .EQS. "n" THEN GOTO Loop
- $ GOTO Ask_Again
- $!
- $!--- Finally, run TCP
- $Run_It:
- $ RUN/NoDebug user1:[denney.e_systems.noscada.master]TCP_Standalone
- $ EXIT
-
-