2014-07-11 22:12:11 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-03-03 19:51:42 +01:00
|
|
|
#include "cw/dbg.h"
|
2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
#include "wtp.h"
|
|
|
|
#include "wtp_conf.h"
|
|
|
|
|
|
|
|
int sulking_state()
|
|
|
|
{
|
2015-04-11 19:00:51 +02:00
|
|
|
cw_dbg(DBG_INFO,"Sulking state, sleeping for %i seconds",conf_silent_interval);
|
2014-07-11 22:12:11 +02:00
|
|
|
sleep(conf_silent_interval);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|