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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T02:45:30+00:00 2026-06-14T02:45:30+00:00

I want to write a C++ wrapper for the Linux Socket API. The method

  • 0

I want to write a C++ wrapper for the Linux Socket API. The method of my wrapper should have the same names as the underlying function names of the API.

But for example in the bind() method I use the plain C bind() function from the Linux socket API. I call bind(mSocketDescriptor, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) which is compatible with the signature of the APIs function. My compiler is complaining Invalid arguments 'Candidates are: bool bind(int)' Which is referring to my method inline bool Socket::bind(int portno).

Why is Eclipse referring to the wrappers function and how do I inhibit Eclipse doing this?

  • 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-14T02:45:31+00:00Added an answer on June 14, 2026 at 2:45 am

    You must add a global scope qualifier:

    ::bind(mSocketDescriptor, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
    

    The scope resolution determines, where the compiler looks for a name. You can prefix a name with a namespace and/or class scope (e.g. socket_wrapper::socket::bind()). And there is the global scope, where the system functions usually live. These functions may be prefixed with the global scope qualifier ::bind(), so the compiler knows not to use a local method with the same name.

    There is also the std namespace, where the classes and functions of the standard library are located. If you want to use the standard library, you prefix these names with std:: (e.g. std::iostream, std::cout, std::string, std::vector<>, ...).

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

Sidebar

Related Questions

I want to write a C++ wrapper for the Linux Socket API. In the
I want to write a wrapper to a plugin's function, but it uses varargs
I want to write a wrapper function in R. I should take a function
I want to write a cross-plattform wrapper for some OS specific (Linux/MacOSX/Windows) calls to
I want to write a simple wrapper around another class. A small example: class
I have a question: I want to write a method called copy for my
Hello I want write my own desktop sharing application in Java. The application should
I want to write a DBI wrapper, provide select/insert/update/delete, and users can choose which
I want write a ruby wrapper for a existing C library (.so files). Can
I want to write a wrapper bash script, and to pass all arguments to

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.