support_response_t

A structure that represents a response message for support callbacks.

Synopsis:

typedef struct support_response {
    unsigned short version_major ;
    unsigned short version_minor ;
    char info [0];
}support_response_t;

Since:

BlackBerry 10.2.0

Data:

unsigned short version_major
The major version number.
unsigned short version_minor
The minor version number.
char info[0]
A JSON string listing information on the domain or API that's requested.

Library:

libvpn_ext (For the qcc command, use the -l vpn_ext option to link against this library)

Description:

The response message includes a version number, which is made up of a major version number (version_major) and a minor version number (version_minor).