免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3855 | 回复: 1
打印 上一主题 下一主题

NET-SNMP开发疑问 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-09-25 11:42 |只看该作者 |倒序浏览
以下函数是实现一分钟负载,由于负载是浮点数,所以我用的char来转换。下面的代码是使用mib2c自动生成的,但是对其中的几个CASE不明白。
  1. int
  2. handle_loadOne(netsnmp_mib_handler *handler,
  3.                netsnmp_handler_registration *reginfo,
  4.                netsnmp_agent_request_info *reqinfo,
  5.                netsnmp_request_info *requests)
  6. {
  7.     int             ret;
  8.     /*
  9.      * We are never called for a GETNEXT if it's registered as a
  10.      * "instance", as it's "magically" handled for us.  
  11.      */

  12.     /*
  13.      * a instance handler also only hands us one request at a time, so
  14.      * we don't need to loop over a list of requests; we'll only get one.
  15.      */

  16.     switch (reqinfo->mode) {

  17.     case MODE_GET:
  18.         (requests->requestvb, ASN_OCTET_STR,
  19.                                  (u_char *)
  20.                                  /* XXX: a pointer to the scalar's data */
  21.                                  ,
  22.                                  /*
  23.                                   * XXX: the length of the data in bytes
  24.                                   */ );
  25.         break;

  26.         /*
  27.          * SET REQUEST
  28.          *snmp_set_var_typed_value
  29.          * multiple states in the transaction.  See:
  30.          * http://www.net-snmp.org/tutorial-5/toolkit/mib_module/set-actions.jpg
  31.          */
  32.     case MODE_SET_RESERVE1:
  33.         /*
  34.          * or you could use netsnmp_check_vb_type_and_size instead
  35.          */
  36.         ret = netsnmp_check_vb_type(requests->requestvb, ASN_OCTET_STR);
  37.         if (ret != SNMP_ERR_NOERROR) {
  38.             netsnmp_set_request_error(reqinfo, requests, ret);
  39.         }
  40.         break;

  41.     case MODE_SET_RESERVE2:
  42.         /*
  43.          * XXX malloc "undo" storage buffer
  44.          */
  45.         if ( /* XXX if malloc, or whatever, failed: */ ) {
  46.             netsnmp_set_request_error(reqinfo, requests,
  47.                                       SNMP_ERR_RESOURCEUNAVAILABLE);
  48.         }
  49.         break;

  50.     case MODE_SET_FREE:
  51.         /*
  52.          * XXX: free resources allocated in RESERVE1 and/or
  53.          * RESERVE2.  Something failed somewhere, and the states
  54.          * below won't be called.
  55.          */
  56.         break;

  57.     case MODE_SET_ACTION:
  58.         /*
  59.          * XXX: perform the value change here
  60.          */
  61.         if ( /* XXX: error? */ ) {
  62.             netsnmp_set_request_error(reqinfo, requests, /* some error */
  63.                                       );
  64.         }
  65.         break;

  66.     case MODE_SET_COMMIT:
  67.         /*
  68.          * XXX: delete temporary storage
  69.          */
  70.         if ( /* XXX: error? */ ) {
  71.             /*
  72.              * try _really_really_ hard to never get to this point
  73.              */
  74.             netsnmp_set_request_error(reqinfo, requests,
  75.                                       SNMP_ERR_COMMITFAILED);
  76.         }
  77.         break;

  78.     case MODE_SET_UNDO:
  79.         /*
  80.          * XXX: UNDO and return to previous value for the object
  81.          */
  82.         if ( /* XXX: error? */ ) {
  83.             /*
  84.              * try _really_really_ hard to never get to this point
  85.              */
  86.             netsnmp_set_request_error(reqinfo, requests,
  87.                                       SNMP_ERR_UNDOFAILED);
  88.         }
  89.         break;

  90.     default:
  91.         /*
  92.          * we should never get here, so this is a really bad error
  93.          */
  94.         snmp_log(LOG_ERR, "unknown mode (%d) in handle_loadOne\n",
  95.                  reqinfo->mode);
  96.         return SNMP_ERR_GENERR;
  97.     }

  98.     return SNMP_ERR_NOERROR;
  99. }
复制代码
若是实现snmpget值,是否是该在函数中定义 float loadOneMin;来实现?

论坛徽章:
0
2 [报告]
发表于 2011-09-25 20:42 |只看该作者
等高手解答!!!!!!!!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP