search for: smb_mprcnt

Displaying 1 result from an estimated 1 matches for "smb_mprcnt".

Did you mean: smb_mdrcnt
1998 Mar 12
0
Code to check Password Server Group Memberships
...0xFF; /* Get the uid from the reply to our login */ SSVAL(outbuf, smb_uid, SVAL(inbuf, smb_uid)); /* Set up the 4 words */ SSVAL(outbuf, smb_tpscnt, 0xFF); /* Total parm bytes */ SSVAL(outbuf, smb_tdscnt, 0); /* Total data bytes */ SSVAL(outbuf, smb_mprcnt, 0x02); /* Max Param return bytes */ SSVAL(outbuf, smb_mdrcnt, 1); /* Password length */ /* Point to the data area of the smb packet */ p = &outbuf[smb_tpscnt + 5 * 2]; *(p++) = 0; /* Password is empty (null string) */ *(p++) = '\\...