Exemplo n.º 1
0
/*---------------------------------------------------------------------------*/
static void
reset_interval(struct trickle_conn *c)
{
  PT_INIT(&c->pt);
  run_trickle(c);
}
Exemplo n.º 2
0
/*---------------------------------------------------------------------------*/
static void
reset_interval(struct propple_socket *s)
{
  PT_INIT(&s->pt);
  run_trickle(s);
}
Exemplo n.º 3
0
/*---------------------------------------------------------------------------*/
static void
timer_callback(void *ptr)
{
  struct trickle_conn *c = ptr;
  run_trickle(c);
}
Exemplo n.º 4
0
/*---------------------------------------------------------------------------*/
static void
timer_callback(void *ptr)
{
  struct propple_socket *s = ptr;
  run_trickle(s);
}