标题: 请教win协议的脚本函数 [打印本页] 作者: flyingkite 时间: 2006-5-25 17:50 标题: 请教win协议的脚本函数 我这段时间在学习lr的win协议的脚本函数,是看帮助,其中遇到了这个函数lrs_get_buffer_by_name ,帮助里的例子是:
In the following example, lrs_get_buffer_by_name gets the buffer and its size for the buffer descriptor "buff2".
lr_output_message("The buffer's size is: %d/n", NumberOfBytes);
The contents of the buffer, as shown in the data file data.ws are:
recv buff2 3
"\xff\xfe\x01"
The output generated by the above code, as seen in the VuGen Execution log is:
Message from run.c(52): The buffer size is: 3 bytes
The ActualBuffer variable is a pointer to binary data; therefore you should not use string functions to manipulate it. To save the content of the buffer to a parameter for later use:
/* Save the contents of ActualBuffer into a parameter called "new_parameter" */