Messages in this thread |  | | | Date | Wed, 12 Dec 2001 17:35:17 +0100 | | From | antirez <> | | Subject | Re: IP -> hostname lookup in kernel module? |
| |
On Thu, Dec 13, 2001 at 12:36:06AM +0800, Joe Wong wrote: > Hi, > > Is there such a thing in kernel like gethostbyaddr in user space?
There isn't, but you can create an UDP socket and to the query, or run an userspace resolver daemon that talks with your module, or some other trick.
BTW it isn't the kind of stuff to do in kernelspace. You may think about do it in a post-processing stage if possible, or to write a module that exports to userspace what you need from the kernel and do the rest in userspace.
-- Salvatore Sanfilippo <antirez@invece.org> http://www.kyuzz.org/antirez finger antirez@tella.alicom.com for PGP key 28 52 F5 4A 49 65 34 29 - 1D 1B F6 DA 24 C7 12 BF - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |