taglinefilesource code
wct33fs/smbfs/proc.cstatic int smb_request_ok(struct smb_server *s, int command, int wct, int bcc);
wct268fs/smbfs/proc.csmb_verify(byte *packet, int command, int wct, int bcc)
wct271fs/smbfs/proc.cSMB_WCT(packet) >= wct &&
wct412fs/smbfs/proc.csmb_request_ok(struct smb_server *s, int command, int wct, int bcc)
wct429fs/smbfs/proc.celse if (smb_verify(s->packet, command, wct, bcc) != 0) {
wct466fs/smbfs/proc.csmb_request_ok_unlock(struct smb_server *s, int command, int wct, int bcc)
wct468fs/smbfs/proc.cint result = smb_request_ok(s, command, wct, bcc);
wct479fs/smbfs/proc.csmb_setup_header(struct smb_server *server, byte command, word wct, word bcc)
wct481fs/smbfs/proc.cdword xmit_len = SMB_HEADER_LEN + wct * sizeof(word) + bcc + 2;
wct508fs/smbfs/proc.c*p++ = wct;    /* wct */
wct509fs/smbfs/proc.cp += 2*wct;
wct520fs/smbfs/proc.cbyte command, word wct, word bcc)
wct523fs/smbfs/proc.creturn smb_setup_header(server, command, wct, bcc);