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