[Freeipmi-devel] Re: now ipmi-sel is in C

2006-07-07 Thread Al Chu
Also I have fixed a bug in ipmi_lan_sendto() in Release-0_2_0_branch. I believe A.B. said we were just going to revert those changes and go back to the codebase at 0.2.1? Al -- Albert Chu [EMAIL PROTECTED] 925-422-5311 Computer Scientist High Performance Systems Division Lawrence Livermore

Re: [Freeipmi-devel] Re: bmc-config in C

2006-07-07 Thread Al Chu
One other thought. We should also test to see if the output of Password20 makes sense, since it won't on many IPMI 1.5 machines. I think it would be sufficient to run the Set user Password command and try to test a dummy 20 byte password. If the result comes back invalid input (I think

[Freeipmi-devel] ipmi_lan_sendto bug

2006-07-07 Thread Cress, Andrew R
This routine didn't seem to work at all in freeipmi-0.2.2-qa0 (would call sendto with NULL pointer). The routine is below, with the two changes are commented with ARC:. Andy --- ssize_t ipmi_lan_sendto (int sockfd, const void *buffer, size_t buffer_size,

RE: [Freeipmi-devel] ipmi_lan_sendto bug

2006-07-07 Thread Cress, Andrew R
BTW, at ipmi-lan-interface:1541: fd_set fd_set; Gives FD_ZERO macro errors with several compiler versions, so fd_set fd_set1; Or similar should be used. Andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cress, Andrew R Sent: Friday, July 07,

[Freeipmi-devel] Intel and IAMT

2006-07-07 Thread Anand Babu
On Fri, Jul 07, 2006 at 04:35:19PM -0400, Cress, Andrew R wrote: , | This routine didn't seem to work at all in freeipmi-0.2.2-qa0 (would | call sendto with NULL pointer). The routine is below, with the two | changes are commented with ARC:. | | Andy | --- | | ssize_t | ipmi_lan_sendto

[Freeipmi-devel] Re: now ipmi-sel is in C

2006-07-07 Thread Al Chu
On Fri, 2006-07-07 at 15:20 -0700, Anand Babu wrote: This bug was introduced because of re-transmission feature. I thought, that feature was required, so we fix the bug. These functions were nearly entirely re-written. I have no idea why. All retransmission code should only be in the UDM

[Freeipmi-devel] Re: now ipmi-sel is in C

2006-07-07 Thread Bala.A
Hi Al, packet retransmission code is only in UDM. I did code cleanup in ipmi_lan_sendto() and forgot to initialize packet_size variable. Because of that, ipmi_lan_sendto() was failing. Thanks, Bala --- Free as in freedom http://www.gnu.org/ On Fri, 2006-07-07 at 15:20 -0700, Anand Babu