HP-UX SNAplus2 R7 APPC Programmer's Guide

APPC Conversation Verbs
MC_REQUEST_TO_SEND and REQUEST_TO_SEND
The denition of the VCB structure for the MC_REQUEST_TO_SEND verb is as follows:
typedef struct mc_request_to_send
{
AP_UINT16 opcode;
unsigned char opext;
unsigned char format; /* Reserved */
AP_UINT16 primary_rc;
AP_UINT32 secondary_rc;
unsigned char tp_id[8];
AP_UINT32 conv_id;
} MC_REQUEST_TO_SEND;
4.14.4 VCB Structure: REQUEST_TO_SEND
The denition of the VCB structure for the REQUEST_TO_SEND verb is as follows:
typedef struct request_to_send
{
AP_UINT16 opcode;
unsigned char opext;
unsigned char format; /* Reserved */
AP_UINT16 primary_rc;
AP_UINT32 secondary_rc;
unsigned char tp_id[8];
AP_UINT32 conv_id;
} REQUEST_TO_SEND;
4.14.5 VCB Structure: MC_REQUEST_TO_SEND (Windows)
WINDOWS
The denition of the VCB structure for the MC_REQUEST_TO_SEND verb is as follows:
typedef struct mc_request_to_send
{
unsigned short opcode;
unsigned char opext;
unsigned char reserv2;
unsigned short primary_rc;
unsigned long secondary_rc;
unsigned char tp_id[8];
unsigned long conv_id;
} MC_REQUEST_TO_SEND;
4.14.6 VCB Structure: REQUEST_TO_SEND (Windows)
The denition of the VCB structure for the REQUEST_TO_SEND verb is as follows:
typedef struct request_to_send
{
unsigned short opcode;
unsigned char opext;
unsigned char reserv2;
unsigned short primary_rc;
unsigned long secondary_rc;
unsigned char tp_id[8];
unsigned long conv_id;
202