libsxmp/man/sxhub_set_channelcall.3

70 lines
2.0 KiB
Groff
Raw Normal View History

2015-10-27 00:20:44 +02:00
.TH SXHUB_SET_CHANNELCALL 3 "20 July 2015" "SXMP" "SXMP Library Manual"
.SH NAME
2015-10-27 00:20:44 +02:00
sxhub_set_channelcall \- Set callback for the connection links based on the connections set, called during connection link initiation on the client side.
.br
.SH SYNOPSIS
2015-10-27 00:20:44 +02:00
.B #include <sxmp/sxmp.h>
.sp
2015-10-27 00:20:44 +02:00
#define sxhub_set_channelcall(c, f)
.br
.sp
.SH DESCRIPTION
This macro should be used if you want to setup callback function fired while connection link initiating, it might be useful to sync your client ability to support masters protocol and/or correctly initialize your application.
.br
This macro will set on
.B c
connections link set callback
.B f
which is a function pointer of the type:
.br
.sp
2015-11-11 16:01:18 +02:00
.B typedef int (*channelcall_t)(sxlink_t *co, int tid, char *desc);
.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
2015-11-11 16:01:18 +02:00
.B SXE_SUCCESS.
In fail case other code error should be returned. It's a good practice to return
2015-11-11 16:01:18 +02:00
.B SXE_IGNORED
if your application doesn't support protocol channels or outdated.
.br
2015-10-27 00:20:44 +02:00
SXMP will push channel type id in
.B tid
and text description in
.B desc
.br
This call will be invoked on each RPC channel.
.SH RETURN VALUE
None.
.SH ERRORS
None.
.SH BUGS
None known yet.
.SH EXAMPLE
This example shows the code prototype of such function:
.RS
.nf
.if t .ft CW
2015-11-11 16:01:18 +02:00
int rpcchanack(sxlink_t *co, int tid, char *desc)
{
fprintf(stdout, "Master side supported RPC channel type: %d '%s'\n", tid, desc);
2015-11-11 16:01:18 +02:00
return SXE_SUCCESS; /* all is fine */
}
.SH APPLICATION USAGE
This function should be used on the client service, it will not be called on the master side anyway, since master provide RPC channels.
.SH RATIONALE
None.
.SH SEE ALSO
2015-10-27 00:20:44 +02:00
.BI sxhub_set_ondestroy(3)
,
2015-11-11 16:01:18 +02:00
.BI sxlink_getpriv(3)
,
2015-11-11 16:01:18 +02:00
.BI sxlink_setpriv(3)
.SH COPYRIGHT
2015-12-29 22:42:52 +02:00
This software licensed under GNU LGPL v3. See COPYING for further details.
.br
(c) Askele Group 2013-2015 <http://askele.com>
.SH AUTHOR
Alexander Vdolainen (vdo@askele.com)