syntax-DateAndTime-get.m2i
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. #############################################################  -*- c -*-
  2. ## generic include for XXX. Do not use directly.
  3. ##
  4. ## $Id: syntax-DateAndTime-get.m2i,v 1.5 2004/10/08 23:39:17 rstory Exp $
  5. ########################################################################
  6. @if $m2c_mark_boundary == 1@
  7. /** START code generated by $RCSfile: syntax-DateAndTime-get.m2i,v $ $Revision: 1.5 $ */
  8. @end@
  9. ########################################################################
  10. ##
  11.    /* temporary storage for date. If you have any of this data available
  12.       directly, use it instead. */
  13.    int year, month, day, hour, minutes, seconds, deci_seconds;
  14.    int rc, utc_offset_direction, utc_offset_hours, utc_offset_minutes;
  15.    /** we should have a pointer and enough storage */
  16.    netsnmp_assert( (NULL != ${node}_ptr_ptr) && (NULL != *${node}_ptr_ptr));
  17.    netsnmp_assert( (NULL != ${node}_len_ptr) && ((* ${node}_len_ptr) >= 11));
  18.    /*
  19.     * TODO:231:o: |-> copy $node data.
  20.     * get the date from your context pointer.
  21.     */
  22.    return MFD_SKIP; /* TODO:234:M: |-> Remove SKIP once you've set $node data */
  23.    year = 0; /* 0..65536 */
  24.    month = 0; /* 1..12 */
  25.    day = 0; /* 1..31 */
  26.    hour = 0; /* 0..23 */
  27.    minutes = 0; /* 0..59 */
  28.    seconds = 0; /* 0..60 (60 indicates a leap-second) */
  29.    deci_seconds = 0; /* 0..9 */
  30.    /* setting utc offset is optional. Leave the values as is if you
  31.       want to exclude this information. */
  32.    utc_offset_direction = 0; /* -1, +1 */
  33.    utc_offset_hours = -1; /* 0..13 */
  34.    utc_offset_minutes = -1; /* 0..59 */
  35.    /* call convenience function to set data */
  36.    rc = netsnmp_dateandtime_set_buf_from_vars(*${node}_ptr_ptr, ${node}_len_ptr,
  37.                            year, month, day,
  38.                            hour, minutes, seconds, deci_seconds,
  39.                            utc_offset_direction, utc_offset_hours,
  40.                            utc_offset_minutes );
  41.    if(rc != SNMP_ERR_NOERROR)
  42.       return rc;
  43. ##
  44. ########################################################################
  45. @if $m2c_mark_boundary == 1@
  46. /** END code generated by $RCSfile: syntax-DateAndTime-get.m2i,v $ $Revision: 1.5 $ */
  47. @end@