Home
last modified time | relevance | path

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

/iperf/src/
H A Diperf_api.c1102 char *client_username = NULL, *client_rsa_public_key = NULL, *server_rsa_private_key = NULL; in iperf_parse_arguments() local
1547 client_rsa_public_key = strdup(optarg); in iperf_parse_arguments()
1592 if (test->role == 's' && (client_username || client_rsa_public_key)){ in iperf_parse_arguments()
1595 } else if (test->role == 'c' && (client_username || client_rsa_public_key) && in iperf_parse_arguments()
1596 !(client_username && client_rsa_public_key)) { in iperf_parse_arguments()
1599 } else if (test->role == 'c' && (client_username && client_rsa_public_key)){ in iperf_parse_arguments()
1610 if (test_load_pubkey_from_file(client_rsa_public_key) < 0){ in iperf_parse_arguments()
1618 test->settings->client_rsa_pubkey = load_pubkey_from_file(client_rsa_public_key); in iperf_parse_arguments()
1619 free(client_rsa_public_key); in iperf_parse_arguments()
1620 client_rsa_public_key = NULL; in iperf_parse_arguments()