Home |
Function rtsmb_cli_ez_set_user_ex Function rtsmb_set_codepage_OEM Function rtsmb_set_codepage_ANSI Function rtsmb_set_codepage_UTF8 |
Function rtsmb_cli_ez_set_user_exThis function supplies the user credentials the SMB client should use to connect to SMB servers. void rtsmb_cli_ez_set_user_ex(const char * name, const char * password); ParametersnameOptionally the domain name followed by the user name. Both names may have up to 14 characters each. passwordThe user's password. The password may have up to 128 characters. The domain name and user name have the following format: [Domain\]User Examplertsmb_cli_ez_set_user_ex("TestUser", "Secret"); rtsmb_cli_ez_set_user_ex("TestPC\\TestUser", "Secret");
|