RE: gethostname() and gethostbyname() APIs
RE: gethostname() and gethostbyname() APIs
- Subject: RE: gethostname() and gethostbyname() APIs
- From: Navin Sharma <email@hidden>
- Date: Tue, 4 May 2004 11:23:54 +0530
I do not deny that application may have some problem. But, have a query that
why the two APIs are behaving properly in Panther Client and not in Panther
Server.
Below is the code chunk:
******************************************************
hostent *hstruct;
in_addr *inaddr;
err = gethostname(name,255);
hstruct = gethostbyname(name);
if(hstruct){
inaddr = (in_addr *) hstruct->h_addr;
}
strcpy(address, (const char *) inet_ntoa(*inaddr));
******************************************************
Runs fine on Panther Client (10.3.3) and not on Panther Server (10.3.3). Am
I doing some OS specific thing?
Thanks in advance.
Regards
Navin Sharma
_______________________________________________
macnetworkprog mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/macnetworkprog
Do not post admin requests to the list. They will be ignored.