summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2011-12-11 23:00:10 +0000
committerRalf Baechle <ralf@linux-mips.org>2011-12-11 23:00:10 +0000
commite62afa7359d9734e57a843beac68cea138fd19cc (patch)
tree1924778e00b310b4d06ec7aa8d4d7a484482b900
parent66d4d96bb168a6909d4d54a78a7e43ae1599b437 (diff)
Apply program name transformations also to remaining man page content.
The config files are unaffected; if you need to resolve a name conflict for the config files, use --sysconfdir=/etc and --localstatedir=/var.
-rw-r--r--ax25ipd/Makefile.am20
-rw-r--r--ax25ipd/ax25ipd.conf.man (renamed from ax25ipd/ax25ipd.conf.5)16
-rw-r--r--ax25ipd/ax25ipd.man (renamed from ax25ipd/ax25ipd.8)16
-rw-r--r--ax25mond/Makefile.am20
-rw-r--r--ax25mond/ax25mond.conf.man (renamed from ax25mond/ax25mond.conf.5)8
-rw-r--r--ax25mond/ax25mond.man (renamed from ax25mond/ax25mond.8)6
-rw-r--r--ax25rtd/Makefile.am48
-rw-r--r--ax25rtd/ax25rtctl.man (renamed from ax25rtd/ax25rtctl.8)18
-rw-r--r--ax25rtd/ax25rtd.conf.man (renamed from ax25rtd/ax25rtd.conf.5)30
-rw-r--r--ax25rtd/ax25rtd.man (renamed from ax25rtd/ax25rtd.8)18
10 files changed, 144 insertions, 56 deletions
diff --git a/ax25ipd/Makefile.am b/ax25ipd/Makefile.am
index 39ef22f..d544855 100644
--- a/ax25ipd/Makefile.am
+++ b/ax25ipd/Makefile.am
@@ -5,6 +5,26 @@ man_MANS = ax25ipd.8 ax25ipd.conf.5
EXTRA_DIST = $(man_MANS) $(etcfiles) $(doc_DATA)
+ax25ipd.8: ax25ipd.man
+ name_ax25ipd=$$(echo ax25ipd | sed -e '$(transform)') \
+ name_Ax25ipd=$$(echo $$name_ax25ipd | sed -r 's@^(.)@\U\1\E@') && \
+ name_AX25IPD=$$(echo $$name_ax25ipd | sed -r 's@^(.*)@\U\1\E@') && \
+ sed -e "s/@@@ax25ipd@@@/$$name_ax25ipd/g" \
+ -e "s/@@@Ax25ipd@@@/$$name_Ax25ipd/g" \
+ -e "s/@@@AX25IPD@@@/$$name_AX25IPD/g" \
+ ax25ipd.man > ax25ipd.1.tmp && \
+ mv ax25ipd.1.tmp ax25ipd.1;
+
+ax25ipd.conf.5: ax25ipd.conf.man
+ name_ax25ipd=$$(echo ax25ipd | sed -e '$(transform)') \
+ name_Ax25ipd=$$(echo $$name_ax25ipd | sed -r 's@^(.)@\U\1\E@') && \
+ name_AX25IPD=$$(echo $$name_ax25ipd | sed -r 's@^(.*)@\U\1\E@') && \
+ sed -e "s/@@@ax25ipd@@@/$$name_ax25ipd/g" \
+ -e "s/@@@Ax25ipd@@@/$$name_Ax25ipd/g" \
+ -e "s/@@@AX25IPD@@@/$$name_AX25IPD/g" \
+ ax25ipd.conf.man > ax25ipd.conf.5.tmp && \
+ mv ax25ipd.conf.5.tmp ax25ipd.conf.5;
+
docdir = ${datadir}/doc/ax25-apps
doc_DATA = README.ax25ipd HISTORY.ax25ipd COPYING.ax25ipd
diff --git a/ax25ipd/ax25ipd.conf.5 b/ax25ipd/ax25ipd.conf.man
index cc142c9..8586057 100644
--- a/ax25ipd/ax25ipd.conf.5
+++ b/ax25ipd/ax25ipd.conf.man
@@ -1,16 +1,16 @@
.TH AX25IPD.CONF 5 "7 July 1997" Linux "Linux Programmer's Manual"
.SH NAME
-ax25ipd.conf \- Control the operation of ax25ipd.
+ax25ipd.conf \- Control the operation of @@@ax25ipd@@@.
.SH DESCRIPTION
.LP
The
.B ax25ipd.conf
-file controls the operation of the ax25ipd(8) program. The operation of the
+file controls the operation of the @@@ax25ipd@@@(8) program. The operation of the
config file can best be seen in an example:
.LP
#
.br
-# ax25ipd configuration file for station floyd.vk5xxx.ampr.org
+# @@@ax25ipd@@@ configuration file for station floyd.vk5xxx.ampr.org
.br
#
.br
@@ -24,7 +24,7 @@ socket ip
.br
#
.br
-# Set ax25ipd mode of operation. (digi or tnc)
+# Set @@@ax25ipd@@@ mode of operation. (digi or tnc)
.br
#
.br
@@ -72,7 +72,7 @@ mode tnc
.br
# if you use tun/tap or ethertap instead of kissattach you may say, without
.br
-# leading slashes (!! - that's how ax25ipd consideres using the tty kiss
+# leading slashes (!! - that's how @@@ax25ipd@@@ consideres using the tty kiss
.br
# driver or tun/tap or ethertap):
.br
@@ -102,13 +102,13 @@ mode tnc
.br
# As serial port, you could assign physical ports like ttyS0 or ptys.
.br
-# ax25ipd supports BSD-style pseudo-terminals as well as the Unix98 pty's.
+# @@@ax25ipd@@@ supports BSD-style pseudo-terminals as well as the Unix98 pty's.
.br
# If the tty argument is "/dev/ptmx", then Unix98 behaviour
.br
# will automaticaly take effekt. With Unix98 pty's, the slave tty name
.br
-# could not be forseen. That's why ax25ipd will print the corresponding
+# could not be forseen. That's why @@@ax25ipd@@@ will print the corresponding
.br
# slave pty name as a separate line on stdout.
.br
@@ -202,4 +202,4 @@ More to come ...
.LP
/etc/ax25/ax25ipd.conf
.SH "SEE ALSO"
-.BR ax25ipd (8).
+.BR @@@ax25ipd@@@ (8).
diff --git a/ax25ipd/ax25ipd.8 b/ax25ipd/ax25ipd.man
index e84762c..8fc7cf6 100644
--- a/ax25ipd/ax25ipd.8
+++ b/ax25ipd/ax25ipd.man
@@ -1,25 +1,25 @@
-.TH AX25IPD 1 "12 September 2001" Linux "Linux Programmer's Manual"
+.TH @@@AX25IPD@@@ 1 "12 September 2001" Linux "Linux Programmer's Manual"
.SH NAME
-ax25ipd \- AX.25 into IP Encapsulator
+@@@ax25ipd@@@ \- AX.25 into IP Encapsulator
.SH SYNOPSIS
-.B ax25ipd [options]
+.B @@@ax25ipd@@@ [options]
.SH DESCRIPTION
.LP
-.B ax25ipd
+.B @@@ax25ipd@@@
is an RFC1226 compliant daemon capable of providing the encapsualtion
neccessary to send and receive AX.25 traffic across an IP transport.
.LP
Normally invoked as part of the boot order network initialisation,
-.B ax25ipd
+.B @@@ax25ipd@@@
is capable of talking directly to a serial port connected tnc, or over
a pipe to a linux AX.25 port. KAM DE Dual Port Kiss is also supported.
.LP
-.B ax25ipd
+.B @@@ax25ipd@@@
can be run as a pure encapsulator, or as a digital repeater with a
functional callsign. Destination IP addresses are determined from a
hardcoded map of callsign/IP Address pairs.
.LP
-.B ax25ipd
+.B @@@ax25ipd@@@
defaults to using
.B /etc/ax25/ax25ipd.conf
as its config file.
@@ -63,7 +63,7 @@ Logging needs to be properly implemented.
.LP
Command line parsing needs to be properly implemented.
.LP
-.B ax25ipd
+.B @@@ax25ipd@@@
should be part of the Linux AX.25 kernel support probably :-)
.SH AUTHORS
.nf
diff --git a/ax25mond/Makefile.am b/ax25mond/Makefile.am
index 6499f30..af5e061 100644
--- a/ax25mond/Makefile.am
+++ b/ax25mond/Makefile.am
@@ -5,6 +5,26 @@ man_MANS = ax25mond.8 ax25mond.conf.5
EXTRA_DIST = $(man_MANS) $(etcfiles)
+ax25mond.8: ax25mond.man
+ name_ax25mond=$$(echo call | sed -e '$(transform)') \
+ name_Ax25mond=$$(echo $$name_ax25mond | sed -r 's@^(.)@\U\1\E@') && \
+ name_AX25MOND=$$(echo $$name_ax25mond | sed -r 's@^(.*)@\U\1\E@') && \
+ sed -e "s/@@@ax25mond@@@/$$name_ax25mond/g" \
+ -e "s/@@@Ax25mond@@@/$$name_Ax25mond/g" \
+ -e "s/@@@AX25MOND@@@/$$name_AX25MOND/g" \
+ ax25mond.man > ax25mond.1.tmp && \
+ mv ax25mond.1.tmp ax25mond.1;
+
+ax25mond.conf.5: ax25mond.conf.man
+ name_ax25mond=$$(echo call | sed -e '$(transform)') \
+ name_Ax25mond=$$(echo $$name_ax25mond | sed -r 's@^(.)@\U\1\E@') && \
+ name_AX25MOND=$$(echo $$name_ax25mond | sed -r 's@^(.*)@\U\1\E@') && \
+ sed -e "s/@@@ax25mond@@@/$$name_ax25mond/g" \
+ -e "s/@@@Ax25mond@@@/$$name_Ax25mond/g" \
+ -e "s/@@@AX25MOND@@@/$$name_AX25MOND/g" \
+ ax25mond.conf.man > ax25mond.conf.5.tmp && \
+ mv ax25mond.conf.5.tmp ax25mond.conf.5;
+
ax25mond_LDADD = $(AX25_LIB)
ax25mond_SOURCES = \
diff --git a/ax25mond/ax25mond.conf.5 b/ax25mond/ax25mond.conf.man
index 66d343e..cc8a827 100644
--- a/ax25mond/ax25mond.conf.5
+++ b/ax25mond/ax25mond.conf.man
@@ -1,11 +1,11 @@
.TH AX25MOND.CONF 5 "30 January 1999" Linux "Linux Programmer's Manual"
.SH NAME
-ax25mond.conf \- Specify the sockets which ax25mond will provide.
+ax25mond.conf \- Specify the sockets which @@@ax25mond@@@ will provide.
.SH DESCRIPTION
.LP
The
.B ax25mond.conf
-file specifies the internet- and unix-sockets which ax25mond(8)
+file specifies the internet- and unix-sockets which @@@ax25mond@@@(8)
will provide. Example:
.LP
# Create an internet socket on port 1234 where all the
@@ -21,10 +21,10 @@ rxtx *:1234
rx unix:/var/spool/ax25/monitor
.br
.LP
-You may specify up to 5 sockets (definable in ax25mond.c) and ax25mond
+You may specify up to 5 sockets (definable in ax25mond.c) and @@@ax25mond@@@
will accept up to 50 connects (also definable in ax25mond.c).
.SH FILES
.LP
/etc/ax25/ax25mond.conf
.SH "SEE ALSO"
-.BR ax25mond (8).
+.BR @@@ax25mond@@@ (8).
diff --git a/ax25mond/ax25mond.8 b/ax25mond/ax25mond.man
index 2ee9629..f62ae83 100644
--- a/ax25mond/ax25mond.8
+++ b/ax25mond/ax25mond.man
@@ -1,9 +1,9 @@
-.TH AX25MOND 8 "30 January 1999" Linux "Linux System Managers Manual"
+.TH @@@AX25MOND@@@ 8 "30 January 1999" Linux "Linux System Managers Manual"
.SH NAME
-ax25mond \- dump the AX.25 network traffic and and provide sockets
+@@@ax25mond@@@ \- dump the AX.25 network traffic and and provide sockets
where the received data will be retransmitted
.SH SYNOPSIS
-.B ax25mond [-v|--version]
+.B @@@ax25mond@@@ [-v|--version]
.SH DESCRIPTION
.LP
.B Ax25mond
diff --git a/ax25rtd/Makefile.am b/ax25rtd/Makefile.am
index ed08cca..05fa820 100644
--- a/ax25rtd/Makefile.am
+++ b/ax25rtd/Makefile.am
@@ -4,6 +4,54 @@ varfiles = ax25_route ip_route
man_MANS = ax25rtd.8 ax25rtctl.8 ax25rtd.conf.5
+ax25rtd.8: ax25rtd.man
+ name_ax25rtd=$$(echo ax25rtd | sed -e '$(transform)') \
+ name_Ax25rtd=$$(echo $$name_ax25rtd | sed -r 's@^(.)@\U\1\E@') && \
+ name_AX25RTD=$$(echo $$name_ax25rtd | sed -r 's@^(.*)@\U\1\E@') && \
+ name_ax25rtctl=$$(echo ax25rtctl | sed -e '$(transform)') && \
+ name_Ax25rtctl=$$(echo $$name_ax25rtctl | sed -r 's@^(.)@\U\1\E@') && \
+ name_AX25RTCTL=$$(echo $$name_ax25rtctl | sed -r 's@^(.*)@\U\1\E@') && \
+ sed -e "s/@@@ax25rtd@@@/$$name_ax25rtd/g" \
+ -e "s/@@@Ax25rtd@@@/$$name_Ax25rtd/g" \
+ -e "s/@@@AX25RTD@@@/$$name_AX25RTD/g" \
+ -e "s/@@@ax25rtctl@@@/$$name_ax25rtctl/g" \
+ -e "s/@@@Ax25rtctl@@@/$$name_Ax25rtctl/g" \
+ -e "s/@@@AX25RTCTL@@@/$$name_AX25RTCTL/g" \
+ ax25rtd.man > ax25rtd.1.tmp && \
+ mv ax25rtd.1.tmp ax25rtd.1;
+
+ax25rtctl.8: ax25rtctl.man
+ name_ax25rtd=$$(echo ax25rtd | sed -e '$(transform)') \
+ name_Ax25rtd=$$(echo $$name_ax25rtd | sed -r 's@^(.)@\U\1\E@') && \
+ name_AX25RTD=$$(echo $$name_ax25rtd | sed -r 's@^(.*)@\U\1\E@') && \
+ name_ax25rtctl=$$(echo ax25rtctl | sed -e '$(transform)') && \
+ name_Ax25rtctl=$$(echo $$name_ax25rtctl | sed -r 's@^(.)@\U\1\E@') && \
+ name_AX25RTCTL=$$(echo $$name_ax25rtctl | sed -r 's@^(.*)@\U\1\E@') && \
+ sed -e "s/@@@ax25rtd@@@/$$name_ax25rtd/g" \
+ -e "s/@@@Ax25rtd@@@/$$name_Ax25rtd/g" \
+ -e "s/@@@AX25RTD@@@/$$name_AX25RTD/g" \
+ -e "s/@@@ax25rtctl@@@/$$name_ax25rtctl/g" \
+ -e "s/@@@Ax25rtctl@@@/$$name_Ax25rtctl/g" \
+ -e "s/@@@AX25RTCTL@@@/$$name_AX25RTCTL/g" \
+ ax25rtctl.man > ax25rtctl.1.tmp && \
+ mv ax25rtctl.1.tmp ax25rtctl.1;
+
+ax25rtd.conf.5: ax25rtd.conf.man
+ name_ax25rtd=$$(echo ax25rtd | sed -e '$(transform)') \
+ name_Ax25rtd=$$(echo $$name_ax25rtd | sed -r 's@^(.)@\U\1\E@') && \
+ name_AX25RTD=$$(echo $$name_ax25rtd | sed -r 's@^(.*)@\U\1\E@') && \
+ name_ax25rtctl=$$(echo ax25rtctl | sed -e '$(transform)') && \
+ name_Ax25rtctl=$$(echo $$name_ax25rtctl | sed -r 's@^(.)@\U\1\E@') && \
+ name_AX25RTCTL=$$(echo $$name_ax25rtctl | sed -r 's@^(.*)@\U\1\E@') && \
+ sed -e "s/@@@ax25rtd@@@/$$name_ax25rtd/g" \
+ -e "s/@@@Ax25rtd@@@/$$name_Ax25rtd/g" \
+ -e "s/@@@AX25RTD@@@/$$name_AX25RTD/g" \
+ -e "s/@@@ax25rtctl@@@/$$name_ax25rtctl/g" \
+ -e "s/@@@Ax25rtctl@@@/$$name_Ax25rtctl/g" \
+ -e "s/@@@AX25RTCTL@@@/$$name_AX25RTCTL/g" \
+ ax25rtd.conf.man > ax25rtd.conf.5.tmp && \
+ mv ax25rtd.conf.5.tmp ax25rtd.conf.5;
+
installconf:
$(mkinstalldirs) $(DESTDIR)$(AX25_SYSCONFDIR)
@list='$(etcfiles)'; for p in $$list; do \
diff --git a/ax25rtd/ax25rtctl.8 b/ax25rtd/ax25rtctl.man
index 9fcbc06..1fb69f2 100644
--- a/ax25rtd/ax25rtctl.8
+++ b/ax25rtd/ax25rtctl.man
@@ -1,12 +1,12 @@
-.TH AX25RTCTL 8 "11 November 2003" Linux "Linux Programmer's Manual"
+.TH @@@AX25RTCTL@@@ 8 "11 November 2003" Linux "Linux Programmer's Manual"
.SH NAME
-ax25rtctl \- AX.25 routing control program
+@@@ax25rtctl@@@ \- AX.25 routing control program
.SH SYNOPSIS
-.B ax25rtctl [options]
+.B @@@ax25rtctl@@@ [options]
.SH DESCRIPTION
.LP
-.B ax25rtctl
-is a program to control ax25rtd. There are several options:
+.B @@@ax25rtctl@@@
+is a program to control @@@ax25rtd@@@. There are several options:
.TP
.B -a, --add ax25 <callsign> <dev> <time> [digipeater]
Add an entry to the AX.25 routing table. If time is "0"
@@ -43,7 +43,7 @@ Reloads the config file /etc/ax25/ax25rtd.conf. This will
*not* affect the caches or the heard list.
.TP
.B -q, --shutdown
-Same as 'killall -TERM ax25rtd' ;-)
+Same as 'killall -TERM @@@ax25rtd@@@' ;-)
.TP
.B -V, --version
Prints version.
@@ -53,11 +53,11 @@ Note that you can specify either the port name (as defined in
conflict (i.e. port scc0 is in fact interface scc3, and vica versa), the
interface name has precedence over the port name. Example:
- ax25rtctl --add ax25 dl0tha scc3 0 db0pra
+ @@@ax25rtctl@@@ --add ax25 dl0tha scc3 0 db0pra
is equivalent to
- ax25rtctl --add ax25 dl0tha 9k6 0 dbpra
+ @@@ax25rtctl@@@ --add ax25 dl0tha 9k6 0 dbpra
All commands return port names in their output, though.
With one exception: ax25_routes and ip_routes use interface names.
@@ -66,7 +66,7 @@ With one exception: ax25_routes and ip_routes use interface names.
/etc/ax25/ax25rtd.conf
.SH "SEE ALSO"
.BR ax25rtd.conf (5),
-.BR ax25rtd (8).
+.BR @@@ax25rtd@@@ (8).
.LP
.SH AUTHORS
.nf
diff --git a/ax25rtd/ax25rtd.conf.5 b/ax25rtd/ax25rtd.conf.man
index eb0f03c..30741ca 100644
--- a/ax25rtd/ax25rtd.conf.5
+++ b/ax25rtd/ax25rtd.conf.man
@@ -6,7 +6,7 @@ ax25rtd.conf \- ax25 routing daemon configuration file
.SH DESCRIPTION
-The file /etc/ax25/ax25rtd.conf is the configuration file for ax25rtd.
+The file /etc/ax25/ax25rtd.conf is the configuration file for @@@ax25rtd@@@.
The parameters of the options shown here are the default values except the
ones marked with (example)
.PP
@@ -14,7 +14,7 @@ ax25-maxroutes 4096
.TP
ip-maxroutes 4096
The maximum size of the three lists / caches. On overflow,
-ax25rtd will substitute the oldest entry with the new one.
+@@@ax25rtd@@@ will substitute the oldest entry with the new one.
.TP
iproute2-table radio
@@ -27,7 +27,7 @@ directly?).
If not set or empty, routes are set in the normal, default, manner.
Please configure /etc/iproute2/rt_protos with
- 44 ax25rtd
+ 44 @@@ax25rtd@@@
and /etc/iproute2/rt_tables with
@@ -49,9 +49,9 @@ you have to use port names as defined in axports(5) here,
anywhere else you may use the port or the device name.
.TP
ax25-learn-routes no
-Set this to "yes", ax25rtd will add the routing information
+Set this to "yes", @@@ax25rtd@@@ will add the routing information
for every heard frame (with complete digipeater path) to the
-kernel AX.25 routing table. Note that ax25rtd's internal cache
+kernel AX.25 routing table. Note that @@@ax25rtd@@@'s internal cache
will be updated anyway, regardless of this option.
.TP
ax25-learn-only-mine no
@@ -64,7 +64,7 @@ ax25-learn-routes) the kernel routing table.
ax25-add-path db0ach (example)
This is useful on DAMA digipeaters. In this case, the DAMA
master has to be used for _every_ AX.25 connection, thus
-ax25rtd will add this digipeater(s) to every target we learn
+@@@ax25rtd@@@ will add this digipeater(s) to every target we learn
that has no digipeater path (yet). "db0ach" is just an
example here.
.TP
@@ -73,17 +73,17 @@ You can specify more calls as calls here that belong to
this interface... "dl1bke" and "dl1bke-8" are examples.
.TP
ip-learn-routes no
-If set to "yes", ax25rtd will modify the IP routing table if it
+If set to "yes", @@@ax25rtd@@@ will modify the IP routing table if it
receives an IP frame (directed to us). This is dangerous!
-It should not screw up your routing table, though. Ax25rtd
+It should not screw up your routing table, though. @@@Ax25rtd@@@
recognizes the netmask of the device and will adjust the route
only if it fits the netmask and the old route points to
-one of the devices ax25rtd knows about (hence an AX.25 device).
+one of the devices @@@ax25rtd@@@ knows about (hence an AX.25 device).
The problems begin if you have more than one port and a user
is able to hear your outgoing traffic on at least two of them.
-Due to technical reasons ax25rtd adjusts the route _after_ the
+Due to technical reasons @@@ax25rtd@@@ adjusts the route _after_ the
kernel has sent the reply to the received TCP frame already.
This has technical reasons.
@@ -97,7 +97,7 @@ I strongly recommend to set a network route instead, i.e.:
route add -net 44.0.0.0 scc3
-Note that ax25rtd's internal cache will be updated anyway,
+Note that @@@ax25rtd@@@'s internal cache will be updated anyway,
regardless of this option.
.TP
irtt <irtt>
@@ -111,7 +111,7 @@ sets the irtt to 10 seconds. A value of 0 disables this
feature (default).
.TP
ip-adjust-mode no
-If you set this option to "yes" ax25rtd will change the IP
+If you set this option to "yes" @@@ax25rtd@@@ will change the IP
encapsulation mode according to the last received IP frame.
The problem with this option is that the kernel AX.25 sends
@@ -119,7 +119,7 @@ a received IP frame to the IP layer regardless if it was
sent in UI frame encapsulation "mode datagram (dg)" or
in I frame encaps, hence in an AX.25 connection, "mode virtual
connect (vc)". The Linux kernel will respond to this frame
-before ax25rtd can adjust the mode. If the remote does the
+before @@@ax25rtd@@@ can adjust the mode. If the remote does the
same... You get the picture.
Don't use this feature unless you know what you are doing.
@@ -128,12 +128,12 @@ arp-add no
This option, if set to "yes", changes the ARP table to the
source callsign of the received frame. It should be harmless,
just has the the effect that if it is a new entry, the Linux
-ARP code will send one ARP request before ax25rtd has adjust
+ARP code will send one ARP request before @@@ax25rtd@@@ has adjust
the ARP table. If there was already an existing ARP entry
for this IP route, one IP datagram will be sent to the old
address. Not really a problem, I hope.
.SH "SEE ALSO"
-.BR ax25rtd (8),
+.BR @@@ax25rtd@@@ (8),
.BR ax25rtctl (8).
.LP
.SH AUTHORS
diff --git a/ax25rtd/ax25rtd.8 b/ax25rtd/ax25rtd.man
index 3646484..1f91815 100644
--- a/ax25rtd/ax25rtd.8
+++ b/ax25rtd/ax25rtd.man
@@ -1,11 +1,11 @@
-.TH AX25RTD 8 "11 November 2003" Linux "Linux Programmer's Manual"
+.TH @@@AX25RTD@@@ 8 "11 November 2003" Linux "Linux Programmer's Manual"
.SH NAME
-ax25rtd \- AX.25 routing daemon
+@@@ax25rtd@@@ \- AX.25 routing daemon
.SH SYNOPSIS
-.B ax25rtd
+.B @@@ax25rtd@@@
.SH DESCRIPTION
.LP
-.B ax25rtd
+.B @@@ax25rtd@@@
is a daemon that:
.LP
- emulates the ceased "autorouter" of Linux Kernel AX.25
@@ -20,22 +20,22 @@ traffic on your ports and uses this information to setup AX.25 routes. This
can be turned on or off by altering the configuration file
/etc/ax25/ax25rtd.conf.
.LP
-Ax25rtd provides a socket /var/ax25/ax25rtd/control which is used for
+@@@Ax25rtd@@@ provides a socket /var/ax25/ax25rtd/control which is used for
runtime maintainance through
-.B ax25rtctl
+.B @@@ax25rtctl@@@
or to set up new routes by other
daemons (a Flexnet router, perhaps?)
.LP
-On startup ax25rtd reads the configuration file and afterwards preloads
+On startup @@@ax25rtd@@@ reads the configuration file and afterwards preloads
the caches from the files /var/ax25/ax25rtd/ax25_routes and
/var/ax25/ax25rtd/ip_routes. On SIGTERM or
-.B ax25rtctl --save
+.B @@@ax25rtctl@@@ --save
it saves the caches to those files.
.SH FILES
/etc/ax25/ax25rtd.conf
.SH "SEE ALSO"
.BR ax25rtd.conf (5),
-.BR ax25rtctl (8).
+.BR @@@ax25rtctl@@@ (8).
.LP
.SH AUTHORS
.nf