taglinefilesource code
wct40fs/smbfs/proc.cstatic int smb_request_ok(struct smb_server *s, int command, int wct, int bcc);
wct270fs/smbfs/proc.csmb_verify(byte *packet, int command, int wct, int bcc)
wct273fs/smbfs/proc.cSMB_WCT(packet) >= wct &&
wct414fs/smbfs/proc.csmb_request_ok(struct smb_server *s, int command, int wct, int bcc)
wct431fs/smbfs/proc.celse if (smb_verify(s->packet, command, wct, bcc) != 0) {
wct468fs/smbfs/proc.csmb_request_ok_unlock(struct smb_server *s, int command, int wct, int bcc)
wct470fs/smbfs/proc.cint result = smb_request_ok(s, command, wct, bcc);
wct481fs/smbfs/proc.csmb_setup_header(struct smb_server *server, byte command, word wct, word bcc)
wct483fs/smbfs/proc.cdword xmit_len = SMB_HEADER_LEN + wct * sizeof(word) + bcc + 2;
wct510fs/smbfs/proc.c*p++ = wct;    /* wct */
wct511fs/smbfs/proc.cp += 2*wct;
wct522fs/smbfs/proc.cbyte command, word wct, word bcc)
wct525fs/smbfs/proc.creturn smb_setup_header(server, command, wct, bcc);