diff options
Diffstat (limited to 'share/man/man9/rtlabel_id2name.9')
-rw-r--r-- | share/man/man9/rtlabel_id2name.9 | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/share/man/man9/rtlabel_id2name.9 b/share/man/man9/rtlabel_id2name.9 new file mode 100644 index 00000000000..f3046042a33 --- /dev/null +++ b/share/man/man9/rtlabel_id2name.9 @@ -0,0 +1,65 @@ +.\" $OpenBSD: rtlabel_id2name.9,v 1.1 2014/03/18 09:01:11 mpi Exp $ +.\" +.\" Copyright (c) 2011 Bret S. Lambert <blambert@openbsd.org> +.\" 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 18 2014 $ +.Dt RTLABEL_ID2NAME 9 +.Os +.Sh NAME +.Nm rtlabel_id2name , +.Nm rtlabel_id2sa , +.Nm rtlabel_name2id , +.Nm rtlabel_unref +.Nd manipulate route labels +.Sh SYNOPSIS +.In net/route.h +.Fn rtlabel_id2name "u_int16_t id" +.Ft struct sockaddr * +.Fn rtlabel_id2sa "u_int16_t labelid" "struct sockaddr_rtlabel *sa_rl" +.Ft u_int16_t +.Fn rtlabel_name2id "char *name" +.Ft const char * +.Ft void +.Fn rtlabel_unref "u_int16_t id" +.Sh DESCRIPTION +Route labels are arbitrary data appended to routes and can be acted upon by +.Xr pf 4 . +.Bl -tag -width Ds +.It Fn rtlabel_name2id "char *name" +Return numerical ID of the route label named +.Fa name , +creating the label if it does not already exist. +.It Fn rtlabel_id2name "u_int16_t id" +Return the string name of the route label with ID +.Fa id . +.It Fn rtlabel_id2sa "u_int16_t labelid" "struct sockaddr_rtlabel *sa_rl" +Populate +.Fa sa_rl +with the data from the route label specified by +.Fa labelid . +.It Fn rtlabel_unref "u_int16_t id" +Remove a reference to the route label with ID +.Fa id , +freeing the label if the reference count drops to 0. +.El +.Sh RETURN VALUES +.Fn rtlabel_name2id +returns +.Fa 0 +if it was unable to create a route label. +.Sh SEE ALSO +.Xr route 4 , +.Xr route 9 |