Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 443961
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T21:13:22+00:00 2026-05-12T21:13:22+00:00

see the following code: accept(sockfd, (struct sockaddr*)&cliaddr, &slen); cout << inet_ntop(AF_INET, cliaddr.sin_addr, ipv4addr, 100);

  • 0

see the following code:

accept(sockfd, (struct sockaddr*)&cliaddr, &slen);
cout << inet_ntop(AF_INET, cliaddr.sin_addr, ipv4addr, 100);

my client connects from localhost.
i get an absurd address in the output. this is not my ip address. everytime i run the code i get a different ip address. when i ping that ip address i don’t get any response.

what is the reason.

i am running suse linux on a virtual machine in windows vista.

Update:

bzero(&cliaddr, sizeof(cliaddr));
int connfd = accept(sockfd, (struct sockaddr*)&cliaddr, &slen);

if (sem_wait(&mutex) < 0)
    err_sys("sem_init error");

char ipv4addr[100];
cout << inet_ntop(AF_INET, &cliaddr.sin_addr, ipv4addr, 100) << endl;

//const char* p = inet_ntop(AF_INET, &cliaddr.sin_addr, ipv4addr, 100);
//cout << p << endl;

//cout << (void*)p << " " << (void*)ipv4addr << endl;

this returns address as 0.0.0.0

if i uncomment the lines, i get the correct address in all the lines, 127.0.0.1

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T21:13:22+00:00Added an answer on May 12, 2026 at 9:13 pm

    You are missing the 4th parameter in your call to inet_ntop(). Here’s a working example:

    
      int sockfd, fd;
      struct sockaddr_in saddr;
      socklen_t len = sizeof( saddr );
      char addr_buf[INET_ADDRSTRLEN]; /* defined in <netinet/in.h> */
    
      /* ... socket(), bind(), listen() */
    
      bzero( &saddr, len );
      if (( fd = accept( sockfd, ( struct sockaddr* )&saddr, &len )) == -1 )
      { perror( "accept" ); exit( 1 ); } /* watch out for EINTR */
    
      if ( inet_ntop( AF_INET, &saddr.sin_addr, addr_buf,
        INET_ADDRSTRLEN ) == NULL )
      { perror( "inet_ntop" ); exit( 1 ); }
    
      printf( "accepted connection from [%s:%d]\n",
        addr_buf, ntohs( saddr.sin_port ));
      ...
    

    Always check for errors when talking to network.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 224k
  • Answers 224k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It all depends on the context, you can use letter-spacing,… May 13, 2026 at 12:42 am
  • Editorial Team
    Editorial Team added an answer This is what I use, <xs:simpleType name="countryCodeType"> <xs:restriction base="xs:string"> <xs:enumeration… May 13, 2026 at 12:42 am
  • Editorial Team
    Editorial Team added an answer You have to use separate processes (because of the often-mentioned… May 13, 2026 at 12:42 am

Related Questions

In the following code, you see that pickledList is being used by the thread
I am trying to use XSLT variables and not having much success, hopefully I'm
I have a WCF service using BasicHttpBinding with Windows authentication. Most clients are domain
We have a (currently InnoDB) table which contains roughly 500,000 rows. This represents a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.