Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ares_parse_txt_reply(3) [debian man page]

ARES_PARSE_TXT_REPLY(3) 				     Library Functions Manual					   ARES_PARSE_TXT_REPLY(3)

NAME
ares_parse_txt_reply - Parse a reply to a DNS query of type TXT SYNOPSIS
#include <ares.h> int ares_parse_txt_reply(const unsigned char* abuf, int alen, struct ares_txt_reply **txt_out); DESCRIPTION
The ares_parse_txt_reply function parses the response to a query of type TXT into a linked list of struct ares_txt_reply The parameters abuf and alen give the contents of the response. The result is stored in allocated memory and a pointer to it stored into the variable pointed to by txt_out. It is the caller's responsibility to free the resulting txt_out structure when it is no longer needed using the function ares_free_data The structure ares_txt_reply contains the following fields: struct ares_txt_reply { struct ares_txt_reply *next; unsigned int length; unsigned char *txt; }; RETURN VALUES
ares_parse_txt_reply can return any of the following values: ARES_SUCCESS The response was successfully parsed. ARES_EBADRESP The response was malformatted. ARES_ENODATA The response did not contain an answer to the query. ARES_ENOMEM Memory was exhausted. AVAILABILITY
This function was first introduced in c-ares version 1.7.0. SEE ALSO
ares_query(3) ares_free_data(3) AUTHOR
Written by Jakub Hrozek <jhrozek@redhat.com>, on behalf of Red Hat, Inc http://www.redhat.com 27 October 2009 ARES_PARSE_TXT_REPLY(3)

Check Out this Related Man Page

ARES_PARSE_SRV_REPLY(3) 				     Library Functions Manual					   ARES_PARSE_SRV_REPLY(3)

NAME
ares_parse_srv_reply - Parse a reply to a DNS query of type SRV SYNOPSIS
#include <ares.h> int ares_parse_srv_reply(const unsigned char* abuf, int alen, struct ares_srv_reply** srv_out); DESCRIPTION
The ares_parse_srv_reply function parses the response to a query of type SRV into a linked list of struct ares_srv_reply The parameters abuf and alen give the contents of the response. The result is stored in allocated memory and a pointer to it stored into the variable pointed to by srv_out. It is the caller's responsibility to free the resulting srv_out structure when it is no longer needed using the function ares_free_data The structure ares_srv_reply contains the following fields: struct ares_srv_reply { struct ares_srv_reply *next; unsigned short weight; unsigned short priority; unsigned short port; char *host; }; RETURN VALUES
ares_parse_srv_reply can return any of the following values: ARES_SUCCESS The response was successfully parsed. ARES_EBADRESP The response was malformatted. ARES_ENODATA The response did not contain an answer to the query. ARES_ENOMEM Memory was exhausted. AVAILABILITY
This function was first introduced in c-ares version 1.7.0. SEE ALSO
ares_query(3) ares_free_data(3) AUTHOR
Written by Jakub Hrozek <jhrozek@redhat.com>, on behalf of Red Hat, Inc http://www.redhat.com 4 August 2009 ARES_PARSE_SRV_REPLY(3)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Excel related query for the code..need help..

find /A/B/C/{1,3,5,7} -name "*.txt" -o -name "*.csv" -o -name "*.TXT" -o -name "*.dat" |xargs ls -ltr |awk '{print $8 ,$9}' > result.xls it will give the result that is $8 and &9 in the result file... let say i need the result is a excel file....and i need the result to be print like $8 field... (10 Replies)
Discussion started by: sapan123
10 Replies

2. Shell Programming and Scripting

Print related query

i Am using the below query and printing the $8 and $9 filed.. find /A/B/C/{1,3,5,7} -name "*.txt" -o -name "*.csv" -o -name "*.TXT" -o -name "*.dat" |xargs ls -ltr |awk '{print $8 ,$9}' > result.xls this give me the rsult like below.. 2008/home/ADMIN/om/1.txt 2008/home/ADMIN/om/hi.txt ... (1 Reply)
Discussion started by: sapan123
1 Replies

3. Shell Programming and Scripting

command to list .txt and .TXT file

Hi expersts, in my directory i have *.txt and *.TXT and *.TXT.log, *.txt.log I want list only .txt and .TXT files in one command... how to ?? //purple (1 Reply)
Discussion started by: thepurple
1 Replies

4. Shell Programming and Scripting

Shell script to find files

Hi Experts, I am trying to write a shell script that should 1. Find files with name (ab030.txt,Ab030.TXT,AB030.TXT,ab030.TXT,AB030.txt) 2. If any of the above found, rename it to AB030.TXT Thanks. (4 Replies)
Discussion started by: welldone
4 Replies