update sample

git-svn-id: http://svn.openzap.org/svn/openzap/trunk@320 a93c3328-9c30-0410-af19-c9cd2b2d52af
This commit is contained in:
Anthony Minessale 2007-11-06 16:55:29 +00:00
parent e569e45f96
commit 07f6b88510
1 changed files with 6 additions and 0 deletions

View File

@ -41,6 +41,11 @@ static ZIO_CONFIGURE_FUNCTION(skel_configure)
return ZAP_FAIL;
}
static ZIO_CONFIGURE_SPAN_FUNCTION(skel_configure_span)
{
}
static ZIO_OPEN_FUNCTION(skel_open)
{
ZIO_OPEN_MUZZLE;
@ -106,6 +111,7 @@ zap_status_t skel_init(zap_io_interface_t **zint)
skel_interface.name = "skel";
skel_interface.configure = skel_configure;
skel_interface.configure_span = skel_configure_span;
skel_interface.open = skel_open;
skel_interface.close = skel_close;
skel_interface.wait = skel_wait;