Home
last modified time | relevance | path

Searched refs:s_username (Results 1 – 1 of 1) sorted by relevance

/iperf/src/
H A Diperf_auth.c79 char *s_username, *s_password; in check_authentication() local
100 s_username = strtok(buf, ","); in check_authentication()
102 if (strcmp( username, s_username ) == 0 && strcmp( passwordHash, s_password ) == 0){ in check_authentication()
326 char *s_username, *s_password; in decode_auth_setting() local
327 s_username = (char *) calloc(plaintext_len, sizeof(char)); in decode_auth_setting()
328 if (s_username == NULL) { in decode_auth_setting()
333 free(s_username); in decode_auth_setting()
337 int rc = sscanf((char *) plaintext, auth_text_format, s_username, s_password, &utc_seconds); in decode_auth_setting()
340 free(s_username); in decode_auth_setting()
346 printf("Auth Token Credentials:\n--> %s %s\n", s_username, s_password); in decode_auth_setting()
[all …]