Android 中的微型云
2010-04-09 05:40:00 来源:WEB开发网
核心提示:清单 9. Daemon child 功能 void child(int fd, int hit) { long i; long ret; char* cret; mainbuf=malloc(SBUF+1); theList=malloc(SBUF
清单 9. Daemon child 功能
void child(int fd, int hit) { long i; long ret; char* cret; mainbuf=malloc(SBUF+1); theList=malloc(SBUF+1); theDir=malloc(LBUF+1); cret=getcwd(theDir, LBUF); ret=read(fd, mainbuf, SBUF); if(ret == 0 || ret == -1) { error404(fd); } else { if(ret > 0 && ret < SBUF) mainbuf[ret]=0; else mainbuf[0]=0; for(i=0; i<ret; i++) if(mainbuf[i] == '' || mainbuf[i] == '
赞助商链接
|