wip_SSLClientCreateOpts

I can happily create a SSL client connection with wip_SSLClientCreateOpts and connect to my server, however when I add the WIP_COPT_KEEPALIVE,1 in the following construct format then the command errors and doesn’t create the connection. Does anyone know if KeepAlive is a valid option with SSLClientCreateOpts?

This works fine;
wipChannel = wip_SSLClientCreateOpts ( PeerStrAddr,
ipeerPort,
evh_channel,
NULL,
WIP_COPT_SESSION,
reusableSession,
WIP_COPT_END );

This errors;
wipChannel = wip_SSLClientCreateOpts ( PeerStrAddr,
ipeerPort,
evh_channel,
NULL,
WIP_COPT_KEEPALIVE,
1,
WIP_COPT_SESSION,
reusableSession,
WIP_COPT_END );

What error(s) :question:

Sorry wasn’t following my own advice to rtfm - the answer is no and it’s in the SSL_UGD.pdf document section 4.3.2

awneil - by error I simply meant that the wipChannel returned was invalid (i.e. not a positive result).

Cheers.