This is a discussion on Re: snmp_set_var_typed_value with ASN_TIMETICKS problem within the SNMP Users forums, part of the Networking and Network Related category; On Fri, 2006-02-10 at 14:10 -0800, stan buyanov wrote: > u_char str_return[MAX_VAR_LEN+1]; > long returnVal = ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
On Fri, 2006-02-10 at 14:10 -0800, stan buyanov wrote:
> u_char str_return[MAX_VAR_LEN+1]; > long returnVal = 123456; > sprintf((char*)str_return,"%d",returnVal); > int str_return_len = strlen((char*)str_return); > snmp_set_var_typed_value(requests->requestvb, ASN_TIMETICKS, > (u_char *)str_return, > str_return_len); TimeTicks is an *integer* based type, not a string. Try snmp_set_var_typed_value(requests->requestvb, ASN_TIMETICKS, (u_char*)&returnVal, sizeof(returnVal)); Dave ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=...486&dat=121642 _______________________________________________ Net-snmp-users mailing list Net-snmp-users@lists.sourceforge.net Please see the following page to unsubscribe or change other options: https://lists.sourceforge.net/lists/...net-snmp-users |