Small tweaks
Lots of new code imported.
This commit is contained in:
parent
a770daa795
commit
2277c5d7bb
86 changed files with 12444 additions and 91 deletions
40
src/lib9p/dirread.c
Normal file
40
src/lib9p/dirread.c
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
#include <u.h>
|
||||
#include <libc.h>
|
||||
#include <auth.h>
|
||||
#include <fcall.h>
|
||||
#include <thread.h>
|
||||
#include <9p.h>
|
||||
|
||||
void
|
||||
dirread9p(Req *r, Dirgen *gen, void *aux)
|
||||
{
|
||||
int start;
|
||||
uchar *p, *ep;
|
||||
uint rv;
|
||||
Dir d;
|
||||
|
||||
if(r->ifcall.offset == 0)
|
||||
start = 0;
|
||||
else
|
||||
start = r->fid->dirindex;
|
||||
|
||||
p = (uchar*)r->ofcall.data;
|
||||
ep = p+r->ifcall.count;
|
||||
|
||||
while(p < ep){
|
||||
memset(&d, 0, sizeof d);
|
||||
if((*gen)(start, &d, aux) < 0)
|
||||
break;
|
||||
rv = convD2M(&d, p, ep-p);
|
||||
free(d.name);
|
||||
free(d.muid);
|
||||
free(d.uid);
|
||||
free(d.gid);
|
||||
if(rv <= BIT16SZ)
|
||||
break;
|
||||
p += rv;
|
||||
start++;
|
||||
}
|
||||
r->fid->dirindex = start;
|
||||
r->ofcall.count = p - (uchar*)r->ofcall.data;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue