taglinefilesource code
wct41fs/smbfs/proc.cstatic int smb_request_ok(struct smb_server *s, int command, int wct, int bcc);
wct282fs/smbfs/proc.csmb_verify(byte *packet, int command, int wct, int bcc)
wct285fs/smbfs/proc.cSMB_WCT(packet) >= wct &&
wct423fs/smbfs/proc.csmb_request_ok(struct smb_server *s, int command, int wct, int bcc)
wct440fs/smbfs/proc.celse if (smb_verify(s->packet, command, wct, bcc) != 0) {
wct477fs/smbfs/proc.csmb_request_ok_unlock(struct smb_server *s, int command, int wct, int bcc)
wct479fs/smbfs/proc.cint result = smb_request_ok(s, command, wct, bcc);
wct490fs/smbfs/proc.csmb_setup_header(struct smb_server *server, byte command, word wct, word bcc)
wct492fs/smbfs/proc.cdword xmit_len = SMB_HEADER_LEN + wct * sizeof(word) + bcc + 2;
wct519fs/smbfs/proc.c*p++ = wct;    /* wct */
wct520fs/smbfs/proc.cp += 2*wct;
wct531fs/smbfs/proc.cbyte command, word wct, word bcc)
wct534fs/smbfs/proc.creturn smb_setup_header(server, command, wct, bcc);