Lines Matching refs:force_tun_device
201 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()
886 opts->force_tun_device = f ? -1 : (int)tmp; in sshauthopt_deserialise()