lwres_packet.3
来自「非常好的dns解析软件」· 3 代码 · 共 171 行
3
171 行
.\" Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC").\" Copyright (C) 2000, 2001 Internet Software Consortium..\" .\" Permission to use, copy, modify, and distribute this software for any.\" purpose with or without fee is hereby granted, provided that the above.\" copyright notice and this permission notice appear in all copies..\" .\" THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH.\" REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY.\" AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,.\" INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM.\" LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE.\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR.\" PERFORMANCE OF THIS SOFTWARE..\".\" $Id: lwres_packet.3,v 1.18.18.11 2007/01/30 00:23:45 marka Exp $.\".hy 0.ad l.\" Title: lwres_packet.\" Author: .\" Generator: DocBook XSL Stylesheets v1.71.1 <http://docbook.sf.net/>.\" Date: Jun 30, 2000.\" Manual: BIND9.\" Source: BIND9.\".TH "LWRES_PACKET" "3" "Jun 30, 2000" "BIND9" "BIND9".\" disable hyphenation.nh.\" disable justification (adjust text to left margin only).ad l.SH "NAME"lwres_lwpacket_renderheader, lwres_lwpacket_parseheader \- lightweight resolver packet handling functions.SH "SYNOPSIS".nf#include <lwres/lwpacket.h>.fi.HP 43.BI "lwres_result_t lwres_lwpacket_renderheader(lwres_buffer_t\ *" "b" ", lwres_lwpacket_t\ *" "pkt" ");".HP 42.BI "lwres_result_t lwres_lwpacket_parseheader(lwres_buffer_t\ *" "b" ", lwres_lwpacket_t\ *" "pkt" ");".SH "DESCRIPTION".PPThese functions rely on a\fBstruct lwres_lwpacket\fRwhich is defined in\fIlwres/lwpacket.h\fR..PP.RS 4.nftypedef struct lwres_lwpacket lwres_lwpacket_t;.fi.RE.sp.PP.RS 4.nfstruct lwres_lwpacket { lwres_uint32_t length; lwres_uint16_t version; lwres_uint16_t pktflags; lwres_uint32_t serial; lwres_uint32_t opcode; lwres_uint32_t result; lwres_uint32_t recvlength; lwres_uint16_t authtype; lwres_uint16_t authlength;};.fi.RE.sp.PPThe elements of this structure are:.PP\fBlength\fR.RS 4the overall packet length, including the entire packet header. This field is filled in by the lwres_gabn_*() and lwres_gnba_*() calls..RE.PP\fBversion\fR.RS 4the header format. There is currently only one format,\fBLWRES_LWPACKETVERSION_0\fR. This field is filled in by the lwres_gabn_*() and lwres_gnba_*() calls..RE.PP\fBpktflags\fR.RS 4library\-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..RE.PP\fBserial\fR.RS 4is 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..RE.PP\fBopcode\fR.RS 4indicates 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..RE.PP\fBresult\fR.RS 4is 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..RE.PP\fBrecvlength\fR.RS 4is 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..RE.PP\fBauthtype\fR.RS 4defines 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..RE.PP\fBauthlen\fR.RS 4gives the length of the authentication data. Since packet authentication is currently not used, this must be zero..RE.PPThe following opcodes are currently defined:.PP\fBNOOP\fR.RS 4Success is always returned and the packet contents are echoed. The lwres_noop_*() functions should be used for this type..RE.PP\fBGETADDRSBYNAME\fR.RS 4returns all known addresses for a given name. The lwres_gabn_*() functions should be used for this type..RE.PP\fBGETNAMEBYADDR\fR.RS 4return the hostname for the given address. The lwres_gnba_*() functions should be used for this type..RE.PP\fBlwres_lwpacket_renderheader()\fRtransfers the contents of lightweight resolver packet structure\fBlwres_lwpacket_t\fR\fI*pkt\fRin network byte order to the lightweight resolver buffer,\fI*b\fR..PP\fBlwres_lwpacket_parseheader()\fRperforms the converse operation. It transfers data in network byte order from buffer\fI*b\fRto resolver packet\fI*pkt\fR. The contents of the buffer\fIb\fRshould correspond to a\fBlwres_lwpacket_t\fR..SH "RETURN VALUES".PPSuccessful calls to\fBlwres_lwpacket_renderheader()\fRand\fBlwres_lwpacket_parseheader()\fRreturn\fBLWRES_R_SUCCESS\fR. If there is insufficient space to copy data between the buffer\fI*b\fRand lightweight resolver packet\fI*pkt\fRboth functions return\fBLWRES_R_UNEXPECTEDEND\fR..SH "COPYRIGHT"Copyright \(co 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC").brCopyright \(co 2000, 2001 Internet Software Consortium..br
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?