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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:52:32+00:00 2026-05-10T22:52:32+00:00

Socket has a constructor that takes a winsock SOCKET as parameter and stores it

  • 0

Socket has a constructor that takes a winsock SOCKET as parameter and stores it in a private variable:

Socket::Socket(SOCKET s) {     this->s = s; } 

I’m trying to make a class ‘GameSocket’ that will parse data from my Socket class:

class GameSocket : public Socket {  protected:      void ParseData(unsigned char* data, int size);  }; 

Next to these classes, I have a ‘Server’ class that creates new sockets when needed:

GameSocket* Server::Accept() {      SOCKET a = accept(s, 0, 0);     if(a==SOCKET_ERROR) {         return 0;     }     else {         return new GameSocket(a);     }  } 

However, this gives me an error on the last ‘else’:

error C2664: 'GameSocket::GameSocket' : cannot convert parameter 1 from 'SOCKET' to 'const GameSocket &' 

I must be missing something with constructors when dealing with derived classes…

Don’t go too hard on me, I’m relatively new to C++ and OOP

  • 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. 2026-05-10T22:52:33+00:00Added an answer on May 10, 2026 at 10:52 pm

    Add in a constructor for GameSocket

    class GameSocket : public Socket {  public:      // you need to add     GameSocket(SOCKET s) : Socket(s) {}  protected:      void ParseData(unsigned char* data, int size);  }; 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Isn't it as simple as: myframe.document.getElementById("searchForm").searchTerm.value = 'hello'; myframe.document.getElementById("searchForm").submit(); Make… May 12, 2026 at 12:36 am
  • Editorial Team
    Editorial Team added an answer What kind of C? Mostly ANSI C, with a lot… May 12, 2026 at 12:35 am
  • Editorial Team
    Editorial Team added an answer You can also push Ctrl + F5 to start without… May 12, 2026 at 12:35 am

Related Questions

I'm trying to send a WOL package on all interfaces in order to wake
I have a class which I'm serialising to send over a unix socket and
I'm using select() on a Linux/ARM platform to see if a udp socket has
I have a Solaris daemon written in Java6. Clients can connect to it using

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.