zoukankan      html  css  js  c++  java
  • LR基础学习_脚本信息函数

    Action()
    {
     //脚本信息函数。
     //lr_whoami:返回Vuser的ID,组名称,场景ID信息。
    /*
        int id,scid;
        char *vuser_group;
        lr_whoami(&id,&vuser_group,&scid);
        lr_error_message("Group:%s,vuser id:%d,scenario id %d",vuser_group,id,scid);
    */
     //lr_get_host_name:返回运行脚本的Generator的主机名称。
    /*
     char *my_host;
     my_host = lr_get_host_name();
     lr_output_message("my_host:%s",my_host);
    */
     //lr_get_master_host_name:返回运行脚本的Controller的主机名称。
    /*
     char *controller_host;
     controller_host = lr_get_master_host_name();
     lr_output_message("controller_host:%s",controller_host);
    */
     //lr_get_vuser_id:使用Ip spoofing之后,可以用lr_get_vuser_ip来返回当前的Vuser的Ip。如果未使用Ip spoofing功能,则返回null。

     //lr_start_timer与lr_end_timer:必须组合使用,前者用来启动一个计时器,同时返回计时器的句柄,后来用来使指定的计时器停止计时,并返回计时结果。
     //语法如下:
     //merc_timer_handle_t lr_start_timer();
     //double lr_end_timer(merc_timer_handle_t timer);
     return 0;
    }

  • 相关阅读:
    mysql安装遇到的坑
    git pull 、git fetch、 git clone
    MD markdown入门
    Libevent:8Bufferevents高级主题
    Libevent:6辅助函数以及类型
    Libevent:5events相关
    Libevent:4event loop
    Libevent:3创建event_base
    Libevent:2设置
    Libevent:1前言
  • 原文地址:https://www.cnblogs.com/zhengah/p/4272240.html
Copyright © 2011-2022 走看看