Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/regress/unittests/servconf/
H A Dtests.c121 o->subsystem_args = new_string_array(o->num_subsystems); in set_test_options()
124 set_string(&o->subsystem_args[0], "internal-sftp -f AUTH"); in set_test_options()
127 set_string(&o->subsystem_args[1], "/bin/echo hello"); in set_test_options()
195 ASSERT_STRING_EQ(out.subsystem_args[0], "internal-sftp -f AUTH"); in check_roundtrip()
198 ASSERT_STRING_EQ(out.subsystem_args[1], "/bin/echo hello"); in check_roundtrip()
/freebsd/crypto/openssh/
H A Dservconf.c161 options->subsystem_args = NULL; in initialize_server_options()
1785 options->subsystem_args = xrecallocarray( in process_server_config_line_depth()
1786 options->subsystem_args, options->num_subsystems, in process_server_config_line_depth()
1788 sizeof(*options->subsystem_args)); in process_server_config_line_depth()
1795 xasprintf(&options->subsystem_args[options->num_subsystems], in process_server_config_line_depth()
2714 free(dst->subsystem_args[j]); in servconf_merge_subsystems()
2717 dst->subsystem_args[j] = in servconf_merge_subsystems()
2718 xstrdup(src->subsystem_args[i]); in servconf_merge_subsystems()
2728 dst->subsystem_args = xrecallocarray( in servconf_merge_subsystems()
2729 dst->subsystem_args, dst->num_subsystems, in servconf_merge_subsystems()
[all …]
H A Dservconf.h381 char **subsystem_args; member
H A Dsession.c1944 cmd = options.subsystem_args[i]; in session_subsystem_req()