- 论坛徽章:
- 0
|
不过,我在你代码基础上做了删减,去掉了不相关代码,去掉了for循环,使用32bit mode编译:- #include <unistd.h>
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- char retbuf[101]; //全局变量
- char buff[101]; //全局变量
- int deal(char*src, char* retbuf)
- {
- // ......
- strcpy(retbuf, "00|1000|");
- printf("retbuf[%s]", retbuf);////retbuf的输出值为""00|1000|" 赋值成功
-
- return 0;
- }
- int main()
- {
- //socket 通信
- // for(;;)
- // {
- //int newsock = accept(sock, (struct sockaddr*)&sockin, &namelen);
- int pid = fork();
- if(pid == 0)
- {
- //close(sock);
- printf("retbuf[%s]", retbuf); // retbuf:null
- deal(buff, retbuf);
- printf("retbuf[%s]", retbuf); // retbuf:null
- //...
- exit(0);
- }
- //close(newsock);
- // }
- return 0;
- }
复制代码 |
|