我创建了一个套接字函数来启动一个进程,用数据填充它并获得返回
void runAndPrint()
{
int fd[2], fout[2], num_bytes;
int pid;
char c, buf[10], buffer[100];
FILE *fp;
pipe(fd);
if((pid = fork()) == -1)
return 1;
if (pid == 0)
{
while ((num_bytes = read(fileno(stdin), buffer, 1)) > 0){
write(fd[1], buffer, num_bytes);
}
printf("parent");
}
else
{
printf("child");
close(fd[1]);
dup2(fd[0], 0);
close(fd[0]);
pipe(fout);
if((pid = fork()) == -1)
return 1;
if (pid == 0)
{
close(fout[0]);
dup2(fout[1], 1);
close(fout[1]);
execlp("base64", "base64", NULL);
}
else
{
close(fout[1]);
while((c = read(fout[0], buf, 10)) > 0)
{
printf("--- %.*s", c, buf);
}
}
}
return 0;
}
我需要在套接字上执行它....
我在做的同时读...写到fd [1]我将发送从套接字收到的数据。从进程lol处理的数据我将发送回套接字。
我的问题是:
int main(){
try{
TCPServerSocket servSock(echoServPort);
for(;;){
runAndPrint();
HandleTCPClient(servSock.accept());
}
}
}
这只是一个例子。
但是,在循环中它只打印父部分而不是子部分,只是因为它在循环中。在处理孩子之前,我不知道如何仍然在runAndPrint过程中。