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 873311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:54:50+00:00 2026-05-15T10:54:50+00:00

I ran across the error Socket operation on non-socket in some of my networking

  • 0

I ran across the error Socket operation on non-socket in some of my networking code when calling connect and spent a lot of time trying to figure out what was causing it. I finally figured out that the following line of code was causing the problem:

if ((sockfd = socket( ai->ai_family, ai->ai_socktype, ai->ai_protocol) < 0)) {

See the problem? Here’s what the line should look like:

if ((sockfd = socket( ai->ai_family, ai->ai_socktype, ai->ai_protocol)) < 0) {

What I don’t understand is why the first, incorrect line doesn’t produce a warning. To put it another way, shouldn’t the general form:

if ( foo = bar() < baz ) do_something();

look odd to the compiler, especially running with g++ -Wall -Wextra?

If not, shouldn’t it at least show up as “bad style” to cppcheck, which I’m also running as part of my compile?

  • 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-15T10:54:51+00:00Added an answer on May 15, 2026 at 10:54 am

    Actually, you don’t get any warning because of the double parenthesis (.

    Try to remove one pair, and you’ll get the warning back.

    #include <iostream>
    
    int foo()
    {
        return 2;
    }
    
    int main(int /*argc*/, char** /*argv*/)
    {
        int l;
    
        if ((l = foo() < 3)) // Won't generate warning under gcc
        {
        }
    
        if (l = foo() < 3) // will generate a warning "warning: suggest parentheses around assignment used as truth value"
        {
        }
    
        return EXIT_SUCCESS;
    }
    

    To avoid such annoying mistakes/typos, I avoid assigning a value and testing it in the same statement. That’s too much error prone imho.

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

Sidebar

Related Questions

I recently ran across some 3rd party C# code which does the following: public
I'm looking at some GXT code for GWT and I ran across this use
I am porting some Java code to C# and I ran across this: List<?>
I ran across the following lines of C++ code in a file (non-contiguous lines)
I started some socket programming, and I ran across the function inet_ntoa . The
I've been looking through some code from a decompiled APK file and ran across
I'm trying to learn boost::asio for socket/networking programming. I'm trying to send some simple
I just ran across this error message while working in C# A property or
I just ran across the following error: (.gnu.linkonce.[stuff]): undefined reference to [method] [object file]:(.gnu.linkonce.[stuff]):
Ran across this line of code: FormsAuth = formsAuth ?? new FormsAuthenticationWrapper(); What do

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.