diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-05-27 10:44:52 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-05-27 10:44:52 -0700 |
| commit | 61c272e101b6f0444c7b2a666b0b5e828ba6db03 (patch) | |
| tree | c9bc0c571cbfb63c70b37eb5e39ae797714fc756 /hotline/transaction_handlers.go | |
| parent | 6f0f1ef7c51f8d495a5818c4864650a7e1cfc8ef (diff) | |
Simplify user idle check
Diffstat (limited to 'hotline/transaction_handlers.go')
| -rw-r--r-- | hotline/transaction_handlers.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hotline/transaction_handlers.go b/hotline/transaction_handlers.go index ade024c..5aa6984 100644 --- a/hotline/transaction_handlers.go +++ b/hotline/transaction_handlers.go @@ -1399,9 +1399,9 @@ func HandleSetClientUserInfo(cc *ClientConn, t *Transaction) (res []Transaction, return res, err } -// HandleKeepAlive response to keepalive transactions with an empty reply -// HL 1.9.2 Client sends keepalive msg every 3 minutes -// HL 1.2.3 Client doesn't send keepalives +// HandleKeepAlive responds to keepalive transactions with an empty reply +// * HL 1.9.2 Client sends keepalive msg every 3 minutes +// * HL 1.2.3 Client doesn't send keepalives func HandleKeepAlive(cc *ClientConn, t *Transaction) (res []Transaction, err error) { res = append(res, cc.NewReply(t)) |