|
LR测试c/s结构系统使用winsocket协议出现的问题!~~~~
录制脚本如下:
#include "lrs.h"
Actions()
{
lrs_create_socket("socket0", "TCP", "RemoteHost=192.168.0.116:3306", LrsLastArg);
lrs_receive("socket0", "buf0", LrsLastArg);
lrs_send("socket0", "buf1", LrsLastArg);
lrs_receive("socket0", "buf2", LrsLastArg);
lrs_send("socket0", "buf3", LrsLastArg);
lrs_receive("socket0", "buf4", LrsLastArg);
lrs_send("socket0", "buf5", LrsLastArg);
提示错误:Actions.c(22): lrs_receive(socket0, buf4)
Actions.c(22): Error : socket0 - Software caused connection abort. Error code : 10053.
请问这是什么错误?什么原因会引起这样的错误? |
|