taglinefilesource code
bcc33fs/smbfs/proc.cstatic int smb_request_ok(struct smb_server *s, int command, int wct, int bcc);
bcc268fs/smbfs/proc.csmb_verify(byte *packet, int command, int wct, int bcc)
bcc272fs/smbfs/proc.c(bcc == -1 || SMB_BCC(packet) >= bcc)) ? 0 : -EIO;
bcc412fs/smbfs/proc.csmb_request_ok(struct smb_server *s, int command, int wct, int bcc)
bcc429fs/smbfs/proc.celse if (smb_verify(s->packet, command, wct, bcc) != 0) {
bcc466fs/smbfs/proc.csmb_request_ok_unlock(struct smb_server *s, int command, int wct, int bcc)
bcc468fs/smbfs/proc.cint result = smb_request_ok(s, command, wct, bcc);
bcc479fs/smbfs/proc.csmb_setup_header(struct smb_server *server, byte command, word wct, word bcc)
bcc481fs/smbfs/proc.cdword xmit_len = SMB_HEADER_LEN + wct * sizeof(word) + bcc + 2;
bcc510fs/smbfs/proc.cWSET(p, 0, bcc);
bcc520fs/smbfs/proc.cbyte command, word wct, word bcc)
bcc523fs/smbfs/proc.creturn smb_setup_header(server, command, wct, bcc);
bcc950fs/smbfs/proc.cword bcc;
bcc1008fs/smbfs/proc.cp = smb_decode_word(p, &bcc);           
bcc1016fs/smbfs/proc.cif (bcc != count * SMB_DIRINFO_SIZE + 3) {