No empty .Rs/.Re
[netbsd-mini2440.git] / share / doc / smm / 18.net / d.t
blob0f4dfe53265e1a996048d0edf0d611ad47764edd
1 .\"     $NetBSD: d.t,v 1.2 1998/01/09 06:55:52 perry Exp $
2 .\"
3 .\" Copyright (c) 1983, 1986, 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. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     @(#)d.t 8.1 (Berkeley) 6/8/93
31 .\"
32 .nr H2 1
33 .\".ds RH "Out of band data
34 .br
35 .ne 2i
36 .NH
37 \s+2Out of band data\s0
38 .PP
39 Out of band data is a facility peculiar to the stream socket
40 abstraction defined.  Little agreement appears to exist as
41 to what its semantics should be.  TCP defines the notion of
42 ``urgent data'' as in-line, while the NBS protocols [Burruss81]
43 and numerous others provide a fully independent logical
44 transmission channel along which out of band data is to be
45 sent.
46 In addition, the amount of the data which may be sent as an out
47 of band message varies from protocol to protocol; everything
48 from 1 bit to 16 bytes or more.
49 .PP
50 A stream socket's notion of out of band data has been defined
51 as the lowest reasonable common denominator (at least reasonable
52 in our minds);
53 clearly this is subject to debate.  Out of band data is expected
54 to be transmitted out of the normal sequencing and flow control
55 constraints of the data stream.  A minimum of 1 byte of out of
56 band data and one outstanding out of band message are expected to
57 be supported by the protocol supporting a stream socket.
58 It is a protocol's prerogative to support larger-sized messages, or
59 more than one outstanding out of band message at a time.
60 .PP
61 Out of band data is maintained by the protocol and is usually not
62 stored in the socket's receive queue.
63 A socket-level option, SO_OOBINLINE,
64 is provided to force out-of-band data to be placed in the normal
65 receive queue when urgent data is received;
66 this sometimes amelioriates problems due to loss of data
67 when multiple out-of-band
68 segments are received before the first has been passed to the user.
69 The PRU_SENDOOB and PRU_RCVOOB
70 requests to the \fIpr_usrreq\fP routine are used in sending and
71 receiving data.