/*---------------------------------------------------------------------------*/ static void reset_interval(struct trickle_conn *c) { PT_INIT(&c->pt); run_trickle(c); }
/*---------------------------------------------------------------------------*/ static void reset_interval(struct propple_socket *s) { PT_INIT(&s->pt); run_trickle(s); }
/*---------------------------------------------------------------------------*/ static void timer_callback(void *ptr) { struct trickle_conn *c = ptr; run_trickle(c); }
/*---------------------------------------------------------------------------*/ static void timer_callback(void *ptr) { struct propple_socket *s = ptr; run_trickle(s); }