diff --git a/man/Makefile.am b/man/Makefile.am index 8075986..b892a53 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,3 +1,3 @@ man_MANS = sxmsg_rreply.3 connections_create.3 connections_init.3 connections_destroy.3 connections_free.3 \ sntl_init.3 connections_setsslserts.3 connections_set_priv.3 connections_get_priv.3 \ - connections_set_ondestroy.3 + connections_set_ondestroy.3 connections_set_onpulse.3 connections_set_sslvalidate.3 diff --git a/man/connections_set_ondestroy.3 b/man/connections_set_ondestroy.3 index 7518364..8aa670c 100644 --- a/man/connections_set_ondestroy.3 +++ b/man/connections_set_ondestroy.3 @@ -1,6 +1,6 @@ -.TH CONNECTIONS_ON_DESTROY 3 "20 July 2015" "SNTLLv2" "SNTL Library Manual" +.TH CONNECTIONS_SET_ONDESTROY 3 "20 July 2015" "SNTLLv2" "SNTL Library Manual" .SH NAME -connections_on_destroy \- Set callback for the connection links based on the connections set, called in case of link destroying +connections_set_ondestroy \- Set callback for the connection links based on the connections set, called in case of link destroying .br .SH SYNOPSIS .B #include @@ -39,6 +39,8 @@ None. .BI connections_set_priv(3) , .BI connections_get_priv(3) +, +.BI connections_set_onpulse(3) .SH COPYRIGHT This is a proprietary software. See COPYING for further details. .br diff --git a/man/connections_set_onpulse.3 b/man/connections_set_onpulse.3 index 1111172..0de5814 100644 --- a/man/connections_set_onpulse.3 +++ b/man/connections_set_onpulse.3 @@ -1,6 +1,6 @@ .TH CONNECTIONS_SET_ONPULSE 3 "20 July 2015" "SNTLLv2" "SNTL Library Manual" .SH NAME -connections_on_destroy \- Set callback for the connection links based on the connections set, called in case of link pulse message +connections_set_onpulse \- Set callback for the connection links based on the connections set, called in case of link pulse message .br .SH SYNOPSIS .B #include @@ -40,7 +40,7 @@ None. , .BI connections_get_priv(3) , -.BI connections_set_onpulse(3) +.BI connections_set_ondestroy(3) .SH COPYRIGHT This is a proprietary software. See COPYING for further details. .br diff --git a/man/connections_set_sslvalidate.3 b/man/connections_set_sslvalidate.3 new file mode 100644 index 0000000..fd2ee59 --- /dev/null +++ b/man/connections_set_sslvalidate.3 @@ -0,0 +1,57 @@ +.TH CONNECTIONS_SET_SSLVALIDATE 3 "20 July 2015" "SNTLLv2" "SNTL Library Manual" +.SH NAME +connections_set_sslvalidate \- Set callback for the connection links based on the connections set, called to validate x.509 certificate of peer by serial number. +.br +.SH SYNOPSIS +.B #include +.sp +#define connections_set_sslvalidate(c, f) + +.br +.sp +.SH DESCRIPTION +This macro should be used if you want to setup callback function fired while connection link initiating, and depending on returning value will establish link or destroy it. +.br +This macro will set on +.B c +connections link set callback +.B f +which is a function pointer of the type: +.br +.sp +.B typedef int (*validate_sslpem_t)(conn_t *); +.br +.sp +It will pass a pointer to the connection link initiating now. Link isn't set fully at this moment and doesn't pass any messages and don't works with channel's operations. To pass initiation to the next stage this function should return +.B SNE_SUCCESS. +In fail case other code error should be returned. +.SH RETURN VALUE +None. +.SH ERRORS +None. +.SH BUGS +None known yet. +.SH EXAMPLE +None. +.SH APPLICATION USAGE +None. +.SH RATIONALE +None. +.SH SEE ALSO +.BI connections_set_priv(3) +, +.BI connections_get_priv(3) +, +.BI connections_set_ondestroy(3) +, +.BI connection_getpctx(3) +, +.BI connection_getpriv(3) +, +.BI connection_setpriv(3) +.SH COPYRIGHT +This is a proprietary software. See COPYING for further details. +.br +(c) Askele Group 2013-2015 +.SH AUTHOR +Alexander Vdolainen (vdo@askele.com)