NET/MASTER Network Control Language (NCL) Reference Manual
SECCALL EXIT
Verbs
106126 Tandem Computers Incorporated 3–169
SECCALL EXIT The SECCALL EXIT verb provides direct interaction between an NCL procedure and
the installation's security exit. You use this verb in an NCL procedure to pass
information to, and receive information from, the installation’s security exit.
The data defined in the initial variables of the verb is passed to the exit. Any data
returned from the exit is placed into the variables defined after the TO operand. The
format of messages sent and received follows that of the map $NCL.
SECCALL EXIT { ARGS [ RANGE=(
start
,
end
) ] [ SEGMENT=
n
] |
VARS={
output-vars-list
|
variable
* }
[ RANGE=(
start
,
end
) ] [ SEGMENT=
n
] |
DATA=
text
}
TO
{ ARGS [ RANGE=(
start
,
end
) ] [ SEGMENT=
n
] |
VARS={
input-vars-list
|
variable
* }
[ RANGE=(
start
,
end
) ] [ SEGMENT=
n
] }
ARGS
specifies a range of generated variables for containing the message to be sent to the
security exit. See “Frequently Occurring Operands,” at the beginning of this
section, for more information.
RANGE=(
start
,
end
)
determines the range of variables specified by the ARGS operand. See
“Frequently Occurring Operands,” at the beginning of this section, for more
information.
SEGMENT=
n
specifies the amount of data (in bytes) to be put into the variables specified.
See “Frequently Occurring Operands,” at the beginning of this section, for
more information.
VARS
output-vars-list
specifies the variables that contain the message to be sent to the security exit.
Multiple variables must be enclosed in parentheses and separated by commas.
variable
*
specifies a set of output variables. See “Frequently Occurring Operands,” at
the beginning of this section, for more information.