Hi,
I'm using protobuf in client-server method.
In that way the client send massage to function in the server, the massage include time stamp.
So, the client massage is look like that (evtmgr is the massage name):
evtmgr.time.FromDatetime(event.TimeGenerated)
In the proto:
google.protobuf.Timestamp time = 2;
In the server side:
loghand.time = datetime.fromtimestamp(evtmgr.time.seconds)
loghand.time - need to get DateTime, but the hour/minutes isn't correct. ( Only the Date is OK).
What I'm doing wrong ?