blob: 3197e6e978b02cddaa1e4a64327165c82b87c863 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "headers.h"
SmbProcessResult
smbcomfindclose2(SmbSession *s, SmbHeader *h, uchar *pdata, SmbBuffer *)
{
ushort sid;
if (!smbcheckwordcount("comfindclose2", h, 1))
return SmbProcessResultFormat;
sid = smbnhgets(pdata);
smbsearchclosebyid(s, sid);
return smbbufferputack(s->response, h, &s->peerinfo);
}
|