📄 lwres_getrrsetbyname.3
字号:
.\" Copyright (C) 2004, 2005 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_getrrsetbyname.3,v 1.11.2.1.8.5 2005/10/13 02:33:53 marka Exp $.\".hy 0.ad l.\" ** You probably do not want to edit this file directly **.\" It was generated using the DocBook XSL Stylesheets (version 1.69.1)..\" Instead of manually editing it, you probably should edit the DocBook XML.\" source for it and then use the DocBook XSL Stylesheets to regenerate it..TH "LWRES_GETRRSETBYNAME" "3" "Oct 18, 2000" "BIND9" "BIND9".\" disable hyphenation.nh.\" disable justification (adjust text to left margin only).ad l.SH "NAME"lwres_getrrsetbyname, lwres_freerrset \- retrieve DNS records.SH "SYNOPSIS".nf#include <lwres/netdb.h>.fi.HP 25\fBint\ \fBlwres_getrrsetbyname\fR\fR\fB(\fR\fBconst\ char\ *hostname\fR\fB, \fR\fBunsigned\ int\ rdclass\fR\fB, \fR\fBunsigned\ int\ rdtype\fR\fB, \fR\fBunsigned\ int\ flags\fR\fB, \fR\fBstruct\ rrsetinfo\ **res\fR\fB);\fR.HP 21\fBvoid\ \fBlwres_freerrset\fR\fR\fB(\fR\fBstruct\ rrsetinfo\ *rrset\fR\fB);\fR.PPThe following structures are used:.sp.nfstruct rdatainfo { unsigned int rdi_length; /* length of data */ unsigned char *rdi_data; /* record data */};struct rrsetinfo { unsigned int rri_flags; /* RRSET_VALIDATED... */ unsigned int rri_rdclass; /* class number */ unsigned int rri_rdtype; /* RR type number */ unsigned int rri_ttl; /* time to live */ unsigned int rri_nrdatas; /* size of rdatas array */ unsigned int rri_nsigs; /* size of sigs array */ char *rri_name; /* canonical name */ struct rdatainfo *rri_rdatas; /* individual records */ struct rdatainfo *rri_sigs; /* individual signatures */};.fi.sp.SH "DESCRIPTION".PP\fBlwres_getrrsetbyname()\fRgets a set of resource records associated with a\fIhostname\fR,\fIclass\fR, and\fItype\fR.\fIhostname\fRis a pointer a to null\-terminated string. The\fIflags\fRfield is currently unused and must be zero..PPAfter a successful call to\fBlwres_getrrsetbyname()\fR,\fI*res\fRis a pointer to an\fBrrsetinfo\fRstructure, containing a list of one or more\fBrdatainfo\fRstructures containing resource records and potentially another list of\fBrdatainfo\fRstructures containing SIG resource records associated with those records. The members\fBrri_rdclass\fRand\fBrri_rdtype\fRare copied from the parameters.\fBrri_ttl\fRand\fBrri_name\fRare properties of the obtained rrset. The resource records contained in\fBrri_rdatas\fRand\fBrri_sigs\fRare in uncompressed DNS wire format. Properties of the rdataset are represented in the\fBrri_flags\fRbitfield. If the RRSET_VALIDATED bit is set, the data has been DNSSEC validated and the signatures verified..PPAll of the information returned by\fBlwres_getrrsetbyname()\fRis dynamically allocated: the\fBrrsetinfo\fRand\fBrdatainfo\fRstructures, and the canonical host name strings pointed to by the\fBrrsetinfo\fRstructure. Memory allocated for the dynamically allocated structures created by a successful call to\fBlwres_getrrsetbyname()\fRis released by\fBlwres_freerrset()\fR.\fIrrset\fRis a pointer to a\fBstruct rrset\fRcreated by a call to\fBlwres_getrrsetbyname()\fR..PP.SH "RETURN VALUES".PP\fBlwres_getrrsetbyname()\fRreturns zero on success, and one of the following error codes if an error occurred:.TP\fBERRSET_NONAME\fRthe name does not exist.TP\fBERRSET_NODATA\fRthe name exists, but does not have data of the desired type.TP\fBERRSET_NOMEMORY\fRmemory could not be allocated.TP\fBERRSET_INVAL\fRa parameter is invalid.TP\fBERRSET_FAIL\fRother failure.TP.SH "SEE ALSO".PP\fBlwres\fR(3).
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -