So... I am trying to write a C++ Server that can accept multiple clients. I have already written some very simple code that will accept one client but I am having trouble getting it to accept more than one. Below is the server code I have right now, it works but only for one client.
Code:
#include "info.h"

using namespace std;

int main(){

long answer;
char message[256];
...