8a0e574219bdaa434c22ace51aecb678872936e8
[dragonfly.git] / lib / libutil / trimdomain.3
1 .\" Copyright (c) 1999 Brian Somers <brian@Awfulhak.org>
2 .\" 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 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD: src/lib/libutil/trimdomain.3,v 1.3.2.3 2001/12/17 10:08:32 ru Exp $
26 .\" $DragonFly: src/lib/libutil/trimdomain.3,v 1.2 2003/06/17 04:26:52 dillon Exp $
27 .\"
28 .Dd April 7, 1999
29 .Os
30 .Dt TRIMDOMAIN 3
31 .Sh NAME
32 .Nm trimdomain
33 .Nd "trim the current domain name from a host name"
34 .Sh LIBRARY
35 .Lb libutil
36 .Sh SYNOPSIS
37 .In sys/types.h
38 .In libutil.h
39 .Ft void
40 .Fn trimdomain "char *fullhost" "int hostsize"
41 .Sh DESCRIPTION
42 The function
43 .Fn trimdomain
44 removes the current domain name from the passed
45 .Ar fullhost
46 name by writing a
47 .Dv NUL
48 character over the first period of the passed name.  The current domain
49 name is determined by calling
50 .Xr gethostname 3
51 and removing everything up to the first period.  The name is determined
52 the first time this function is called and is cached for future use.
53 .Pp
54 .Fn trimdomain
55 will only trim the domain name if the passed
56 .Ar fullname
57 ends with the current domain name and if the length of the resulting host
58 name does not exceed
59 .Ar hostsize .
60 .Pp
61 If the passed
62 .Ar fullname
63 is actually a
64 .Dv DISPLAY
65 specification of the form
66 .Sm off
67 .Ar host . domain : nn Oo .
68 .Ar nn
69 .Oc
70 .Sm on
71 and the domain name is the same as the local domain name,
72 .Fn trimdomain
73 will remove the embedded domain name, copying the screen and display
74 numbers to the end of the base host name and resulting in
75 .Sm off
76 .Ar host : nn Op . Ar nn .
77 .Sm on
78 .Sh RETURN VALUES
79 .Fn trimdomain
80 does not return a value.
81 .Sh SEE ALSO
82 .Xr gethostname 3