search for: username_len

Displaying 2 results from an estimated 2 matches for "username_len".

2004 Aug 09
1
[PATCH] RPA authentication mechanism
...ude "hostpid.h" +#include "hex-binary.h" +#include "md5.h" + +struct rpa_auth_request { + struct auth_request auth_request; + + pool_t pool; + + int phase; + + /* cached: */ + unsigned char *pwd_md5; + size_t service_len; + const unsigned char *service_ucs2be; + size_t username_len; + const unsigned char *username_ucs2be; + size_t realm_len; + const unsigned char *realm_ucs2be; + + /* requested: */ + unsigned char *service_challenge; + unsigned char *service_timestamp; + + /* received: */ + unsigned int user_challenge_len; + unsigned char *user_challenge; + unsigned char *use...
2003 Sep 23
0
[PATCH] tdb multiple format
...,58 @@ return False; } - /* unpack the buffer into variables */ - len = tdb_unpack ((char *)buf, buflen, TDB_FORMAT_STRING, - &logon_time, - &logoff_time, - &kickoff_time, - &pass_last_set_time, - &pass_can_change_time, - &pass_must_change_time, - &username_len, &username, - &domain_len, &domain, - &nt_username_len, &nt_username, - &fullname_len, &fullname, - &homedir_len, &homedir, - &dir_drive_len, &dir_drive, - &logon_script_len, &logon_script, - &profile_path_len, &profile_path, - &am...