Cross Reference: /httpd/support/ab.c

Lines Matching defs:opt_arg

2128     const char *opt_arg;
2173 ,&c, &opt_arg)) == APR_SUCCESS) {
2176 requests = atoi(opt_arg);
2188 concurrency = atoi(opt_arg);
2191 windowsize = atoi(opt_arg);
2199 gnuplot = xstrdup(opt_arg);
2205 csvperc = xstrdup(opt_arg);
2211 aprtimeout = apr_time_from_sec(atoi(opt_arg)); /* timeout value */
2216 if (open_postfile(opt_arg) != APR_SUCCESS) {
2225 if (open_postfile(opt_arg) != APR_SUCCESS) {
2238 verbosity = atoi(opt_arg);
2241 tlimit = atoi(opt_arg);
2246 content_type = apr_pstrdup(cntxt, opt_arg);
2249 cookie = apr_pstrcat(cntxt, "Cookie: ", opt_arg, "\r\n", NULL);
2256 while (apr_isspace(*opt_arg))
2257 opt_arg++;
2258 if (apr_base64_encode_len(strlen(opt_arg)) > sizeof(tmp)) {
2261 l = apr_base64_encode(tmp, opt_arg, strlen(opt_arg));
2271 while (apr_isspace(*opt_arg))
2272 opt_arg++;
2273 if (apr_base64_encode_len(strlen(opt_arg)) > sizeof(tmp)) {
2276 l = apr_base64_encode(tmp, opt_arg, strlen(opt_arg));
2283 hdrs = apr_pstrcat(cntxt, hdrs, opt_arg, "\r\n", NULL);
2287 if (strncasecmp(opt_arg, "Host:", 5) == 0) {
2289 } else if (strncasecmp(opt_arg, "Accept:", 7) == 0) {
2291 } else if (strncasecmp(opt_arg, "User-Agent:", 11) == 0) {
2304 tablestring = opt_arg;
2312 if ((p = strchr(opt_arg, ':'))) {
2317 proxyhost = apr_pstrdup(cntxt, opt_arg);
2323 trstring = opt_arg;
2327 tdstring = opt_arg;
2336 myhost = apr_pstrdup(cntxt, opt_arg);
2340 ssl_cipher = strdup(opt_arg);
2344 method_str[CUSTOM_METHOD] = strdup(opt_arg);
2347 if (strncasecmp(opt_arg, "ALL", 3) == 0) {
2350 } else if (strncasecmp(opt_arg, "SSL2", 4) == 0) {
2353 } else if (strncasecmp(opt_arg, "SSL3", 4) == 0) {
2356 } else if (strncasecmp(opt_arg, "TLS1.1", 6) == 0) {
2358 } else if (strncasecmp(opt_arg, "TLS1.2", 6) == 0) {
2361 } else if (strncasecmp(opt_arg, "TLS1", 4) == 0) {