|
web_concurrent_start和web_concurrent_end是起到什么作用呀
不明白
比如:
vuser_init()
{
web_url("vdAction.do",
"URL=http://ip/WCFT/vd/vdAction.do?opAction=vd&id=112",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t1.inf",
"Mode=HTTP",
LAST);
web_concurrent_start(NULL);
web_url("vd.jpg",
"URL=http://ip/WCFT/images/vd.jpg",
"Resource=1",
"RecContentType=image/jpeg",
"Referer=http://ip/WCFT/vd/vdAction.do?opAction=vd&id=112",
LAST);
web_url("adv.gif",
"URL=http://ip:8090/world/images/adv.gif",
"Resource=1",
"RecContentType=image/gif",
"Referer=http://218.108.247.148/WCFT/vd/vdAction.do?opAction=vd&id=112",
LAST);
web_url("blank.gif",
"URL=http://ip/WCFT/images/blank.gif",
"Resource=1",
"RecContentType=image/gif",
"Referer=http://218.108.247.148/WCFT/vd/vdAction.do?opAction=vd&id=112",
LAST);
web_concurrent_end(NULL);
return 0;
} |
|