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

  • SEARCH
  • Home
  • 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 8016029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T20:25:35+00:00 2026-06-04T20:25:35+00:00

I made a simple C port-scanner program in Linux. The main algorithm is try

  • 0

I made a simple C port-scanner program in Linux. The main algorithm is try calling connect, if it returns -1, I was not able to connect, else I connected the host. This works fine in my computer, it lists my open ports. However, in my home there is another computer (behind same router with mine) and I give it’s IP but program hangs. I tried google.com, facebook.com or any other website and they do not even respond to first request. What am I doing wrong?

EDIT:

for(port=0; port<=65536; port++)  
{  
    struct sockaddr_in addr;        
    addr.sin_family = AF_INET;  
    addr.sin_port = htons(port);  
    addr.sin_addr = *((struct in_addr *)he->h_addr);  
    memset(&(addr.sin_zero), '\0', 8);  
    if (connect(sockfd, (struct sockaddr *)&addr, sizeof(struct sockaddr)) == -1) {
        printf("%i closed\n", port);  
        close(sockfd);  
    }  
    else {  
        printf("%i open\n", port);  
        close(sockfd);  
    }  
} 
  • 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-06-04T20:25:36+00:00Added an answer on June 4, 2026 at 8:25 pm

    By default connect will block for a period before returning an error. You can choose a shorter timeout by setting the socket to non-blocking mode then calling connect then select with a timeout.

    There are plenty of examples of this. This tutorial on nonblocking sockets is quite clear. Or see OsNetworkConnect for an example I wrote previously.

    Your attempts to connect to arbitrary ports on external sites may be deliberately blocked (by sys admins discouraging port scanners!).

    Note also that your loop conditions are slightly out. You should terminate at port 65535. 65536 can’t be represented in 16 bits.

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

Sidebar

Related Questions

I made a simple java program that sends bytes to the parallel port, which
I made simple python program to generate big text file: import sys import random
I have a simple HTML server program that listens on port 8000 for a
I have made a simple program to write text to existing files: ;; write
I'm trying to port a simple OpenGL ES 2.0 renderer I made for iOS
I made simple email in wordpress but it would only send email to the
Visual Studio 2008 (vb.net) I made simple anivirus but when I make Full scan
On Windows, testing different OSes is made simple using VMs. Is there a simple
so I'm making some basic programming language (just for exercise). I've made simple grammar
We made a simple application and using GoogleAppEngineLauncher (GAEL) ran that locally. Then we

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.