I've got a socket open, which connects a client and the server.
I'm implementing remote execution, and so I want to change the file descriptor table such that calls which would normally go to stdout, actually go across the socket to be output on the client.
Right now i have the server fork, and then use the system() command to execute whatever command.
What do i have to do to manipulate the file descriptor table?
Here is the code I am working with:
I am using select. The socket I am using is the one returned by the accept call (this is all server side).
dup2(S,1);
int retval = fork();
if (retval > 1)
{
system(receive.text);
return 0;
}
Now the result of this, is that no text is printed to the server (so its obviously not hooked into the stdout of the server), but neither is anything displayed on the client).
Do i have to do anything more on the client side to get this out (like a recv() call?), and am I using the right socket?
Thanks.