51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1487|回复: 0
打印 上一主题 下一主题

[求助] 请教win协议的脚本函数

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2006-5-25 17:50:54 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我这段时间在学习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".

char *ActualBuffer;

int NumberOfBytes;

lrs_get_buffer_by_name("buff2", &ActualBuffer, &NumberOfBytes);

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" */

lrs_save_param_ex("socket2", "user", ActualBuffer, 0, NumberOfBytes, "ascii", "new_parameter");
lrs_free_buffer(ActualBuffer);

lr_output_message("The buffer contains \"%s\"\n", lr_eval_string("< new_parameter >"));

The output generated by the above code, as seen in the VuGen Execution log is:

Message from run.c(52): The buffer contains:                                                                                                                                                                 "\xff\xfe\n"

我的问题是:这个函数为什么输出的内容是  "\xff\xfe\n" ,而不是 "\xff\xfe\x01"
哪位知道的一定奉告:)多谢
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-16 14:29 , Processed in 0.145805 second(s), 27 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表