support_request_t

A structure that represents a request message for support callbacks.

Synopsis:

typedef struct support_request {
    char domain [VPN_EXT_NAME_LEN+1];
    char api [VPN_EXT_NAME_LEN+1];
}support_request_t;

Since:

BlackBerry 10.2.0

Data:

char domain[VPN_EXT_NAME_LEN+1]
The domain that we're checking on.

This value is one of VPN_EXT_DOMAIN_*.

char api[VPN_EXT_NAME_LEN+1]
The API that we're checking on.

This value is one of VPN_EXT_DOMAIN_SUPPORT_* or any API name.

Library:

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

Description: