diff options
| author | Mike Pritchard <mpp@FreeBSD.org> | 1999-08-15 13:20:42 +0000 |
|---|---|---|
| committer | Mike Pritchard <mpp@FreeBSD.org> | 1999-08-15 13:20:42 +0000 |
| commit | cb331b0ee085bc2ba1663399fc7049849e177280 (patch) | |
| tree | f37ca0dc6b692af86266eec71c3c3fe1a107c0e8 | |
| parent | cc0d1d660c1eb03c51da76b827d52317f832deb2 (diff) | |
Notes
| -rw-r--r-- | lib/libalias/libalias.3 | 29 | ||||
| -rw-r--r-- | lib/libc/gen/ftok.3 | 4 | ||||
| -rw-r--r-- | lib/libc/stdlib/malloc.3 | 6 | ||||
| -rw-r--r-- | lib/libc/string/strtok.3 | 9 | ||||
| -rw-r--r-- | lib/libc/sys/aio_cancel.2 | 2 | ||||
| -rw-r--r-- | lib/libc/sys/aio_error.2 | 2 | ||||
| -rw-r--r-- | lib/libc/sys/aio_read.2 | 4 | ||||
| -rw-r--r-- | lib/libc/sys/aio_return.2 | 2 | ||||
| -rw-r--r-- | lib/libc/sys/aio_suspend.2 | 2 | ||||
| -rw-r--r-- | lib/libc/sys/aio_write.2 | 2 | ||||
| -rw-r--r-- | lib/libc/sys/execve.2 | 8 | ||||
| -rw-r--r-- | lib/libc/sys/sendfile.2 | 13 | ||||
| -rw-r--r-- | lib/libcam/cam.3 | 6 | ||||
| -rw-r--r-- | lib/libftpio/ftpio.3 | 4 | ||||
| -rw-r--r-- | lib/libutil/property.3 | 8 | ||||
| -rw-r--r-- | lib/libutil/uucplock.3 | 4 |
16 files changed, 52 insertions, 53 deletions
diff --git a/lib/libalias/libalias.3 b/lib/libalias/libalias.3 index 8e38d91a98e7..a825a47cc5b1 100644 --- a/lib/libalias/libalias.3 +++ b/lib/libalias/libalias.3 @@ -1,13 +1,11 @@ +.\" $Id$ +.\" .Dd July, 1997 -.Dt "libalias" 3 +.Dt LIBALIAS 3 .Os .Sh NAME -.Nm "libalias" -Packet Aliasing Library. A collection of -functions for aliasing and de-aliasing -of IP packets, intended for masquerading and -network address translation (NAT). - +.Nm libalias +.Nd packet aliasing library for masquerading and address translation (NAT) .Sh SYNOPSIS .Fd #include <sys/types.h> .Fd #include <netinet/in.h> @@ -15,7 +13,13 @@ network address translation (NAT). Function prototypes are given in the main body of the text. - +.Sh DESCRIPTION +The +.Nm +library is a collection of +functions for aliasing and de-aliasing +of IP packets, intended for masquerading and +network address translation (NAT). .Sh CONTENTS .Bd -literal -offset left 1. Introduction @@ -51,7 +55,6 @@ Appendix A: Conceptual Background A.3 Partially Specified Links A.4 Dynamic Link Creation .Ed - .Sh 1. Introduction This library is a moderately portable set of functions designed to assist @@ -86,7 +89,6 @@ to operate in user space outside of the kernel, without any access to private kernel data structure, but the source code can also be ported to a kernel environment. - .Sh 2. Initialization and Control Two specific functions, PacketAliasInit() and PacketAliasSetAddress(), must always be @@ -275,7 +277,6 @@ interface rather than the external one. Set IPFW range allocated for punching firewall holes (with the PKT_ALIAS_PUNCH_FW flag). The range will be cleared for all rules on initialization. - .Sh 3. Packet Handling The packet handling functions are used to modify incoming (remote->local) and outgoing @@ -360,7 +361,6 @@ The packet was ignored and not de-aliased. This can happen if the protocal is unrecognized, or possibly an ICMP message type is not handled. .El - .Sh 4. Port and Address Redirection The functions described in this section allow machines on the local network to be accessible in some degree @@ -495,7 +495,6 @@ functions. If an invalid pointer is passed to PacketAliasRedirectDelete(), then a program crash or unpredictable operation could result, so it is necessary to be careful using this function. - .Sh 5. Fragment Handling The functions in this section are used to deal with incoming fragments. @@ -686,7 +685,6 @@ is the pointer to a header fragment used as a template, and .Em fragment is the pointer to the packet to be de-aliased. - .Sh 6. Miscellaneous Functions .Ss 6.1 PacketAliasSetTarget() @@ -734,7 +732,6 @@ field should be zeroed before computing the checksum. Checksums can also be verified by operating on a block of data including its checksum. If the checksum is valid, PacketAliasInternetChecksum() will return zero. - .Sh 7. Authors Charles Mott (cmott@srv.net), versions 1.0 - 1.8, 2.0 - 2.4. @@ -742,7 +739,6 @@ Eivind Eklund (eivind@freebsd.org), versions 1.8b, 1.9 and 2.5. Added IRC DCC support as well as contributing a number of architectural improvements; added the firewall bypass for FTP/IRC DCC. - .Sh 8. Acknowledgments Listed below, in approximate chronological @@ -762,7 +758,6 @@ valuable comments and/or debugging assistance. .It Andrzej Bialeki .It Gordon Burditt .El - .Sh Appendix: Conceptual Background This appendix is intended for those who are planning to modify the source code or want diff --git a/lib/libc/gen/ftok.3 b/lib/libc/gen/ftok.3 index b0a8a2324c20..dc67fb81a976 100644 --- a/lib/libc/gen/ftok.3 +++ b/lib/libc/gen/ftok.3 @@ -23,10 +23,10 @@ .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF .\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ftok.3,v 1.9 1998/03/19 07:33:54 charnier Exp $ +.\" $Id: ftok.3,v 1.10 1998/06/10 04:24:18 jdp Exp $ .Dd June 24, 1994 .Os -.Dt ftok 3 +.Dt FTOK 3 .Sh NAME .Nm ftok .Nd create IPC identifier from path name diff --git a/lib/libc/stdlib/malloc.3 b/lib/libc/stdlib/malloc.3 index 123a7a5db763..1ec4b6e74544 100644 --- a/lib/libc/stdlib/malloc.3 +++ b/lib/libc/stdlib/malloc.3 @@ -34,7 +34,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)malloc.3 8.1 (Berkeley) 6/4/93 -.\" $Id: malloc.3,v 1.19 1999/08/14 07:33:15 chris Exp $ +.\" $Id: malloc.3,v 1.17.2.2 1999/08/14 07:34:38 chris Exp $ .\" .Dd August 27, 1996 .Dt MALLOC 3 @@ -274,7 +274,7 @@ is still available and intact. The .Fn free function returns no value. -.Sh "DEBUGGING MALLOC PROBLEMS" +.Sh DEBUGGING MALLOC PROBLEMS .Pp The major difference between this implementation and other allocation implementations is that the free pages are not accessed unless allocated, @@ -333,7 +333,7 @@ would be prohibitive. There are a number of allocation implementations available on the 'Net which focus on detecting and pinpointing problems by trading performance for extra sanity checks and detailed diagnostics. -.Sh "DIAGNOSTIC MESSAGES +.Sh DIAGNOSTIC MESSAGES If .Fn malloc , .Fn calloc , diff --git a/lib/libc/string/strtok.3 b/lib/libc/string/strtok.3 index 027d5dd39096..76c66f695703 100644 --- a/lib/libc/string/strtok.3 +++ b/lib/libc/string/strtok.3 @@ -160,8 +160,9 @@ value. Since this implementation always alters the next starting point, such a sequence of calls would always return .Dv NULL . -.Sh AUTHOR -Wes Peters, Softweyr LLC: -.Xr <wes@softweyr.com> +.Sh AUTHORS +.An Wes Peters, Softweyr LLC: Aq wes@softweyr.com .br -Based on the FreeBSD 3.0 implementation. +Based on the +.Fx 3.0 +implementation. diff --git a/lib/libc/sys/aio_cancel.2 b/lib/libc/sys/aio_cancel.2 index 5adbdb8e949c..7018e0c4e7c4 100644 --- a/lib/libc/sys/aio_cancel.2 +++ b/lib/libc/sys/aio_cancel.2 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: aio_cancel.2,v 1.3 1999/07/01 21:13:06 mpp Exp $ +.\" $Id: aio_cancel.2,v 1.4 1999/08/15 09:51:20 mpp Exp $ .\" .Dd June 2, 1999 .Dt AIO_CANCEL 2 diff --git a/lib/libc/sys/aio_error.2 b/lib/libc/sys/aio_error.2 index cedc5d9ec9f9..3f2c5dc4e11f 100644 --- a/lib/libc/sys/aio_error.2 +++ b/lib/libc/sys/aio_error.2 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: aio_error.2,v 1.3 1999/07/01 21:13:06 mpp Exp $ +.\" $Id: aio_error.2,v 1.4 1999/08/15 09:51:20 mpp Exp $ .\" .Dd June 2, 1999 .Dt AIO_ERROR 2 diff --git a/lib/libc/sys/aio_read.2 b/lib/libc/sys/aio_read.2 index 5718b39c2500..ae132d4b333c 100644 --- a/lib/libc/sys/aio_read.2 +++ b/lib/libc/sys/aio_read.2 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: aio_read.2,v 1.2 1999/07/01 13:31:30 kris Exp $ +.\" $Id: aio_read.2,v 1.1.2.1 1999/07/01 13:32:31 kris Exp $ .\" .Dd November 17, 1998 .Dt AIO_READ 2 @@ -181,7 +181,7 @@ The .Nm Function first appeared in .Fx 3.0 . -.Sh AUTHOR +.Sh AUTHORS This manual page was written by .An Terry Lambert Aq terry@whistle.com . diff --git a/lib/libc/sys/aio_return.2 b/lib/libc/sys/aio_return.2 index 804452f9c3e6..73b15c5eba40 100644 --- a/lib/libc/sys/aio_return.2 +++ b/lib/libc/sys/aio_return.2 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: aio_return.2,v 1.3 1999/07/01 21:13:06 mpp Exp $ +.\" $Id: aio_return.2,v 1.4 1999/08/15 09:51:21 mpp Exp $ .\" .Dd June 2, 1999 .Dt AIO_RETURN 2 diff --git a/lib/libc/sys/aio_suspend.2 b/lib/libc/sys/aio_suspend.2 index 5df78b4d8047..4cdc10d2e027 100644 --- a/lib/libc/sys/aio_suspend.2 +++ b/lib/libc/sys/aio_suspend.2 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: aio_suspend.2,v 1.3 1999/07/01 21:13:06 mpp Exp $ +.\" $Id: aio_suspend.2,v 1.4 1999/08/15 09:51:21 mpp Exp $ .\" .Dd June 2, 1999 .Dt AIO_SUSPEND 2 diff --git a/lib/libc/sys/aio_write.2 b/lib/libc/sys/aio_write.2 index 04ecf201e85a..0be3346c207b 100644 --- a/lib/libc/sys/aio_write.2 +++ b/lib/libc/sys/aio_write.2 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: aio_write.2,v 1.2 1999/07/01 21:09:57 mpp Exp $ +.\" $Id: aio_write.2,v 1.3 1999/08/15 09:51:21 mpp Exp $ .\" .Dd June 2, 1999 .Dt AIO_WRITE 2 diff --git a/lib/libc/sys/execve.2 b/lib/libc/sys/execve.2 index 04a0ea7a0377..1a30802eebad 100644 --- a/lib/libc/sys/execve.2 +++ b/lib/libc/sys/execve.2 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)execve.2 8.5 (Berkeley) 6/1/94 -.\" $Id: execve.2,v 1.13 1999/08/14 06:17:24 chris Exp $ +.\" $Id: execve.2,v 1.11.2.2 1999/08/14 06:19:20 chris Exp $ .\" .Dd June 1, 1994 .Dt EXECVE 2 @@ -273,14 +273,14 @@ the real is ``root'', then the program has some of the powers of a super-user as well. .Sh SEE ALSO +.Xr ktrace 1 , .Xr _exit 2 , .Xr fork 2 , .Xr execl 3 , .Xr exit 3 , .Xr sysctl 3 , -.Xr mount 8 , -.Xr ktrace 1 , -.Xr environ 7 +.Xr environ 7 , +.Xr mount 8 .Sh HISTORY The .Fn execve diff --git a/lib/libc/sys/sendfile.2 b/lib/libc/sys/sendfile.2 index 9dc626d7f902..0f56a73d04d2 100644 --- a/lib/libc/sys/sendfile.2 +++ b/lib/libc/sys/sendfile.2 @@ -23,7 +23,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: sendfile.2,v 1.2 1998/11/06 19:35:58 dg Exp $ +.\" $Id: sendfile.2,v 1.2.2.1 1999/07/26 09:39:47 sheldonh Exp $ .\" .Dd November 5, 1998 .Dt SENDFILE 2 @@ -140,13 +140,16 @@ If specified, the number of bytes successfully sent will be returned in .El .Sh SEE ALSO .Xr open 2 , -.Xr socket 2 , .Xr send 2 , +.Xr socket 2 , .Xr writev 2 .Sh HISTORY .Fn sendfile -first appeared in FreeBSD 3.0. -This manual page first appeared in FreeBSD 3.1. +first appeared in +.Fx 3.0 . +This manual page first appeared in +.Fx 3.1 . .Sh AUTHORS .Fn sendfile -and this manual page were written by David Greenman <dg@root.com>. +and this manual page were written by +.An David Greenman Aq dg@root.com . diff --git a/lib/libcam/cam.3 b/lib/libcam/cam.3 index 1f3e0e417856..bdc164e88cac 100644 --- a/lib/libcam/cam.3 +++ b/lib/libcam/cam.3 @@ -25,7 +25,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id$ +.\" $Id: cam.3,v 1.1 1998/10/14 06:20:36 ken Exp $ .\" .Dd October 10, 1998 .Os FreeBSD 3.0 @@ -394,12 +394,12 @@ characters long. .Sh SEE ALSO .Xr cam_cdbparse 3 , .Xr pass 4 , -.Xr camcontrol 8 , +.Xr camcontrol 8 .Sh HISTORY The CAM library first appeared in .Fx 3.0 . .Sh AUTHORS -.An Kenneth Merry Aq ken@FreeBSD.ORG +.An Kenneth Merry Aq ken@FreeBSD.org .Sh BUGS .Fn cam_open_device doesn't check to see if the diff --git a/lib/libftpio/ftpio.3 b/lib/libftpio/ftpio.3 index 9de17144bb50..9a7e554f5ce9 100644 --- a/lib/libftpio/ftpio.3 +++ b/lib/libftpio/ftpio.3 @@ -22,10 +22,10 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: ftpio.3,v 1.16 1998/02/10 07:01:51 jkh Exp $ +.\" $Id: ftpio.3,v 1.17 1998/03/19 07:34:09 charnier Exp $ .\" .Dd June 17, 1996 -.Dt ftpio 3 +.Dt FTPIO 3 .Os .Sh NAME .Nm ftpLogin , diff --git a/lib/libutil/property.3 b/lib/libutil/property.3 index 287ca498fbab..f51c598d3648 100644 --- a/lib/libutil/property.3 +++ b/lib/libutil/property.3 @@ -23,11 +23,11 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: property.3,v 1.4 1998/11/22 13:20:09 jkh Exp $ +.\" $Id: property.3,v 1.4.2.1 1999/05/02 08:50:50 brian Exp $ .\" " .Dd October 7, 1998 .Os -.Dt properties 3 +.Dt PROPERTIES 3 .Sh NAME .Nm properties_read , .Nm propery_find , @@ -93,5 +93,5 @@ be a comment and will be ignored. .Xr auth_getval 3 .Sh BUGS Simplistic. -.Sh AUTHOR -Jordan Hubbard +.Sh AUTHORS +.An Jordan Hubbard diff --git a/lib/libutil/uucplock.3 b/lib/libutil/uucplock.3 index 563323ce15db..ae576e374dcb 100644 --- a/lib/libutil/uucplock.3 +++ b/lib/libutil/uucplock.3 @@ -23,11 +23,11 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: uucplock.3,v 1.10 1997/10/07 07:24:50 joerg Exp $ +.\" $Id: uucplock.3,v 1.11 1998/05/28 23:17:08 brian Exp $ .\" " .Dd March 30, 1997 .Os -.Dt uucplock 3 +.Dt UUCPLOCK 3 .Sh NAME .Nm uu_lock , .Nm uu_unlock , |
