diff options
Diffstat (limited to 'src/lib/libc/net/ns.3')
| -rw-r--r-- | src/lib/libc/net/ns.3 | 132 |
1 files changed, 0 insertions, 132 deletions
diff --git a/src/lib/libc/net/ns.3 b/src/lib/libc/net/ns.3 deleted file mode 100644 index f89b4fe042..0000000000 --- a/src/lib/libc/net/ns.3 +++ /dev/null | |||
| @@ -1,132 +0,0 @@ | |||
| 1 | .\" $NetBSD: ns.3,v 1.3 1995/02/25 06:20:50 cgd Exp $ | ||
| 2 | .\" | ||
| 3 | .\" Copyright (c) 1986, 1991, 1993 | ||
| 4 | .\" The Regents of the University of California. All rights reserved. | ||
| 5 | .\" | ||
| 6 | .\" Redistribution and use in source and binary forms, with or without | ||
| 7 | .\" modification, are permitted provided that the following conditions | ||
| 8 | .\" are met: | ||
| 9 | .\" 1. Redistributions of source code must retain the above copyright | ||
| 10 | .\" notice, this list of conditions and the following disclaimer. | ||
| 11 | .\" 2. Redistributions in binary form must reproduce the above copyright | ||
| 12 | .\" notice, this list of conditions and the following disclaimer in the | ||
| 13 | .\" documentation and/or other materials provided with the distribution. | ||
| 14 | .\" 3. All advertising materials mentioning features or use of this software | ||
| 15 | .\" must display the following acknowledgement: | ||
| 16 | .\" This product includes software developed by the University of | ||
| 17 | .\" California, Berkeley and its contributors. | ||
| 18 | .\" 4. Neither the name of the University nor the names of its contributors | ||
| 19 | .\" may be used to endorse or promote products derived from this software | ||
| 20 | .\" without specific prior written permission. | ||
| 21 | .\" | ||
| 22 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
| 23 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 24 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 25 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
| 26 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 27 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 28 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 29 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 30 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 32 | .\" SUCH DAMAGE. | ||
| 33 | .\" | ||
| 34 | .\" @(#)ns.3 8.1 (Berkeley) 6/4/93 | ||
| 35 | .\" | ||
| 36 | .Dd June 4, 1993 | ||
| 37 | .Dt NS 3 | ||
| 38 | .Os BSD 4.3 | ||
| 39 | .Sh NAME | ||
| 40 | .Nm ns_addr , | ||
| 41 | .Nm ns_ntoa | ||
| 42 | .Nd Xerox | ||
| 43 | .Tn NS Ns (tm) | ||
| 44 | address conversion routines | ||
| 45 | .Sh SYNOPSIS | ||
| 46 | .Fd #include <sys/types.h> | ||
| 47 | .Fd #include <netns/ns.h> | ||
| 48 | .Ft struct ns_addr | ||
| 49 | .Fn ns_addr "char *cp" | ||
| 50 | .Ft char * | ||
| 51 | .Fn ns_ntoa "struct ns_addr ns" | ||
| 52 | .Sh DESCRIPTION | ||
| 53 | The routine | ||
| 54 | .Fn ns_addr | ||
| 55 | interprets character strings representing | ||
| 56 | .Tn XNS | ||
| 57 | addresses, returning binary information suitable | ||
| 58 | for use in system calls. | ||
| 59 | The routine | ||
| 60 | .Fn ns_ntoa | ||
| 61 | takes | ||
| 62 | .Tn XNS | ||
| 63 | addresses and returns | ||
| 64 | .Tn ASCII | ||
| 65 | strings representing the address in a | ||
| 66 | notation in common use in the Xerox Development Environment: | ||
| 67 | .Bd -filled -offset indent | ||
| 68 | <network number>.<host number>.<port number> | ||
| 69 | .Ed | ||
| 70 | .Pp | ||
| 71 | Trailing zero fields are suppressed, and each number is printed in hexadecimal, | ||
| 72 | in a format suitable for input to | ||
| 73 | .Fn ns_addr . | ||
| 74 | Any fields lacking super-decimal digits will have a | ||
| 75 | trailing | ||
| 76 | .Ql H | ||
| 77 | appended. | ||
| 78 | .Pp | ||
| 79 | Unfortunately, no universal standard exists for representing | ||
| 80 | .Tn XNS | ||
| 81 | addresses. | ||
| 82 | An effort has been made to insure that | ||
| 83 | .Fn ns_addr | ||
| 84 | be compatible with most formats in common use. | ||
| 85 | It will first separate an address into 1 to 3 fields using a single delimiter | ||
| 86 | chosen from | ||
| 87 | period | ||
| 88 | .Ql \&. , | ||
| 89 | colon | ||
| 90 | .Ql \&: | ||
| 91 | or pound-sign | ||
| 92 | .Ql \&# . | ||
| 93 | Each field is then examined for byte separators (colon or period). | ||
| 94 | If there are byte separators, each subfield separated is taken to be | ||
| 95 | a small hexadecimal number, and the entirety is taken as a network-byte-ordered | ||
| 96 | quantity to be zero extended in the high-network-order bytes. | ||
| 97 | Next, the field is inspected for hyphens, in which case | ||
| 98 | the field is assumed to be a number in decimal notation | ||
| 99 | with hyphens separating the millenia. | ||
| 100 | Next, the field is assumed to be a number: | ||
| 101 | It is interpreted | ||
| 102 | as hexadecimal if there is a leading | ||
| 103 | .Ql 0x | ||
| 104 | (as in C), | ||
| 105 | a trailing | ||
| 106 | .Ql H | ||
| 107 | (as in Mesa), or there are any super-decimal digits present. | ||
| 108 | It is interpreted as octal is there is a leading | ||
| 109 | .Ql 0 | ||
| 110 | and there are no super-octal digits. | ||
| 111 | Otherwise, it is converted as a decimal number. | ||
| 112 | .Sh RETURN VALUES | ||
| 113 | None. (See | ||
| 114 | .Sx BUGS . ) | ||
| 115 | .Sh SEE ALSO | ||
| 116 | .Xr hosts 5 , | ||
| 117 | .Xr networks 5 , | ||
| 118 | .Sh HISTORY | ||
| 119 | The | ||
| 120 | .Fn ns_addr | ||
| 121 | and | ||
| 122 | .Fn ns_toa | ||
| 123 | functions appeared in | ||
| 124 | .Bx 4.3 . | ||
| 125 | .Sh BUGS | ||
| 126 | The string returned by | ||
| 127 | .Fn ns_ntoa | ||
| 128 | resides in a static memory area. | ||
| 129 | The function | ||
| 130 | .Fn ns_addr | ||
| 131 | should diagnose improperly formed input, and there should be an unambiguous | ||
| 132 | way to recognize this. | ||
