9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Joel “chesky” Salomon <chesky@plan9.jp>
To: 9fans@cse.psu.edu
Subject: Re: [9fans] csipinfo
Date: Wed, 18 Oct 2006 14:44:52 -0400	[thread overview]
Message-ID: <0fcc387289a4a346cbd5bf450171a0d0@plan9.jp> (raw)
In-Reply-To: <61d9157e8f6994d999d7f257cd2b05b4@coraid.com>

> had to go around the list ... can't post from here.
> 
> i think you're making this too hard.  what you want is more
> of a dns query.  this is very easy to do.  something like
> (this might not complie -- i just typed it out.)
> 
> char*
> gethostbyaddr(char *net, char *addr)
> {
> 	char buf[64];
> 	int fd, l;
> 
> 	if(net == 0)
> 		net="/net";
> 	snprint(buf, sizeof buf, "%s/dns", net);
> 	fd = open(buf, ORDWR);
> 	if(fd < 0)
> 		return 0;
> 	snprint(buf, sizeof buf, "%s ptr", addr);
> 	if(write(fd, buf, strlen(buf)) < 0)
> 		return 0;
> 	l = read(fd, buf, sizeof buf);
> 	if(l < 0 || l == sizeof buf)
> 		return 0;
> 	return strdup(buf);
> }
> 
> - erik

Thanks, this finally looks like what I need.  Two points though:
1.  Is 64 bytes sufficient for the domain name?  Searching the ’net
I’ve found other numbers — according to <http://tinyurl.com/ykyths> it
should be 1005; <http://tinyurl.com/xdp4> links to a name about 140
bytes long and firefox handles it just fine.
2. Why the second part of “if(l < 0 || l == sizeof buf)”?

I’ll bang on this a bit and see if I can make it set errstr appropriately.

--Joel



       reply	other threads:[~2006-10-18 18:44 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <61d9157e8f6994d999d7f257cd2b05b4@coraid.com>
2006-10-18 18:44 ` Joel “chesky” Salomon [this message]
2006-10-18 19:14   ` rog
2006-10-18 19:26     ` erik quanstrom
2006-10-18 19:38     ` Joel “chesky” Salomon
2006-10-18 19:57       ` C H Forsyth
2006-10-18 23:51         ` Charles Forsyth
2006-10-19  8:29           ` Charles Forsyth
2006-10-18 20:17       ` Joel “chesky” Salomon
2006-10-18 21:29       ` geoff
2006-10-18 19:56     ` Charles Forsyth
2006-10-18 19:59       ` erik quanstrom
2006-10-18 20:15       ` rog
2006-10-18 19:30   ` erik quanstrom
2006-10-18  3:10 Joel “chesky” Salomon
2006-10-18  3:36 ` geoff
2006-10-18  5:20   ` Joel “chesky” Salomon
2006-10-18  5:37     ` geoff
2006-10-18  5:53       ` Joel “chesky” Salomon
2006-10-18 12:38         ` Joel “chesky” Salomon
2006-10-18 15:32         ` Russ Cox
2006-10-18 16:43           ` Joel Salomon
2006-10-18 16:59             ` rog
2006-10-18 20:38 ` andrey mirtchovski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0fcc387289a4a346cbd5bf450171a0d0@plan9.jp \
    --to=chesky@plan9.jp \
    --cc=9fans@cse.psu.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).