File: initsubnet.3.xml

package info (click to toggle)
libreswan 5.2-2.3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 81,644 kB
  • sloc: ansic: 129,988; sh: 32,018; xml: 20,646; python: 10,303; makefile: 3,022; javascript: 1,506; sed: 574; yacc: 511; perl: 264; awk: 52
file content (196 lines) | stat: -rw-r--r-- 6,119 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
                   "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
<!-- lifted from troff+man by doclifter -->
<refentry id='initsubnet3'>
<refmeta>
<refentrytitle>IPSEC-INITSUBNET</refentrytitle>
<manvolnum>3</manvolnum>
<refmiscinfo class='date'>12 March 2002</refmiscinfo>
<refmiscinfo class="source">libreswan</refmiscinfo>
<refmiscinfo class="manual">Library functions</refmiscinfo>
</refmeta>
<refnamediv id='name'>
<refname>ipsec-initsubnet</refname>
<refname>ipsec-addrtosubnet</refname>
<refname>ipsec-subnettypeof</refname>
<refname>ipsec-masktocount</refname>
<refname>ipsec-networkof</refname>
<refname>ipsec-maskof</refname>
<refpurpose>initialize an ip_subnet, initialize a singleton ip_subnet, get address type of an ip_subnet, convert subnet mask to bit count, get base address of an ip_subnet, get subnet mask of an ip_subnet</refpurpose>
</refnamediv>
<!-- body begins here -->
<refsynopsisdiv id='synopsis'>
<funcsynopsis>
<funcsynopsisinfo>
#include &lt;libreswan.h&gt;

</funcsynopsisinfo>
<funcprototype>
<funcdef>const char *<function>initsubnet</function></funcdef>
    <paramdef>const ip_address * <parameter>addr</parameter></paramdef>
    <paramdef>int <parameter>maskbits</parameter></paramdef>
    <paramdef>int <parameter>clash</parameter></paramdef>
    <paramdef>ip_subnet * <parameter>dst</parameter></paramdef>
</funcprototype>

<funcprototype>
<funcdef>const char *<function>addrtosubnet</function></funcdef>
    <paramdef>const ip_address * <parameter>addr</parameter></paramdef>
    <paramdef>ip_subnet * <parameter>dst</parameter></paramdef>
</funcprototype>
<funcprototype>
<funcdef>int <function>subnettypeof</function></funcdef>
    <paramdef>const ip_subnet * <parameter>src</parameter></paramdef>
</funcprototype>

<funcprototype>
<funcdef>int <function>masktocount</function></funcdef>
    <paramdef>const ip_address * <parameter>src</parameter></paramdef>
</funcprototype>

<funcprototype>
<funcdef>void <function>networkof</function></funcdef>
    <paramdef>const ip_subnet * <parameter>src</parameter></paramdef>
    <paramdef>ip_address * <parameter>dst</parameter></paramdef>
</funcprototype>

<funcprototype>
<funcdef>void <function>maskof</function></funcdef>
    <paramdef>const ip_subnet * <parameter>src</parameter></paramdef>
    <paramdef>ip_address * <parameter>dst</parameter></paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>


<refsect1 id='description'><title>DESCRIPTION</title>
<para>The
<emphasis>&lt;libreswan.h&gt;</emphasis>
library uses an internal type
<emphasis>ip_subnet</emphasis>
to contain a description of an IP subnet
(base address plus mask).
These functions provide basic tools for creating and examining this type.</para>

<para><emphasis>Initsubnet</emphasis>
initializes a variable
<emphasis>*dst</emphasis>
of type
<emphasis>ip_subnet</emphasis>
from a base address and
a count of mask bits.
The
<varname role='parameter'>clash</varname>
parameter specifies what to do if the base address includes
<literal>1</literal>
bits outside the prefix specified by the mask
(that is, in the &ldquo;host number&rdquo; part of the address):</para>
  <blockquote>
  <variablelist>
    <varlistentry>
    <term>'0'</term>
    <listitem>
<para>zero out host-number bits</para>
    </listitem>
    </varlistentry>
    <varlistentry>
    <term>'x'</term>
    <listitem>
<para>non-zero host-number bits are an error</para>
    </listitem>
    </varlistentry>
  </variablelist>
  </blockquote> <!-- -->

<para><emphasis>Initsubnet</emphasis>
returns
<emphasis>NULL</emphasis>
for success and
a pointer to a string-literal error message for failure;
see DIAGNOSTICS.</para>

<para><emphasis>Addrtosubnet</emphasis>
initializes an
<emphasis>ip_subnet</emphasis>
variable
<emphasis>*dst</emphasis>
to a &ldquo;singleton subnet&rdquo; containing the single address
<emphasis>*addr</emphasis>.
It returns
<emphasis>NULL</emphasis>
for success and
a pointer to a string-literal error message for failure.</para>

<para><emphasis>Subnettypeof</emphasis>
returns the address type of a subnet,
normally
<emphasis>AF_INET</emphasis>
or
<emphasis>AF_INET6</emphasis>.
(The
<emphasis>&lt;libreswan.h&gt;</emphasis>
header file arranges to include the necessary headers for these
names to be known.)</para>

<para><emphasis>Masktocount</emphasis>
converts a subnet mask, expressed as an address, to a bit count
suitable for use with
<function>initsubnet</function>.
It returns
<option>-1</option>
for error; see DIAGNOSTICS.</para>

<para><emphasis>Networkof</emphasis>
fills in
<emphasis>*dst</emphasis>
with the base address of subnet
<varname role='parameter'>src</varname>.</para>

<para><emphasis>Maskof</emphasis>
fills in
<emphasis>*dst</emphasis>
with the subnet mask of subnet
<varname role='parameter'>src</varname>,
expressed as an address.</para>
</refsect1>

<refsect1 id='see_also'><title>SEE ALSO</title>
<para><citerefentry><refentrytitle>inet</refentrytitle><manvolnum>3</manvolnum></citerefentry>, <citerefentry><refentrytitle>ipsec-ttosubnet</refentrytitle><manvolnum>3</manvolnum></citerefentry>, <citerefentry><refentrytitle>ipsec-rangetosubnet</refentrytitle><manvolnum>3</manvolnum></citerefentry></para>
</refsect1>

<refsect1 id='diagnostics'><title>DIAGNOSTICS</title>
<para>Fatal errors in
<function>initsubnet</function>
are:
unknown address family;
unknown
<varname role='parameter'>clash</varname>
value;
impossible mask bit count;
non-zero host-number bits and
<varname role='parameter'>clash</varname>
is
<emphasis>'x'</emphasis>.
Fatal errors in
<function>addrtosubnet</function>
are:
unknown address family.
Fatal errors in
<function>masktocount</function>
are:
unknown address family;
mask bits not contiguous.</para>
</refsect1>

  <refsect1 id='author'>
    <title>AUTHOR</title>
    <para>
      <emphasis role='strong'>Paul Wouters</emphasis>
    </para>
  </refsect1>
<refsect1 id='history'><title>HISTORY</title>
<para>Written for the FreeS/WAN project by Henry Spencer.</para>
</refsect1>
</refentry>