inet_addr() returns 0


 
Thread Tools Search this Thread
Top Forums Programming inet_addr() returns 0
# 1  
Old 05-31-2005
Data inet_addr() returns 0

Im trying to connect to a particular IP address and I'm tying to use gethostbyaddr() and inet_addr() to do this. However, when I tried using inet_addr(), I always get a return value of 0 when I tried to connect to "172.21.16.238". Hope someone here could help me on this. I already tried using inet_ network() but I still get the same results.

Variable declaration:
char host_name2[CHKPARAMLEN] = "172.21.16.238";
char host_name[CHKPARAMLEN];
char *index, *instring_ptr, *instringTemp_ptr, *host_name_ptr, *host_name2_ptr;


Actual Code:
...
while (*host_name2_ptr != '\0')
{
if (*host_name2_ptr != ' ')
{
*host_name_ptr = *host_name2_ptr;
++host_name_ptr ;
}
++host_name2_ptr;
}
printf("host_name after for loop: %s end\n", host_name);

addr = inet_addr(host_name_ptr);
printf("addr after inet_addr: %i \n", addr);
if (isalpha(host_name[0])) { /* host address is a name */
if (host_name[strlen(host_name)-1] == '\n')
host_name[strlen(host_name)-1] = '\0';
h = gethostbyname(host_name);
printf("host address is a name \n");
}
else
{
printf("host address is an IP address \n");
addr = inet_addr(host_name); // inet_addr returns 0 when host name is 172.21.16.238
h = gethostbyaddr((char *)&addr, sizeof addr, AF_INET);
}
if(h==0) {
printf("BMODCHK: Unknown Host '172.21.16.238' \n");
exit(1);
}

Last edited by soulfactory2002; 05-31-2005 at 03:07 PM..
# 2  
Old 06-02-2005
I think it is your C code, not the call. inet_addr returns a (-1) for malformed addresses. You have a lot of code which seems to be playing with the address string.
Put a
Code:
printf("host_name= %s\n", host_name);

right before you call to inet_addr()

The return value of inet_addr is and in_addr_t datatype which is an unsigned long or an unsigned int.

This means you have to cast the result to signed datatype to see if you got minus one.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Function Returns

I'm having a little trouble returning a value from a function or calling it, I'm not quite sure. I'm calling the function here function region_lookup_with_details { results = $(set_region) echo $results } This is the function I'm calling function set_region { ... (8 Replies)
Discussion started by: akechnie
8 Replies

2. Shell Programming and Scripting

Help in function returns value

Hi, I need to return a value from the function. the value will be the output from cat command which uses random fucntion. #!/bin/ksh hello() { var1=$(`cat /dev/urandom| tr -dc 'a-zA-Z0-9-!%&()*+,-/:;<=>?_'|fold -w 10 | head -n 1`) echo "value is" var1 return var1 } hello var=$?... (2 Replies)
Discussion started by: Nandy
2 Replies

3. UNIX for Dummies Questions & Answers

Help with Functions and Value returns

mon_yy=${1} date_found=`find_end_day $mon_yy` export_dealer_changes ${date_found} Hello I am trying to pull a formatted date back from the function find_end_day and pass it into the function export_dealer_changes. When I try the above the variable date_found is empty. I have tried various... (3 Replies)
Discussion started by: treemyf
3 Replies

4. Shell Programming and Scripting

Calculation returns no value

#/bin/sh ..... #convert memory to MB let "mmsize_a= ($mmsize)/256" let "mminuse_a= ($mminuse)/256" let "mmfree_a= ($mmsize_a -$mminuse_a)" let "mmfreepercent= (($mmfree_a)/($mmsize_a))*100" # #format output echo "\n\n######################" >>$sndFile echo "\n$sysName Total Memory usage"... (3 Replies)
Discussion started by: Daniel Gate
3 Replies

5. Shell Programming and Scripting

Grep returns nothing

Hi all, I am trying to grep a .txt file for a word. When I hit enter, it returns back to $ The file is 4155402 in size and is named in this way: *_eveningtimes_done_log.txt I use this command, being in the same directory as the file: grep -i "invalid" *_eveningtimes_done_log.txt ... (16 Replies)
Discussion started by: DallasT
16 Replies

6. Programming

inet_aton and inet_addr

wht is the difference between inet_aton and inet_addr function ?? (1 Reply)
Discussion started by: lipun4u
1 Replies

7. Programming

warning: passing arg 1 of `inet_addr' makes pointer from integer without a cast

I use solaris10,following is tcp client code: #include "cliserv.h" int main(int argc,char argv){ struct sockaddr_in serv; char request,reply; int sockfd,n; if(argc!=2) err_quit("usage: tcpclient <IP address of server>"); if((sockfd=socket(PF_INET,SOCK_STREAM,0))<0) ... (1 Reply)
Discussion started by: konvalo
1 Replies

8. UNIX for Dummies Questions & Answers

Principle of inet_addr and inet_ntoa

hello, i have just started Socket programming and i come across functions inet_addr() which converts IP address to unsigned long and inet_ntoa() which converts unsigned long to IP address but dont understand on what formula/principle they do these conversions say for a given ip address can... (0 Replies)
Discussion started by: juststarted
0 Replies

9. UNIX for Dummies Questions & Answers

Grep without returns...

Is there a command where I can pipe my grep into it and it will output it with spaces rather than returns? Example I want to turn prompt$ grep blah file blah blah into this prompt$ grep blah file | someCommand blah blah (1 Reply)
Discussion started by: mrwatkin
1 Replies

10. Programming

longjmp never returns

Hi I am using setjmp and longjmp in a deeply nested functions BUT longjmp is not returning(hanging in longjmp) How can I debug this issue. I could not cut and paste the code due to its size and it is chained with other programs. Is there any way to trace where the... (2 Replies)
Discussion started by: axes
2 Replies
Login or Register to Ask a Question