Re: What form is the timestamp in the KRB5_TRACE log (and why)

2020-04-03 Thread Todd Grayson
Ok but does that mean Unix Epoch time conversion should be working, or is there some other form of secret decoder ring that is used to translate to system time? In troubleshooting/debugging scenarios, being able to associate the timestamps from the KRB5_TRACE that has been running over an extended

Re: What form is the timestamp in the KRB5_TRACE log (and why)

2020-04-03 Thread Benjamin Kaduk
Whoops, I copied the wrong name; the public interface has docs at http://web.mit.edu/kerberos/krb5-1.18/doc/appdev/refs/api/krb5_us_timeofday.html and peeking at the source it's a gettimeofday()-like on unix-like systems. So the unix epocy conversion ought to be working, in my reading, yes. -Ben

Re: What form is the timestamp in the KRB5_TRACE log (and why)

2020-04-03 Thread Greg Hudson
On 4/3/20 10:21 AM, Todd Grayson wrote: > Ok but does that mean Unix Epoch time conversion should be working, or is > there some other form of secret decoder ring that is used to translate to > system time? It's just system time. $ date; KRB5_TRACE=/dev/stdout kvno user Fri Apr 3 10:58:0

Re: What form is the timestamp in the KRB5_TRACE log (and why)

2020-04-03 Thread Todd Grayson
Cool, thanks! On Fri, Apr 3, 2020 at 8:59 AM Greg Hudson wrote: > On 4/3/20 10:21 AM, Todd Grayson wrote: > > Ok but does that mean Unix Epoch time conversion should be working, or is > > there some other form of secret decoder ring that is used to translate to > > system time? > > It's just sys