Skip to content

Commit

Permalink
Merge branch 'main' into update-acctz
Browse files Browse the repository at this point in the history
  • Loading branch information
marcushines authored Dec 6, 2023
2 parents dc2d013 + 38a0758 commit 41bc2b0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
7 changes: 5 additions & 2 deletions acctz/acctz.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions acctz/acctz.proto
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ message SessionInfo {
SESSION_STATUS_ONCE = 3; // simultaneous login, cmd, logout
SESSION_STATUS_ENABLE = 4; // change privilege level
SESSION_STATUS_IDLE = 5; // "watchog"
SESSION_STATUS_OPERATION = 6; // "cmd"
}
SessionStatus status = 8;

Expand Down Expand Up @@ -264,7 +265,7 @@ message RecordResponse {
SessionInfo session_info = 1;

// The time when the system recorded this event, represented as nanoseconds
// since the unix epoch.
// since the unix epoch (Jan 1, 1970 00:00:00 UTC).
google.protobuf.Timestamp timestamp = 2;

// True, if the server's history does not include a message with the given
Expand All @@ -289,12 +290,10 @@ message RecordResponse {
}

// RecordRequest, requests a starting point for records to be sent to the
// caller.
// The receiver then can signal back to the sender periodic sync messages to
// acknowledge received records.
// The timestamp indicates the last processed Record at the caller.
// caller. A timestamp of 0 indicates that the server should return all
// records present to the client.
message RecordRequest {
// The time when the system recorded this event represented as nanoseconds
// since the unix epoch.
// The time is represented as nanoseconds since the
// unix epoch (Jan 1, 1970 00:00:00 UTC).
google.protobuf.Timestamp timestamp = 2;
}

0 comments on commit 41bc2b0

Please sign in to comment.