.\" $OpenBSD: rt_timer_add.9,v 1.4 2014/03/26 14:50:30 mpi Exp $ .\" .\" Copyright (c) 2011 Bret S. Lambert .\" All rights reserved. .\" .\" Permission to use, copy, modify, and distribute this software for any .\" purpose with or without fee is hereby granted, provided that the above .\" copyright notice and this permission notice appear in all copies. .\" .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" .Dd $Mdocdate: March 26 2014 $ .Dt RT_TIMER_ADD 9 .Os .Sh NAME .Nm rt_timer_add , .Nm rt_timer_remove_all , .Nm rt_timer_queue_create , .Nm rt_timer_queue_count , .Nm rt_timer_queue_change , .Nm rt_timer_queue_destroy .Nd route timer queues interface .Sh SYNOPSIS .In net/route.h .Ft int .Fn rt_timer_add "struct rtentry *rt" \ "void (*func)(struct rtentry *, struct rttimer *)" \ "struct rttimer_queue *queue" "u_int rtableid" .Ft void .Fn rt_timer_remove_all "struct rtentry *rt" .Ft struct rttimer_queue * .Fn rt_timer_queue_create "u_int timeout" .Ft unsigned long .Fn rt_timer_queue_count "struct rttimer_queue *rtq" .Ft void .Fn rt_timer_queue_change "struct rttimer_queue *rtq" "long timeout" .Ft void .Fn rt_timer_queue_destroy "struct rttimer_queue *rtq" .Sh DESCRIPTION Route timer queues provide a method of queueing routing-related actions to be triggered once per second. .Bl -tag -width Ds .It Fn rt_timer_add "struct rtentry *rt" \ "void (*func)(struct rtentry *, struct rttimer *)" \ "struct rttimer_queue *queue" "u_int rtableid" Schedule .Fa func to be called on .Fa rt using the timeout of .Fa queue . If .Fa rt already has a call to .Fa func scheduled on any timer queue, it will be replaced with the new invocation. .It Fn rt_timer_remove_all "struct rtentry *rt" Remove all timeouts associated with .Fa rt from all routing timer queues. .It Fn rt_timer_queue_create "u_int timeout" Create a timer queue with a timeout of .Fa timeout seconds. .It Fn rt_timer_queue_count "struct rtentry *rt" Return the number of timers present in the queue .Fa rtq . .It Fn rt_timer_queue_change "struct rttimer_queue *rtq" "long timeout" Set timeout for .Fa rtq to .Fa timeout seconds. .It Fn rt_timer_queue_destroy "struct rttimer_queue *rtq" Remove all timeouts from the routing timer queue .Fa rtq , execute their associated callback and destroy it. .El .Sh CONTEXT .Fn rt_timer_add , .Fn rt_timer_remove_all , .Fn rt_timer_queue_create , .Fn rt_timer_queue_count , .Fn rt_timer_queue_change , and .Fn rt_timer_queue_destroy can be called during autoconf, from process context, or from interrupt context. .Sh RETURN VALUES .Fn rt_timer_add may fail with .Er ENOBUFS if memory could not be allocated for the timeout. .Sh SEE ALSO .Xr route 4 , .Xr route 9