aboutsummaryrefslogtreecommitdiff
path: root/Plugins/ping.c
blob: 376a19deb131d181ed82e0c338fd00a56c670032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "plugin.h"

INFO("ask fs.frame to bang the receive given as 1st argument")

// can be used at the end of a processing chain to inform when the processing is done.
// very useful.

void perform_effect(_frame f, _args a)
{
	if(!a.s) return;

	sprintf(a.ret, "%s=0", a.s);	// bang receive given in a.s
}