direct stdin and stdout

  

close(fileno(stdin));
dup2(sockfd, fileno(stdin));
close(fileno(stdout));
dup2(sockfd, fileno(stdout));
close(fileno(stderr));
dup2(sockfd, fileno(stderr));

posted @ 2019-05-21 13:12  redstar9451  阅读(97)  评论(0编辑  收藏  举报