Home

 

COBOL declaration

**   MQSCO structure
  10 MQSCO.
**    Structure identifier
   15 MQSCO-STRUCID           PIC X(4).
**    Structure version number
   15 MQSCO-VERSION           PIC S9(9) BINARY.
**    Location of SSL key repository
   15 MQSCO-KEYREPOSITORY     PIC X(256).
**    Cryptographic hardware configuration string
   15 MQSCO-CRYPTOHARDWARE    PIC X(256).
**    Number of MQAIR records present
   15 MQSCO-AUTHINFORECCOUNT  PIC S9(9) BINARY.
**    Offset of first MQAIR record from start of MQSCO structure
   15 MQSCO-AUTHINFORECOFFSET PIC S9(9) BINARY.
**    Address of first MQAIR record
   15 MQSCO-AUTHINFORECPTR    POINTER.


 

Home