#!/usr/bin/boiler -i
{
void error()
{
if (error) { printf("lib-error: "+perror+"\n"); };
return;
}

/* synchronous requests with UDP */
long clnt=clnt_create("localhost",576871000,2,"udp");
if (clnt==-1) { error(); exit(); };

void terminate external(clnt,"terminate","secret")
terminate();
clnt_destroy(clnt);
}
