OSDN Git Service

(split) LDP: Update POT and ja.po to LDP v3.64
[linuxjm/LDP_man-pages.git] / po4a / netlink / po / netlink.pot
index 4bb341e..79d995d 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2014-04-13 10:27+0900\n"
+"POT-Creation-Date: 2014-04-17 13:14+0900\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25,7 +25,7 @@ msgstr ""
 #. type: TH
 #: build/C/man3/netlink.3:10
 #, no-wrap
-msgid "2012-08-05"
+msgid "2014-03-20"
 msgstr ""
 
 #. type: TH
@@ -57,71 +57,68 @@ msgstr ""
 msgid "SYNOPSIS"
 msgstr ""
 
-#.  FIXME . what will glibc 2.1 use here?
-#.  May 2007: glibc 2.5, things look to be unchanged -- the header file
-#.  is still linux/netlink.h -- mtk
 #. type: Plain text
-#: build/C/man3/netlink.3:19
+#: build/C/man3/netlink.3:16
 #, no-wrap
 msgid "B<#include E<lt>asm/types.hE<gt>>\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:21
+#: build/C/man3/netlink.3:18
 #, no-wrap
 msgid "B<#include E<lt>linux/netlink.hE<gt>>\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:23
+#: build/C/man3/netlink.3:20
 #, no-wrap
 msgid "B<int NLMSG_ALIGN(size_t >I<len>B<);>\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:25
+#: build/C/man3/netlink.3:22
 #, no-wrap
 msgid "B<int NLMSG_LENGTH(size_t >I<len>B<);>\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:27
+#: build/C/man3/netlink.3:24
 #, no-wrap
 msgid "B<int NLMSG_SPACE(size_t >I<len>B<);>\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:29
+#: build/C/man3/netlink.3:26
 #, no-wrap
 msgid "B<void *NLMSG_DATA(struct nlmsghdr *>I<nlh>B<);>\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:31
+#: build/C/man3/netlink.3:28
 #, no-wrap
 msgid "B<struct nlmsghdr *NLMSG_NEXT(struct nlmsghdr *>I<nlh>B<, int >I<len>B<);>\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:33
+#: build/C/man3/netlink.3:30
 #, no-wrap
 msgid "B<int NLMSG_OK(struct nlmsghdr *>I<nlh>B<, int >I<len>B<);>\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:35
+#: build/C/man3/netlink.3:32
 #, no-wrap
 msgid "B<int NLMSG_PAYLOAD(struct nlmsghdr *>I<nlh>B<, int >I<len>B<);>\n"
 msgstr ""
 
 #. type: SH
-#: build/C/man3/netlink.3:36 build/C/man7/netlink.7:22 build/C/man3/rtnetlink.3:39 build/C/man7/rtnetlink.7:28
+#: build/C/man3/netlink.3:33 build/C/man7/netlink.7:22 build/C/man3/rtnetlink.3:39 build/C/man7/rtnetlink.7:28
 #, no-wrap
 msgid "DESCRIPTION"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:44
+#: build/C/man3/netlink.3:41
 msgid ""
 "I<E<lt>linux/netlink.hE<gt>> defines several standard macros to access or "
 "create a netlink datagram.  They are similar in spirit to the macros defined "
@@ -130,62 +127,62 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: build/C/man3/netlink.3:44
+#: build/C/man3/netlink.3:41
 #, no-wrap
 msgid "B<NLMSG_ALIGN>()"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:47
+#: build/C/man3/netlink.3:44
 msgid "Round the length of a netlink message up to align it properly."
 msgstr ""
 
 #. type: TP
-#: build/C/man3/netlink.3:47
+#: build/C/man3/netlink.3:44
 #, no-wrap
 msgid "B<NLMSG_LENGTH>()"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:55
+#: build/C/man3/netlink.3:52
 msgid ""
 "Given the payload length, I<len>, this macro returns the aligned length to "
 "store in the I<nlmsg_len> field of the I<nlmsghdr>."
 msgstr ""
 
 #. type: TP
-#: build/C/man3/netlink.3:55
+#: build/C/man3/netlink.3:52
 #, no-wrap
 msgid "B<NLMSG_SPACE>()"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:60
+#: build/C/man3/netlink.3:57
 msgid ""
 "Return the number of bytes that a netlink message with payload of I<len> "
 "would occupy."
 msgstr ""
 
 #. type: TP
-#: build/C/man3/netlink.3:60
+#: build/C/man3/netlink.3:57
 #, no-wrap
 msgid "B<NLMSG_DATA>()"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:64
+#: build/C/man3/netlink.3:61
 msgid "Return a pointer to the payload associated with the passed I<nlmsghdr>."
 msgstr ""
 
 #.  this is bizarre, maybe the interface should be fixed.
 #. type: TP
-#: build/C/man3/netlink.3:64
+#: build/C/man3/netlink.3:61
 #, no-wrap
 msgid "B<NLMSG_NEXT>()"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:80
+#: build/C/man3/netlink.3:77
 msgid ""
 "Get the next I<nlmsghdr> in a multipart message.  The caller must check if "
 "the current I<nlmsghdr> didn't have the B<NLMSG_DONE> set\\(emthis function "
@@ -195,79 +192,74 @@ msgid ""
 msgstr ""
 
 #. type: TP
-#: build/C/man3/netlink.3:80
+#: build/C/man3/netlink.3:77
 #, no-wrap
 msgid "B<NLMSG_OK>()"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:84
+#: build/C/man3/netlink.3:81
 msgid ""
 "Return true if the netlink message is not truncated and is in a form "
 "suitable for parsing."
 msgstr ""
 
 #. type: TP
-#: build/C/man3/netlink.3:84
+#: build/C/man3/netlink.3:81
 #, no-wrap
 msgid "B<NLMSG_PAYLOAD>()"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:88
+#: build/C/man3/netlink.3:85
 msgid "Return the length of the payload associated with the I<nlmsghdr>."
 msgstr ""
 
 #. type: SH
-#: build/C/man3/netlink.3:88 build/C/man3/rtnetlink.3:82
+#: build/C/man3/netlink.3:85 build/C/man3/rtnetlink.3:82
 #, no-wrap
 msgid "CONFORMING TO"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:90 build/C/man3/rtnetlink.3:84
+#: build/C/man3/netlink.3:87 build/C/man3/rtnetlink.3:84
 msgid "These macros are nonstandard Linux extensions."
 msgstr ""
 
 #. type: SH
-#: build/C/man3/netlink.3:90 build/C/man7/netlink.7:387
+#: build/C/man3/netlink.3:87 build/C/man7/netlink.7:384
 #, no-wrap
 msgid "NOTES"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:94
+#: build/C/man3/netlink.3:91
 msgid ""
 "It is often better to use netlink via I<libnetlink> than via the low-level "
 "kernel interface."
 msgstr ""
 
 #. type: SH
-#: build/C/man3/netlink.3:94 build/C/man7/netlink.7:470 build/C/man3/rtnetlink.3:122 build/C/man7/rtnetlink.7:470
+#: build/C/man3/netlink.3:91 build/C/man7/netlink.7:467 build/C/man3/rtnetlink.3:122 build/C/man7/rtnetlink.7:460
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:96
-msgid "B<netlink>(7)"
-msgstr ""
-
-#. type: Plain text
-#: build/C/man3/netlink.3:100
-msgid "E<.UR ftp://ftp.inr.ac.ru\\:/ip-routing\\:/iproute2*> E<.UE> for libnetlink"
+#: build/C/man3/netlink.3:94
+msgid "B<libnetlink>(3), B<netlink>(7)"
 msgstr ""
 
 #. type: SH
-#: build/C/man3/netlink.3:100 build/C/man7/netlink.7:485 build/C/man3/rtnetlink.3:126 build/C/man7/rtnetlink.7:475
+#: build/C/man3/netlink.3:94 build/C/man7/netlink.7:482 build/C/man3/rtnetlink.3:126 build/C/man7/rtnetlink.7:465
 #, no-wrap
 msgid "COLOPHON"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/netlink.3:107 build/C/man7/netlink.7:492 build/C/man3/rtnetlink.3:133 build/C/man7/rtnetlink.7:482
+#: build/C/man3/netlink.3:101 build/C/man7/netlink.7:489 build/C/man3/rtnetlink.3:133 build/C/man7/rtnetlink.7:472
 msgid ""
-"This page is part of release 3.63 of the Linux I<man-pages> project.  A "
+"This page is part of release 3.64 of the Linux I<man-pages> project.  A "
 "description of the project, and information about reporting bugs, can be "
 "found at \\%http://www.kernel.org/doc/man-pages/."
 msgstr ""
@@ -605,7 +597,7 @@ msgid "Standard flag bits in I<nlmsg_flags>\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:181 build/C/man7/netlink.7:199 build/C/man7/netlink.7:224 build/C/man7/rtnetlink.7:99 build/C/man7/rtnetlink.7:167 build/C/man7/rtnetlink.7:218 build/C/man7/rtnetlink.7:244 build/C/man7/rtnetlink.7:324 build/C/man7/rtnetlink.7:442
+#: build/C/man7/netlink.7:181 build/C/man7/netlink.7:197 build/C/man7/netlink.7:222 build/C/man7/rtnetlink.7:98 build/C/man7/rtnetlink.7:165 build/C/man7/rtnetlink.7:215 build/C/man7/rtnetlink.7:239 build/C/man7/rtnetlink.7:314 build/C/man7/rtnetlink.7:432
 #, no-wrap
 msgid "_\n"
 msgstr ""
@@ -635,7 +627,7 @@ msgid "B<NLMSG_DONE>.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:186 build/C/man7/netlink.7:204 build/C/man7/netlink.7:209 build/C/man7/rtnetlink.7:224 build/C/man7/rtnetlink.7:227 build/C/man7/rtnetlink.7:236 build/C/man7/rtnetlink.7:248 build/C/man7/rtnetlink.7:273 build/C/man7/rtnetlink.7:295
+#: build/C/man7/netlink.7:186 build/C/man7/netlink.7:202 build/C/man7/netlink.7:209 build/C/man7/rtnetlink.7:221 build/C/man7/rtnetlink.7:224 build/C/man7/rtnetlink.7:233 build/C/man7/rtnetlink.7:243 build/C/man7/rtnetlink.7:266 build/C/man7/rtnetlink.7:286
 #, no-wrap
 msgid "T}\n"
 msgstr ""
@@ -653,93 +645,105 @@ msgid "NLM_F_ECHO:Echo this request.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:198
+#: build/C/man7/netlink.7:196
 #, no-wrap
 msgid "Additional flag bits for GET requests\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:200
+#: build/C/man7/netlink.7:198
 #, no-wrap
 msgid "NLM_F_ROOT:Return the complete table instead of a single entry.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:201
+#: build/C/man7/netlink.7:199
 #, no-wrap
 msgid "NLM_F_MATCH:T{\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:202
+#: build/C/man7/netlink.7:200
 #, no-wrap
 msgid "Return all entries matching criteria passed in message content.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:203
+#: build/C/man7/netlink.7:201
 #, no-wrap
 msgid "Not implemented yet.\n"
 msgstr ""
 
 #.  FIXME NLM_F_ATOMIC is not used any more?
 #. type: tbl table
-#: build/C/man7/netlink.7:206
+#: build/C/man7/netlink.7:204
 #, no-wrap
 msgid "NLM_F_ATOMIC:Return an atomic snapshot of the table.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:207
+#: build/C/man7/netlink.7:205
 #, no-wrap
 msgid "NLM_F_DUMP:T{\n"
 msgstr ""
 
 #. type: tbl table
+#: build/C/man7/netlink.7:206
+#, no-wrap
+msgid "Convenience macro; equivalent to\n"
+msgstr ""
+
+#. type: tbl table
+#: build/C/man7/netlink.7:207
+#, no-wrap
+msgid ".br\n"
+msgstr ""
+
+#. type: tbl table
 #: build/C/man7/netlink.7:208
 #, no-wrap
-msgid "Convenience macro; equivalent to (NLM_F_ROOT|NLM_F_MATCH).\n"
+msgid "(NLM_F_ROOT|NLM_F_MATCH).\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:218
+#: build/C/man7/netlink.7:217
 msgid ""
 "Note that B<NLM_F_ATOMIC> requires the B<CAP_NET_ADMIN> capability or an "
 "effective UID of 0."
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:223
+#: build/C/man7/netlink.7:221
 #, no-wrap
 msgid "Additional flag bits for NEW requests\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:225
+#: build/C/man7/netlink.7:223
 #, no-wrap
 msgid "NLM_F_REPLACE:Replace existing matching object.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:226
+#: build/C/man7/netlink.7:224
 #, no-wrap
 msgid "NLM_F_EXCL:Don't replace if the object already exists.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:227
+#: build/C/man7/netlink.7:225
 #, no-wrap
 msgid "NLM_F_CREATE:Create object if it doesn't already exist.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/netlink.7:228
+#: build/C/man7/netlink.7:226
 #, no-wrap
 msgid "NLM_F_APPEND:Add to the end of the object list.\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:245
+#: build/C/man7/netlink.7:242
 msgid ""
 "I<nlmsg_seq> and I<nlmsg_pid> are used to track messages.  I<nlmsg_pid> "
 "shows the origin of the message.  Note that there isn't a 1:1 relationship "
@@ -750,12 +754,12 @@ msgstr ""
 
 #.  FIXME Explain more about nlmsg_seq and nlmsg_pid.
 #. type: Plain text
-#: build/C/man7/netlink.7:252
+#: build/C/man7/netlink.7:249
 msgid "Both I<nlmsg_seq> and I<nlmsg_pid> are opaque to netlink core."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:270
+#: build/C/man7/netlink.7:267
 msgid ""
 "Netlink is not a reliable protocol.  It tries its best to deliver a message "
 "to its destination(s), but may drop messages when an out-of-memory condition "
@@ -768,7 +772,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:281
+#: build/C/man7/netlink.7:278
 msgid ""
 "However, reliable transmissions from kernel to user are impossible in any "
 "case.  The kernel can't send a netlink message if the socket buffer is full: "
@@ -779,13 +783,13 @@ msgid ""
 msgstr ""
 
 #. type: SS
-#: build/C/man7/netlink.7:281
+#: build/C/man7/netlink.7:278
 #, no-wrap
 msgid "Address formats"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:291
+#: build/C/man7/netlink.7:288
 msgid ""
 "The I<sockaddr_nl> structure describes a netlink client in user space or in "
 "the kernel.  A I<sockaddr_nl> can be either unicast (only sent to one peer) "
@@ -793,7 +797,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:300
+#: build/C/man7/netlink.7:297
 #, no-wrap
 msgid ""
 "struct sockaddr_nl {\n"
@@ -805,7 +809,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:331
+#: build/C/man7/netlink.7:328
 msgid ""
 "I<nl_pid> is the unicast address of netlink socket.  It's always 0 if the "
 "destination is in the kernel.  For a user-space process, I<nl_pid> is "
@@ -823,7 +827,7 @@ msgstr ""
 
 #.  commit d629b836d151d43332492651dd841d32e57ebe3b
 #. type: Plain text
-#: build/C/man7/netlink.7:368
+#: build/C/man7/netlink.7:365
 msgid ""
 "I<nl_groups> is a bit mask with every bit representing a netlink group "
 "number.  Each netlink family has a set of 32 multicast groups.  When "
@@ -845,18 +849,18 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: build/C/man7/netlink.7:368 build/C/man7/rtnetlink.7:465
+#: build/C/man7/netlink.7:365 build/C/man7/rtnetlink.7:455
 #, no-wrap
 msgid "VERSIONS"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:370
+#: build/C/man7/netlink.7:367
 msgid "The socket interface to netlink is a new feature of Linux 2.2."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:374
+#: build/C/man7/netlink.7:371
 msgid ""
 "Linux 2.0 supported a more primitive device-based netlink interface (which "
 "is still available as a compatibility option).  This obsolete interface is "
@@ -864,63 +868,63 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:376
+#: build/C/man7/netlink.7:373
 msgid "NETLINK_SELINUX appeared in Linux 2.6.4."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:378
+#: build/C/man7/netlink.7:375
 msgid "NETLINK_AUDIT appeared in Linux 2.6.6."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:380
+#: build/C/man7/netlink.7:377
 msgid "NETLINK_KOBJECT_UEVENT appeared in Linux 2.6.10."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:382
+#: build/C/man7/netlink.7:379
 msgid "NETLINK_W1 and NETLINK_FIB_LOOKUP appeared in Linux 2.6.13."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:385
+#: build/C/man7/netlink.7:382
 msgid ""
 "NETLINK_INET_DIAG, NETLINK_CONNECTOR and NETLINK_NETFILTER appeared in Linux "
 "2.6.14."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:387
+#: build/C/man7/netlink.7:384
 msgid "NETLINK_GENERIC and NETLINK_ISCSI appeared in Linux 2.6.15."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:393
+#: build/C/man7/netlink.7:390
 msgid ""
 "It is often better to use netlink via I<libnetlink> or I<libnl> than via the "
 "low-level kernel interface."
 msgstr ""
 
 #. type: SH
-#: build/C/man7/netlink.7:393 build/C/man3/rtnetlink.3:84 build/C/man7/rtnetlink.7:468
+#: build/C/man7/netlink.7:390 build/C/man3/rtnetlink.3:84 build/C/man7/rtnetlink.7:458
 #, no-wrap
 msgid "BUGS"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:395
+#: build/C/man7/netlink.7:392
 msgid "This manual page is not complete."
 msgstr ""
 
 #. type: SH
-#: build/C/man7/netlink.7:395 build/C/man3/rtnetlink.3:86
+#: build/C/man7/netlink.7:392 build/C/man3/rtnetlink.3:86
 #, no-wrap
 msgid "EXAMPLE"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:403
+#: build/C/man7/netlink.7:400
 msgid ""
 "The following example creates a B<NETLINK_ROUTE> netlink socket which will "
 "listen to the B<RTMGRP_LINK> (network interface create/delete/up/down "
@@ -929,13 +933,13 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:407
+#: build/C/man7/netlink.7:404
 #, no-wrap
 msgid "struct sockaddr_nl sa;\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:411
+#: build/C/man7/netlink.7:408
 #, no-wrap
 msgid ""
 "memset(&sa, 0, sizeof(sa));\n"
@@ -944,7 +948,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:414
+#: build/C/man7/netlink.7:411
 #, no-wrap
 msgid ""
 "fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);\n"
@@ -952,15 +956,15 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:421
+#: build/C/man7/netlink.7:418
 msgid ""
 "The next example demonstrates how to send a netlink message to the kernel "
-"(pid 0).  Note that application must take care of message sequence numbers "
-"in order to reliably track acknowledgements."
+"(pid 0).  Note that the application must take care of message sequence "
+"numbers in order to reliably track acknowledgements."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:428
+#: build/C/man7/netlink.7:425
 #, no-wrap
 msgid ""
 "struct nlmsghdr *nh;    /* The nlmsghdr with payload to send. */\n"
@@ -970,7 +974,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:436
+#: build/C/man7/netlink.7:433
 #, no-wrap
 msgid ""
 "msg = { &sa, sizeof(sa), &iov, 1, NULL, 0, 0 };\n"
@@ -983,18 +987,18 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:438
+#: build/C/man7/netlink.7:435
 #, no-wrap
 msgid "sendmsg(fd, &msg, 0);\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:442
+#: build/C/man7/netlink.7:439
 msgid "And the last example is about reading netlink message."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:451
+#: build/C/man7/netlink.7:448
 #, no-wrap
 msgid ""
 "int len;\n"
@@ -1006,7 +1010,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:454
+#: build/C/man7/netlink.7:451
 #, no-wrap
 msgid ""
 "msg = { &sa, sizeof(sa), &iov, 1, NULL, 0, 0 };\n"
@@ -1014,7 +1018,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:460
+#: build/C/man7/netlink.7:457
 #, no-wrap
 msgid ""
 "for (nh = (struct nlmsghdr *) buf; NLMSG_OK (nh, len);\n"
@@ -1025,7 +1029,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:464
+#: build/C/man7/netlink.7:461
 #, no-wrap
 msgid ""
 "    if (nh-E<gt>nlmsg_type == NLMSG_ERROR)\n"
@@ -1034,7 +1038,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:468
+#: build/C/man7/netlink.7:465
 #, no-wrap
 msgid ""
 "    /* Continue with parsing payload. */\n"
@@ -1043,26 +1047,26 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:475
+#: build/C/man7/netlink.7:472
 msgid "B<cmsg>(3), B<netlink>(3), B<capabilities>(7), B<rtnetlink>(7)"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:479
+#: build/C/man7/netlink.7:476
 msgid ""
 "E<.UR ftp://ftp.inr.ac.ru\\:/ip-routing\\:/iproute2*> information about "
 "libnetlink E<.UE>"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:483
+#: build/C/man7/netlink.7:480
 msgid ""
 "E<.UR http://people.suug.ch\\:/~tgr\\:/libnl/> information about libnl "
 "E<.UE>"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/netlink.7:485
+#: build/C/man7/netlink.7:482
 msgid "RFC 3549 \"Linux Netlink as an IP Services Protocol\""
 msgstr ""
 
@@ -1194,7 +1198,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man3/rtnetlink.3:86 build/C/man7/rtnetlink.7:470
+#: build/C/man3/rtnetlink.3:86 build/C/man7/rtnetlink.7:460
 msgid "This manual page is incomplete."
 msgstr ""
 
@@ -1372,92 +1376,92 @@ msgid ""
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:97
+#: build/C/man7/rtnetlink.7:96
 #, no-wrap
 msgid "Routing attributes\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:98 build/C/man7/rtnetlink.7:166 build/C/man7/rtnetlink.7:323
+#: build/C/man7/rtnetlink.7:97 build/C/man7/rtnetlink.7:164 build/C/man7/rtnetlink.7:313
 #, no-wrap
 msgid "rta_type:value type:description\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:100
+#: build/C/man7/rtnetlink.7:99
 #, no-wrap
 msgid "IFLA_UNSPEC:-:unspecified.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:101
+#: build/C/man7/rtnetlink.7:100
 #, no-wrap
 msgid "IFLA_ADDRESS:hardware address:interface L2 address\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:102
+#: build/C/man7/rtnetlink.7:101
 #, no-wrap
 msgid "IFLA_BROADCAST:hardware address:L2 broadcast address.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:103
+#: build/C/man7/rtnetlink.7:102
 #, no-wrap
 msgid "IFLA_IFNAME:asciiz string:Device name.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:104
+#: build/C/man7/rtnetlink.7:103
 #, no-wrap
 msgid "IFLA_MTU:unsigned int:MTU of the device.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:105
+#: build/C/man7/rtnetlink.7:104
 #, no-wrap
 msgid "IFLA_LINK:int:Link type.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:106
+#: build/C/man7/rtnetlink.7:105
 #, no-wrap
 msgid "IFLA_QDISC:asciiz string:Queueing discipline.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:107
+#: build/C/man7/rtnetlink.7:106
 #, no-wrap
 msgid "IFLA_STATS:T{\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:108
+#: build/C/man7/rtnetlink.7:107
 #, no-wrap
 msgid "see below\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:109
+#: build/C/man7/rtnetlink.7:108
 #, no-wrap
 msgid "T}:Interface Statistics.\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:119
+#: build/C/man7/rtnetlink.7:117
 msgid ""
 "The value type for B<IFLA_STATS> is I<struct rtnl_link_stats> (I<struct "
 "net_device_stats> in Linux 2.4 and earlier)."
 msgstr ""
 
 #. type: TP
-#: build/C/man7/rtnetlink.7:119
+#: build/C/man7/rtnetlink.7:117
 #, no-wrap
 msgid "B<RTM_NEWADDR>, B<RTM_DELADDR>, B<RTM_GETADDR>"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:132
+#: build/C/man7/rtnetlink.7:130
 msgid ""
 "Add, remove or receive information about an IP address associated with an "
 "interface.  In Linux 2.2, an interface can carry multiple IP addresses, this "
@@ -1467,7 +1471,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:141
+#: build/C/man7/rtnetlink.7:139
 #, no-wrap
 msgid ""
 "struct ifaddrmsg {\n"
@@ -1480,7 +1484,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:161
+#: build/C/man7/rtnetlink.7:159
 msgid ""
 "I<ifa_family> is the address family type (currently B<AF_INET> or "
 "B<AF_INET6>), I<ifa_prefixlen> is the length of the address mask of the "
@@ -1493,61 +1497,61 @@ msgid ""
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:165 build/C/man7/rtnetlink.7:322 build/C/man7/rtnetlink.7:440
+#: build/C/man7/rtnetlink.7:163 build/C/man7/rtnetlink.7:312 build/C/man7/rtnetlink.7:430
 #, no-wrap
 msgid "Attributes\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:168
+#: build/C/man7/rtnetlink.7:166
 #, no-wrap
 msgid "IFA_UNSPEC:-:unspecified.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:169
+#: build/C/man7/rtnetlink.7:167
 #, no-wrap
 msgid "IFA_ADDRESS:raw protocol address:interface address\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:170
+#: build/C/man7/rtnetlink.7:168
 #, no-wrap
 msgid "IFA_LOCAL:raw protocol address:local address\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:171
+#: build/C/man7/rtnetlink.7:169
 #, no-wrap
 msgid "IFA_LABEL:asciiz string:name of the interface\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:172
+#: build/C/man7/rtnetlink.7:170
 #, no-wrap
 msgid "IFA_BROADCAST:raw protocol address:broadcast address.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:173
+#: build/C/man7/rtnetlink.7:171
 #, no-wrap
 msgid "IFA_ANYCAST:raw protocol address:anycast address\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:174
+#: build/C/man7/rtnetlink.7:172
 #, no-wrap
 msgid "IFA_CACHEINFO:struct ifa_cacheinfo:Address information.\n"
 msgstr ""
 
 #. type: TP
-#: build/C/man7/rtnetlink.7:177
+#: build/C/man7/rtnetlink.7:175
 #, no-wrap
 msgid "B<RTM_NEWROUTE>, B<RTM_DELROUTE>, B<RTM_GETROUTE>"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:197
+#: build/C/man7/rtnetlink.7:195
 msgid ""
 "Create, remove or receive information about a network route.  These messages "
 "contain an I<rtmsg> structure with an optional sequence of I<rtattr> "
@@ -1558,7 +1562,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:204
+#: build/C/man7/rtnetlink.7:202
 #, no-wrap
 msgid ""
 "struct rtmsg {\n"
@@ -1569,7 +1573,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:209
+#: build/C/man7/rtnetlink.7:207
 #, no-wrap
 msgid ""
 "    unsigned char rtm_table;    /* Routing table ID */\n"
@@ -1579,7 +1583,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:212
+#: build/C/man7/rtnetlink.7:210
 #, no-wrap
 msgid ""
 "    unsigned int  rtm_flags;\n"
@@ -1587,145 +1591,145 @@ msgid ""
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:217
+#: build/C/man7/rtnetlink.7:214
 #, no-wrap
 msgid "rtm_type:Route type\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:219
+#: build/C/man7/rtnetlink.7:216
 #, no-wrap
 msgid "RTN_UNSPEC:unknown route\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:220
+#: build/C/man7/rtnetlink.7:217
 #, no-wrap
 msgid "RTN_UNICAST:a gateway or direct route\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:221
+#: build/C/man7/rtnetlink.7:218
 #, no-wrap
 msgid "RTN_LOCAL:a local interface route\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:222
+#: build/C/man7/rtnetlink.7:219
 #, no-wrap
 msgid "RTN_BROADCAST:T{\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:223
+#: build/C/man7/rtnetlink.7:220
 #, no-wrap
 msgid "a local broadcast route (sent as a broadcast)\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:225
+#: build/C/man7/rtnetlink.7:222
 #, no-wrap
 msgid "RTN_ANYCAST:T{\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:226
+#: build/C/man7/rtnetlink.7:223
 #, no-wrap
 msgid "a local broadcast route (sent as a unicast)\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:228
+#: build/C/man7/rtnetlink.7:225
 #, no-wrap
 msgid "RTN_MULTICAST:a multicast route\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:229
+#: build/C/man7/rtnetlink.7:226
 #, no-wrap
 msgid "RTN_BLACKHOLE:a packet dropping route\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:230
+#: build/C/man7/rtnetlink.7:227
 #, no-wrap
 msgid "RTN_UNREACHABLE:an unreachable destination\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:231
+#: build/C/man7/rtnetlink.7:228
 #, no-wrap
 msgid "RTN_PROHIBIT:a packet rejection route\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:232
+#: build/C/man7/rtnetlink.7:229
 #, no-wrap
 msgid "RTN_THROW:continue routing lookup in another table\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:233
+#: build/C/man7/rtnetlink.7:230
 #, no-wrap
 msgid "RTN_NAT:a network address translation rule\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:234
+#: build/C/man7/rtnetlink.7:231
 #, no-wrap
 msgid "RTN_XRESOLVE:T{\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:235
+#: build/C/man7/rtnetlink.7:232
 #, no-wrap
 msgid "refer to an external resolver (not implemented)\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:243
+#: build/C/man7/rtnetlink.7:238
 #, no-wrap
 msgid "rtm_protocol:Route origin.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:245
+#: build/C/man7/rtnetlink.7:240
 #, no-wrap
 msgid "RTPROT_UNSPEC:unknown\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:246
+#: build/C/man7/rtnetlink.7:241
 #, no-wrap
 msgid "RTPROT_REDIRECT:T{\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:247
+#: build/C/man7/rtnetlink.7:242
 #, no-wrap
 msgid "by an ICMP redirect (currently unused)\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:249
+#: build/C/man7/rtnetlink.7:244
 #, no-wrap
 msgid "RTPROT_KERNEL:by the kernel\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:250
+#: build/C/man7/rtnetlink.7:245
 #, no-wrap
 msgid "RTPROT_BOOT:during boot\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:251
+#: build/C/man7/rtnetlink.7:246
 #, no-wrap
 msgid "RTPROT_STATIC:by the administrator\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:263
+#: build/C/man7/rtnetlink.7:257
 msgid ""
 "Values larger than B<RTPROT_STATIC> are not interpreted by the kernel, they "
 "are just for user information.  They may be used to tag the source of a "
@@ -1735,217 +1739,217 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:266
+#: build/C/man7/rtnetlink.7:260
 msgid "I<rtm_scope> is the distance to the destination:"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:270
+#: build/C/man7/rtnetlink.7:263
 #, no-wrap
 msgid "RT_SCOPE_UNIVERSE:global route\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:271
+#: build/C/man7/rtnetlink.7:264
 #, no-wrap
 msgid "RT_SCOPE_SITE:T{\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:272
+#: build/C/man7/rtnetlink.7:265
 #, no-wrap
 msgid "interior route in the local autonomous system\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:274
+#: build/C/man7/rtnetlink.7:267
 #, no-wrap
 msgid "RT_SCOPE_LINK:route on this link\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:275
+#: build/C/man7/rtnetlink.7:268
 #, no-wrap
 msgid "RT_SCOPE_HOST:route on the local host\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:276
+#: build/C/man7/rtnetlink.7:269
 #, no-wrap
 msgid "RT_SCOPE_NOWHERE:destination doesn't exist\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:285
+#: build/C/man7/rtnetlink.7:277
 msgid ""
 "The values between B<RT_SCOPE_UNIVERSE> and B<RT_SCOPE_SITE> are available "
 "to the user."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:289
+#: build/C/man7/rtnetlink.7:281
 msgid "The I<rtm_flags> have the following meanings:"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:293
+#: build/C/man7/rtnetlink.7:284
 #, no-wrap
 msgid "RTM_F_NOTIFY:T{\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:294
+#: build/C/man7/rtnetlink.7:285
 #, no-wrap
 msgid "if the route changes, notify the user via rtnetlink\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:296
+#: build/C/man7/rtnetlink.7:287
 #, no-wrap
 msgid "RTM_F_CLONED:route is cloned from another route\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:297
+#: build/C/man7/rtnetlink.7:288
 #, no-wrap
 msgid "RTM_F_EQUALIZE:a multipath equalizer (not yet implemented)\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:303
+#: build/C/man7/rtnetlink.7:293
 msgid "I<rtm_table> specifies the routing table"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:306
+#: build/C/man7/rtnetlink.7:296
 #, no-wrap
 msgid "RT_TABLE_UNSPEC:an unspecified routing table\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:307
+#: build/C/man7/rtnetlink.7:297
 #, no-wrap
 msgid "RT_TABLE_DEFAULT:the default table\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:308
+#: build/C/man7/rtnetlink.7:298
 #, no-wrap
 msgid "RT_TABLE_MAIN:the main table\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:309
+#: build/C/man7/rtnetlink.7:299
 #, no-wrap
 msgid "RT_TABLE_LOCAL:the local table\n"
 msgstr ""
 
 #.  Keep table on same page
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:317
+#: build/C/man7/rtnetlink.7:307
 msgid ""
 "The user may assign arbitrary values between B<RT_TABLE_UNSPEC> and "
 "B<RT_TABLE_DEFAULT>."
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:325
+#: build/C/man7/rtnetlink.7:315
 #, no-wrap
 msgid "RTA_UNSPEC:-:ignored.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:326
+#: build/C/man7/rtnetlink.7:316
 #, no-wrap
 msgid "RTA_DST:protocol address:Route destination address.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:327
+#: build/C/man7/rtnetlink.7:317
 #, no-wrap
 msgid "RTA_SRC:protocol address:Route source address.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:328
+#: build/C/man7/rtnetlink.7:318
 #, no-wrap
 msgid "RTA_IIF:int:Input interface index.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:329
+#: build/C/man7/rtnetlink.7:319
 #, no-wrap
 msgid "RTA_OIF:int:Output interface index.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:330
+#: build/C/man7/rtnetlink.7:320
 #, no-wrap
 msgid "RTA_GATEWAY:protocol address:The gateway of the route\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:331
+#: build/C/man7/rtnetlink.7:321
 #, no-wrap
 msgid "RTA_PRIORITY:int:Priority of route.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:332
+#: build/C/man7/rtnetlink.7:322
 #, no-wrap
 msgid "RTA_PREFSRC::\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:333
+#: build/C/man7/rtnetlink.7:323
 #, no-wrap
 msgid "RTA_METRICS:int:Route metric\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:334
+#: build/C/man7/rtnetlink.7:324
 #, no-wrap
 msgid "RTA_MULTIPATH::\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:335
+#: build/C/man7/rtnetlink.7:325
 #, no-wrap
 msgid "RTA_PROTOINFO::\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:336
+#: build/C/man7/rtnetlink.7:326
 #, no-wrap
 msgid "RTA_FLOW::\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:337
+#: build/C/man7/rtnetlink.7:327
 #, no-wrap
 msgid "RTA_CACHEINFO::\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:341
+#: build/C/man7/rtnetlink.7:331
 msgid "B<Fill these values in!>"
 msgstr ""
 
 #. type: TP
-#: build/C/man7/rtnetlink.7:341
+#: build/C/man7/rtnetlink.7:331
 #, no-wrap
 msgid "B<RTM_NEWNEIGH>, B<RTM_DELNEIGH>, B<RTM_GETNEIGH>"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:348
+#: build/C/man7/rtnetlink.7:338
 msgid ""
 "Add, remove or receive information about a neighbor table entry (e.g., an "
 "ARP entry).  The message contains an I<ndmsg> structure."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:357
+#: build/C/man7/rtnetlink.7:347
 #, no-wrap
 msgid ""
 "struct ndmsg {\n"
@@ -1958,7 +1962,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:364
+#: build/C/man7/rtnetlink.7:354
 #, no-wrap
 msgid ""
 "struct nda_cacheinfo {\n"
@@ -1970,71 +1974,71 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:368
+#: build/C/man7/rtnetlink.7:358
 msgid "I<ndm_state> is a bit mask of the following states:"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:371
+#: build/C/man7/rtnetlink.7:361
 #, no-wrap
 msgid "NUD_INCOMPLETE:a currently resolving cache entry\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:372
+#: build/C/man7/rtnetlink.7:362
 #, no-wrap
 msgid "NUD_REACHABLE:a confirmed working cache entry\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:373
+#: build/C/man7/rtnetlink.7:363
 #, no-wrap
 msgid "NUD_STALE:an expired cache entry\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:374
+#: build/C/man7/rtnetlink.7:364
 #, no-wrap
 msgid "NUD_DELAY:an entry waiting for a timer\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:375
+#: build/C/man7/rtnetlink.7:365
 #, no-wrap
 msgid "NUD_PROBE:a cache entry that is currently reprobed\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:376
+#: build/C/man7/rtnetlink.7:366
 #, no-wrap
 msgid "NUD_FAILED:an invalid cache entry\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:377
+#: build/C/man7/rtnetlink.7:367
 #, no-wrap
 msgid "NUD_NOARP:a device with no destination cache\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:378
+#: build/C/man7/rtnetlink.7:368
 #, no-wrap
 msgid "NUD_PERMANENT:a static entry\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:384
+#: build/C/man7/rtnetlink.7:374
 msgid "Valid I<ndm_flags> are:"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:387
+#: build/C/man7/rtnetlink.7:377
 #, no-wrap
 msgid "NTF_PROXY:a proxy arp entry\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:388
+#: build/C/man7/rtnetlink.7:378
 #, no-wrap
 msgid "NTF_ROUTER:an IPv6 router\n"
 msgstr ""
@@ -2042,67 +2046,67 @@ msgstr ""
 #.  FIXME
 #.  document the members of the struct better
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:398
+#: build/C/man7/rtnetlink.7:388
 msgid "The I<rtattr> struct has the following meanings for the I<rta_type> field:"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:401
+#: build/C/man7/rtnetlink.7:391
 #, no-wrap
 msgid "NDA_UNSPEC:unknown type\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:402
+#: build/C/man7/rtnetlink.7:392
 #, no-wrap
 msgid "NDA_DST:a neighbor cache n/w layer destination address\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:403
+#: build/C/man7/rtnetlink.7:393
 #, no-wrap
 msgid "NDA_LLADDR:a neighbor cache link layer address\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:404
+#: build/C/man7/rtnetlink.7:394
 #, no-wrap
 msgid "NDA_CACHEINFO:cache statistics.\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:414
+#: build/C/man7/rtnetlink.7:404
 msgid ""
-"If the I<rta_type> field is B<NDA_CACHEINFO> then a I<struct nda_cacheinfo> "
+"If the I<rta_type> field is B<NDA_CACHEINFO>, then a I<struct nda_cacheinfo> "
 "header follows"
 msgstr ""
 
 #. type: TP
-#: build/C/man7/rtnetlink.7:414
+#: build/C/man7/rtnetlink.7:404
 #, no-wrap
 msgid "B<RTM_NEWRULE>, B<RTM_DELRULE>, B<RTM_GETRULE>"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:419
+#: build/C/man7/rtnetlink.7:409
 msgid "Add, delete or retrieve a routing rule.  Carries a I<struct rtmsg>"
 msgstr ""
 
 #. type: TP
-#: build/C/man7/rtnetlink.7:419
+#: build/C/man7/rtnetlink.7:409
 #, no-wrap
 msgid "B<RTM_NEWQDISC>, B<RTM_DELQDISC>, B<RTM_GETQDISC>"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:426
+#: build/C/man7/rtnetlink.7:416
 msgid ""
 "Add, remove or get a queueing discipline.  The message contains a I<struct "
 "tcmsg> and may be followed by a series of attributes."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:435
+#: build/C/man7/rtnetlink.7:425
 #, no-wrap
 msgid ""
 "struct tcmsg {\n"
@@ -2115,86 +2119,86 @@ msgid ""
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:441
+#: build/C/man7/rtnetlink.7:431
 #, no-wrap
 msgid "rta_type:value type:Description\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:443
+#: build/C/man7/rtnetlink.7:433
 #, no-wrap
 msgid "TCA_UNSPEC:-:unspecified\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:444
+#: build/C/man7/rtnetlink.7:434
 #, no-wrap
 msgid "TCA_KIND:asciiz string:Name of queueing discipline\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:445
+#: build/C/man7/rtnetlink.7:435
 #, no-wrap
 msgid "TCA_OPTIONS:byte sequence:Qdisc-specific options follow\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:446
+#: build/C/man7/rtnetlink.7:436
 #, no-wrap
 msgid "TCA_STATS:struct tc_stats:Qdisc statistics.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:447
+#: build/C/man7/rtnetlink.7:437
 #, no-wrap
 msgid "TCA_XSTATS:qdisc-specific:Module-specific statistics.\n"
 msgstr ""
 
 #. type: tbl table
-#: build/C/man7/rtnetlink.7:448
+#: build/C/man7/rtnetlink.7:438
 #, no-wrap
 msgid "TCA_RATE:struct tc_estimator:Rate limit.\n"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:453
+#: build/C/man7/rtnetlink.7:443
 msgid ""
 "In addition, various other qdisc-module-specific attributes are allowed.  "
 "For more information see the appropriate include files."
 msgstr ""
 
 #. type: TP
-#: build/C/man7/rtnetlink.7:453
+#: build/C/man7/rtnetlink.7:443
 #, no-wrap
 msgid "B<RTM_NEWTCLASS>, B<RTM_DELTCLASS>, B<RTM_GETTCLASS>"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:459
+#: build/C/man7/rtnetlink.7:449
 msgid ""
 "Add, remove or get a traffic class.  These messages contain a I<struct "
 "tcmsg> as described above."
 msgstr ""
 
 #. type: TP
-#: build/C/man7/rtnetlink.7:459
+#: build/C/man7/rtnetlink.7:449
 #, no-wrap
 msgid "B<RTM_NEWTFILTER>, B<RTM_DELTFILTER>, B<RTM_GETTFILTER>"
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:465
+#: build/C/man7/rtnetlink.7:455
 msgid ""
 "Add, remove or receive information about a traffic filter.  These messages "
 "contain a I<struct tcmsg> as described above."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:468
+#: build/C/man7/rtnetlink.7:458
 msgid "B<rtnetlink> is a new feature of Linux 2.2."
 msgstr ""
 
 #. type: Plain text
-#: build/C/man7/rtnetlink.7:475
+#: build/C/man7/rtnetlink.7:465
 msgid "B<cmsg>(3), B<rtnetlink>(3), B<ip>(7), B<netlink>(7)"
 msgstr ""