Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dauth-options.c201 ret->force_tun_device = -1; in sshauthopt_new()
463 ret->force_tun_device = a2tun(opt, NULL); in sshauthopt_parse()
465 if (ret->force_tun_device == SSH_TUNID_ERR) { in sshauthopt_parse()
566 ret->force_tun_device = primary->force_tun_device; in sshauthopt_merge()
567 if (ret->force_tun_device == -1) in sshauthopt_merge()
568 ret->force_tun_device = additional->force_tun_device; in sshauthopt_merge()
676 OPTSCALAR(force_tun_device); in sshauthopt_copy()
820 if ((r = sshbuf_put_u8(m, opts->force_tun_device == -1)) != 0 || in sshauthopt_serialise()
821 (r = sshbuf_put_u32(m, (opts->force_tun_device < 0) ? in sshauthopt_serialise()
822 0 : (u_int)opts->force_tun_device)) != 0) in sshauthopt_serialise()
[all …]
H A Dauth-options.h53 int force_tun_device; member
H A Dauth.c696 snprintf(buf, sizeof(buf), "%d", opts->force_tun_device); in auth_log_authopts()
710 opts->force_tun_device == -1 ? "" : " tun=", in auth_log_authopts()
711 opts->force_tun_device == -1 ? "" : buf, in auth_log_authopts()
H A Dserverloop.c513 if (auth_opts->force_tun_device != -1) { in server_request_tun()
515 auth_opts->force_tun_device != (int)tun) in server_request_tun()
517 tun = auth_opts->force_tun_device; in server_request_tun()
/freebsd/crypto/openssh/regress/unittests/authopt/
H A Dtests.c186 expected->force_tun_device = 1; in test_authkeys_parse()
193 expected->force_tun_device = SSH_TUNID_ANY; in test_authkeys_parse()
545 expected->force_tun_device = 6; in test_merge()