Home
last modified time | relevance | path

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

/dports/ftp/wmget/wmget/
H A Dconfigure.c156 if (c) STRCPY_TO_ARRAY (c->job_defaults.proxy, value); in set_proxy()
170 if (c) STRCPY_TO_ARRAY (c->job_defaults.user_agent, v); in set_user_agent()
184 if (c) STRCPY_TO_ARRAY (c->job_defaults.referer, v); in set_referer()
198 if (c) STRCPY_TO_ARRAY (c->job_defaults.interface, v); in set_interface()
205 if (c) STRCPY_TO_ARRAY (c->job_defaults.proxy_auth, v); in set_proxy_auth()
212 if (c) STRCPY_TO_ARRAY (c->job_defaults.auth, v); in set_auth()
388 STRCPY_TO_ARRAY (cfg->job_defaults.save_to, home_directory ()); in config_server()
393 STRCPY_TO_ARRAY (cfg->job_defaults.user_agent, DEFAULT_USER_AGENT); in config_server()
H A Dserver.c491 STRCPY_TO_ARRAY (j->source_url, req->source_url); in init_job()
508 STRCPY_TO_ARRAY (j->options.proxy, req->proxy); in init_job()
514 STRCPY_TO_ARRAY (j->options.user_agent, req->user_agent); in init_job()
520 STRCPY_TO_ARRAY (j->options.referer, req->referer); in init_job()
526 STRCPY_TO_ARRAY (j->options.interface, req->interface); in init_job()
529 STRCPY_TO_ARRAY (j->options.proxy_auth, req->proxy_auth); in init_job()
532 STRCPY_TO_ARRAY (j->options.auth, req->auth); in init_job()
557 STRCPY_TO_ARRAY (j->options.display, req->display); in init_job()
576 STRCPY_TO_ARRAY (j->options.save_to, in init_job()
590 STRCPY_TO_ARRAY (j->options.save_to, in init_job()
H A Dwmget.h200 #define STRCPY_TO_ARRAY(to,from) \ macro