Merge from vendor branch LIBARCHIVE:
[dragonfly.git] / contrib / bind-9.3 / lib / lwres / man / lwres_packet.3
1 .\" Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC")
2 .\" Copyright (C) 2000, 2001 Internet Software Consortium.
3 .\" 
4 .\" Permission to use, copy, modify, and distribute this software for any
5 .\" purpose with or without fee is hereby granted, provided that the above
6 .\" copyright notice and this permission notice appear in all copies.
7 .\" 
8 .\" THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9 .\" REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10 .\" AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11 .\" INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12 .\" LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13 .\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14 .\" PERFORMANCE OF THIS SOFTWARE.
15 .\"
16 .\" $Id: lwres_packet.3,v 1.15.2.1.8.6 2006/06/29 13:02:31 marka Exp $
17 .\"
18 .hy 0
19 .ad l
20 .\"     Title: lwres_packet
21 .\"    Author: 
22 .\" Generator: DocBook XSL Stylesheets v1.70.1 <http://docbook.sf.net/>
23 .\"      Date: Jun 30, 2000
24 .\"    Manual: BIND9
25 .\"    Source: BIND9
26 .\"
27 .TH "LWRES_PACKET" "3" "Jun 30, 2000" "BIND9" "BIND9"
28 .\" disable hyphenation
29 .nh
30 .\" disable justification (adjust text to left margin only)
31 .ad l
32 .SH "NAME"
33 lwres_lwpacket_renderheader, lwres_lwpacket_parseheader \- lightweight resolver packet handling functions
34 .SH "SYNOPSIS"
35 .nf
36 #include <lwres/lwpacket.h>
37 .fi
38 .HP 43
39 .BI "lwres_result_t lwres_lwpacket_renderheader(lwres_buffer_t\ *b, lwres_lwpacket_t\ *pkt);"
40 .HP 42
41 .BI "lwres_result_t lwres_lwpacket_parseheader(lwres_buffer_t\ *b, lwres_lwpacket_t\ *pkt);"
42 .SH "DESCRIPTION"
43 .PP
44 These functions rely on a
45 \fBstruct lwres_lwpacket\fR
46 which is defined in
47 \fIlwres/lwpacket.h\fR.
48 .sp
49 .RS 3n
50 .nf
51 typedef struct lwres_lwpacket lwres_lwpacket_t;
52 struct lwres_lwpacket {
53         lwres_uint32_t          length;
54         lwres_uint16_t          version;
55         lwres_uint16_t          pktflags;
56         lwres_uint32_t          serial;
57         lwres_uint32_t          opcode;
58         lwres_uint32_t          result;
59         lwres_uint32_t          recvlength;
60         lwres_uint16_t          authtype;
61         lwres_uint16_t          authlength;
62 };
63 .fi
64 .RE
65 .sp
66 .PP
67 The elements of this structure are:
68 .TP 3n
69 \fBlength\fR
70 the overall packet length, including the entire packet header. This field is filled in by the lwres_gabn_*() and lwres_gnba_*() calls.
71 .TP 3n
72 \fBversion\fR
73 the header format. There is currently only one format,
74 \fBLWRES_LWPACKETVERSION_0\fR. This field is filled in by the lwres_gabn_*() and lwres_gnba_*() calls.
75 .TP 3n
76 \fBpktflags\fR
77 library\-defined flags for this packet: for instance whether the packet is a request or a reply. Flag values can be set, but not defined by the caller. This field is filled in by the application wit the exception of the LWRES_LWPACKETFLAG_RESPONSE bit, which is set by the library in the lwres_gabn_*() and lwres_gnba_*() calls.
78 .TP 3n
79 \fBserial\fR
80 is set by the requestor and is returned in all replies. If two or more packets from the same source have the same serial number and are from the same source, they are assumed to be duplicates and the latter ones may be dropped. This field must be set by the application.
81 .TP 3n
82 \fBopcode\fR
83 indicates the operation. Opcodes between 0x00000000 and 0x03ffffff are reserved for use by the lightweight resolver library. Opcodes between 0x04000000 and 0xffffffff are application defined. This field is filled in by the lwres_gabn_*() and lwres_gnba_*() calls.
84 .TP 3n
85 \fBresult\fR
86 is only valid for replies. Results between 0x04000000 and 0xffffffff are application defined. Results between 0x00000000 and 0x03ffffff are reserved for library use. This field is filled in by the lwres_gabn_*() and lwres_gnba_*() calls.
87 .TP 3n
88 \fBrecvlength\fR
89 is the maximum buffer size that the receiver can handle on requests and the size of the buffer needed to satisfy a request when the buffer is too large for replies. This field is supplied by the application.
90 .TP 3n
91 \fBauthtype\fR
92 defines the packet level authentication that is used. Authorisation types between 0x1000 and 0xffff are application defined and types between 0x0000 and 0x0fff are reserved for library use. Currently these are not used and must be zero.
93 .TP 3n
94 \fBauthlen\fR
95 gives the length of the authentication data. Since packet authentication is currently not used, this must be zero.
96 .PP
97 The following opcodes are currently defined:
98 .TP 3n
99 \fBNOOP\fR
100 Success is always returned and the packet contents are echoed. The lwres_noop_*() functions should be used for this type.
101 .TP 3n
102 \fBGETADDRSBYNAME\fR
103 returns all known addresses for a given name. The lwres_gabn_*() functions should be used for this type.
104 .TP 3n
105 \fBGETNAMEBYADDR\fR
106 return the hostname for the given address. The lwres_gnba_*() functions should be used for this type.
107 .PP
108 \fBlwres_lwpacket_renderheader()\fR
109 transfers the contents of lightweight resolver packet structure
110 \fBlwres_lwpacket_t\fR
111 \fI*pkt\fR
112 in network byte order to the lightweight resolver buffer,
113 \fI*b\fR.
114 .PP
115 \fBlwres_lwpacket_parseheader()\fR
116 performs the converse operation. It transfers data in network byte order from buffer
117 \fI*b\fR
118 to resolver packet
119 \fI*pkt\fR. The contents of the buffer
120 \fIb\fR
121 should correspond to a
122 \fBlwres_lwpacket_t\fR.
123 .SH "RETURN VALUES"
124 .PP
125 Successful calls to
126 \fBlwres_lwpacket_renderheader()\fR
127 and
128 \fBlwres_lwpacket_parseheader()\fR
129 return
130 \fBLWRES_R_SUCCESS\fR. If there is insufficient space to copy data between the buffer
131 \fI*b\fR
132 and lightweight resolver packet
133 \fI*pkt\fR
134 both functions return
135 \fBLWRES_R_UNEXPECTEDEND\fR.
136 .SH "COPYRIGHT"
137 Copyright \(co 2004, 2005 Internet Systems Consortium, Inc. ("ISC")