Home
last modified time | relevance | path

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

/external/iperf3/src/
Diperf_auth.c74 char *s_username, *s_password; in check_authentication() local
95 s_username = strtok(buf, ","); in check_authentication()
97 if (strcmp( username, s_username ) == 0 && strcmp( passwordHash, s_password ) == 0){ in check_authentication()
274 char s_username[20], s_password[20]; in decode_auth_setting() local
275 sscanf ((char *)plaintext,"user: %s\npwd: %s\nts: %ld", s_username, s_password, ts); in decode_auth_setting()
278 printf("Auth Token Credentials:\n--> %s %s\n", s_username, s_password); in decode_auth_setting()
282 strncpy(*username, s_username, 20); in decode_auth_setting()