- 论坛徽章:
- 0
|
偶还是看不出来是怎么回事...
中间循环修改为:
- while(1) {
- tmp_sd = accept(sd, (struct sockaddr*)&tmp_sin, &len);
- printf("pid %dtsd %dn", getpid(), sd);
-
- if (tmp_sd == -1) {
- perror("accept");
- exit(0);
- }
-
- //check client ip
- //fork
- pid = fork();
- if (pid==0) {
- printf("son pid %dtsd %dn", getpid(), sd);
- _exit(0);
- }
-
- close(tmp_sd);
- }
复制代码
执行情况:
- [yarco@localhost Debug]$ ./mydict.c &
- [1] 3586
- [yarco@localhost Debug]$ telnet localhost 2628
- Trying 127.0.0.1...
- Connected to localhost.localdomain (127.0.0.1).
- Escape character is '^]'.
- pid 3586 sd 3
- accept: Invalid argument
- Connection closed by foreign host.
- [1]+ Done ./mydict.c
- [yarco@localhost Debug]$
复制代码
想来想去想不明白....
accept错误怎么在printf之后呢?
要说是父进程进入另一个循环了, 那子进程至少也得printf一下吧.
何况, 如果把fork部分去掉, 程序是正常的阿...照道理说, fork之后, 资源分开了, 也不会有冲突的阿.
[ 本帖最后由 yarco1 于 2005-11-16 16:57 编辑 ] |
|